From owner-freebsd-ports Sun Feb 4 0:46:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B610537B401; Sun, 4 Feb 2001 00:46:03 -0800 (PST) Received: (from dirk@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f148k3o89280; Sun, 4 Feb 2001 00:46:03 -0800 (PST) (envelope-from dirk) Date: Sun, 4 Feb 2001 00:46:03 -0800 (PST) From: Message-Id: <200102040846.f148k3o89280@freefall.freebsd.org> To: dirk@FreeBSD.org, freebsd-ports@FreeBSD.org, billf@FreeBSD.org Subject: Re: ports/24756: net-snmp-4.2 does not compile with LPRng installed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: net-snmp-4.2 does not compile with LPRng installed Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: dirk Responsible-Changed-When: Sun Feb 4 00:45:51 PST 2001 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=24756 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 1: 7:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DDB337B4EC; Sun, 4 Feb 2001 01:07:19 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1497Iv92681; Sun, 4 Feb 2001 01:07:18 -0800 (PST) (envelope-from kevlo) Date: Sun, 4 Feb 2001 01:07:18 -0800 (PST) From: Message-Id: <200102040907.f1497Iv92681@freefall.freebsd.org> To: dan@spot.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24835: update to ports/sysutils/xw Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update to ports/sysutils/xw State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sun Feb 4 01:07:04 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24835 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 2:10:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B043037B491 for ; Sun, 4 Feb 2001 02:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14AA1u98853; Sun, 4 Feb 2001 02:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 195B537B401 for ; Sun, 4 Feb 2001 02:09:29 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14A9Tg98764; Sun, 4 Feb 2001 02:09:29 -0800 (PST) (envelope-from nobody) Message-Id: <200102041009.f14A9Tg98764@freefall.freebsd.org> Date: Sun, 4 Feb 2001 02:09:29 -0800 (PST) From: jml@cubical.fi To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24845: linuxthreads does not detect failed rfork Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24845 >Category: ports >Synopsis: linuxthreads does not detect failed rfork >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: Sun Feb 04 02:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Juha-Matti Liukkonen >Release: 4.2-RELEASE >Organization: Cubical Solutions Ltd >Environment: FreeBSD snafu.intra.net 4.2-RELEASE FreeBSD 4.2-RELEASE #0: Sat Feb 3 20:12:33 EET 2001 root@:/usr/src/sys/compile/SERVER i386 >Description: When a new thread is created by the manager thread calling __clone() and rfork() fails (eg. proc limit reached), the manager thread enters busy loop. >How-To-Repeat: A small program: void* func(void* arg) { sleep(100); return 0; } main() { struct rlimit rl = { 20, 0 }; pthread_t pt; setrlimit(RLIMIT_NPROC, &rl); for (;;) pthread_create(&pt, 0, func, 0); } Observe "top" or "ps l" output. Issue sysctl -w kern.corefile="%N-%P.core" to get per-thread cores. Get a core dump with "kill -TRAP ; kill "; load the manager's core and say where. >Fix: In clone.S, the execution seems to go to the error branch correctly, but the subsequent return from __clone throws the manager thread back to its entry point. Adding "call _exit" before the .cerror jmp exits the manager thread in the error situation -- maybe the stack gets corrupted somehow to cause the ret from the .cerror macro to fail? >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 Feb 4 2:20:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD64E37B491 for ; Sun, 4 Feb 2001 02:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14AK1H99515; Sun, 4 Feb 2001 02:20:01 -0800 (PST) (envelope-from gnats) Received: from eeyore.local.dohd.org (d0030.upc-d.chello.nl [213.46.0.30]) by hub.freebsd.org (Postfix) with ESMTP id 27C0A37B401 for ; Sun, 4 Feb 2001 02:11:07 -0800 (PST) Received: by eeyore.local.dohd.org (Postfix, from userid 1002) id 28F27BABC; Sun, 4 Feb 2001 11:11:00 +0100 (MET) Message-Id: <20010204101100.28F27BABC@eeyore.local.dohd.org> Date: Sun, 4 Feb 2001 11:11:00 +0100 (MET) From: xaa+ports@madison-gurkha.com Reply-To: xaa+ports@madison-gurkha.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/24846: changed URL for download, upgraded version (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24846 >Category: ports >Synopsis: changed URL for download, upgraded version (by maintainer) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 04 02:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mark Huizer; Eindhoven >Release: FreeBSD 5.0-CURRENT i386 >Organization: Madison Gurkha BV >Environment: System: FreeBSD eeyore.local.dohd.org 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Jan 30 19:19:31 MET 2001 xaa@eeyore.local.dohd.org:/usr2/sources/src/sys/compile/eeyore i386 >Description: changed download url, upgraded version This makes PR ports/24836 outdated, since that patch is included >How-To-Repeat: >Fix: apply fix in /usr/ports/games diff -udr ../games/xboard/Makefile xboard/Makefile --- ../games/xboard/Makefile Mon Jan 22 13:10:49 2001 +++ xboard/Makefile Sun Feb 4 10:51:24 2001 @@ -6,11 +6,11 @@ # PORTNAME= xboard -PORTVERSION= 4.2.0 +PORTVERSION= 4.2.1 CATEGORIES= games -MASTER_SITES= ftp://ftp.gnu.org/gnu/xboard/ \ - http://www.research.compaq.com/SRC/personal/Tim_Mann/xboard/ -DISTNAME= xboard-4.2.0beta +MASTER_SITES= http://www.tim-mann.org/xboard/ \ + ftp://ftp.gnu.org/gnu/xboard/ +DISTNAME= xboard-4.2.1 MAINTAINER= xaa+ports@madison-gurkha.com diff -udr ../games/xboard/distinfo xboard/distinfo --- ../games/xboard/distinfo Mon Jan 1 12:31:02 2001 +++ xboard/distinfo Sun Feb 4 10:53:57 2001 @@ -1 +1 @@ -MD5 (xboard-4.2.0beta.tar.gz) = 49d41924250972e125fe63c9de941f5e +MD5 (xboard-4.2.1.tar.gz) = 08ac2668e9d3acb26e908ac40c45525b >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 Feb 4 2:50:23 2001 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 0C82237B401 for ; Sun, 4 Feb 2001 02:49:04 -0800 (PST) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id LAA25897; Sun, 4 Feb 2001 11:49:02 +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 LAA00688; Sun, 4 Feb 2001 11:45:40 +0100 (CET) (envelope-from wosch) Date: Sun, 4 Feb 2001 11:45:40 +0100 (CET) Message-Id: <200102041045.LAA00688@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: 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/ 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/ There are currently 4517 ports in the FreeBSD Ports Collection. New ports added last two weeks - ------------------------------ Category archivers (http://www.freebsd.org/ports/archivers.html) ================================================================== sectar-0.8 A program to create encrypted tar archives Maintained by: greid@ukug.uk.freebsd.org Requires: libgnugetopt-1.1, libtool-1.3.4_1 ucl-0.92 A data compression library with low memory usage during decompression Maintained by: sobomax@FreeBSD.org Also listed in: devel Requires: libtool-1.3.4_1 Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== linux-vsound-0.4 Utility for capturing audio streams from Linux binaries Maintained by: kris@FreeBSD.org Also listed in: linux Requires: linux_base-6.1, sox-12.17.1 Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== phpmyadmin-2.1.0 A set of PHP3-scripts to adminstrate MySQL over the WWW Maintained by: nbm@FreeBSD.org Also listed in: www Requires: apache-1.3.17, mod_php3-3.0.18, mysql-client-3.23.32 phppgadmin-2.2.1.p1 Web Based Postgres Administration Maintained by: nbm@FreeBSD.org Also listed in: www Requires: apache-1.3.17, mod_php3-3.0.18, postgresql-7.0.3 Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== cpp2html-1.2 A simple program to output HTML with syntax highlighting from C/C++ source Maintained by: greid@ukug.uk.freebsd.org dotconf-1.0.0p2 A simple, powerful configuration-file parser Maintained by: ijliao@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 fnccheck-1.2 A profiling library/utilities for C/C++ programs Maintained by: greid@ukug.uk.freebsd.org happydoc-0.9 A tool for extracting documentation from Python source code Maintained by: ijliao@FreeBSD.org Also listed in: python Requires: python-2.0 libdsp-3.3.4 C++ class library of common digital signal processing functions Maintained by: ijliao@FreeBSD.org Also listed in: audio Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 p5-Dialog-0.03 Perl interface to dialog(3) Maintained by: leeym@cae.ce.ntu.edu.tw Also listed in: perl5 ruby-textbuf-0.3.6 Gapped text buffer extention for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.2001.01.18, ruby-amstd-1.9.6 Category games (http://www.freebsd.org/ports/games.html) ================================================================== mahjong-1.0.1 A networked Mah Jong program, together with a computer player Maintained by: ijliao@FreeBSD.org Also listed in: net Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8 qkmj-95p4 QKMJ - QK Ma2Jong4 client Maintained by: clive@FreeBSD.org Also listed in: chinese Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== lib3ds-1.0.0 A library for handling 3DS (3D Studio) files Maintained by: sobomax@FreeBSD.org Requires: libtool-1.3.4_1 QDraw-0.7 Library for hardware accelerated 3D graphics Maintained by: n_hibma@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, jpeg-6b view3ds-1.0.0 A simple realtime 3DS file previewer based on the Lib3ds Library Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, jpeg-6b, lcms-1.06, lib3ds-1.0.0, libmng-0.9.3, libtool-1.3.4_1, png-1.0.8_1, qt-2.2.3_3 Category irc (http://www.freebsd.org/ports/irc.html) ================================================================== ruby-irc-0.13 IRC client framework for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.2001.01.18 Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== sxm-1.0 Another implementation of Scheme Maintained by: ijliao@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1 Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== achievo-0.4.5 A flexible web-based resource management tool Maintained by: nbm@FreeBSD.org Also listed in: www Requires: apache-1.3.17, mod_php3-3.0.18, mysql-client-3.23.32 amanda24-client-2.4.2 The Advanced Maryland Automatic Network Disk Archiver Maintained by: jeh@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 amanda24-server-2.4.2 The Advanced Maryland Automatic Network Disk Archiver Maintained by: jeh@FreeBSD.org Requires: amanda24-client-2.4.2, gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 Category net (http://www.freebsd.org/ports/net.html) ================================================================== dictd-database-20010130 Dictd words database Maintained by: ijliao@FreeBSD.org Also listed in: textproc dictd-1.5.5_2 Dict protocol (RFC 2229) server Maintained by: ijliao@FreeBSD.org Also listed in: textproc Requires: dictd-database-20010130, gettext-0.10.35, gmake-3.79.1 ucd-snmp-4.2 An extendable SNMP implimentation Maintained by: billf@FreeBSD.org Also listed in: ipv6 Requires: autoconf-2.13, libtool-1.3.4_1, m4-1.4 pvm++-0.5.0 A C++-Library for PVM Maintained by: ijliao@FreeBSD.org Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1, pvm-3.4.3 smbfs-1.3.4 SMB/CIFS protocol and SMB/CIFS file system implementation Maintained by: tokky@fdns.org XBone-1.3.1 A system for dynamic internet overlay deployment and management Maintained by: yushunwa@isi.edu Requires: gettext-0.10.35, gmake-3.79.1, ip-tun-1.0 Category palm (http://www.freebsd.org/ports/palm.html) ================================================================== bibelot-0.9 Formats and converts text documents into compressed PalmDoc .pdb files Maintained by: ijliao@FreeBSD.org Category russian (http://www.freebsd.org/ports/russian.html) ================================================================== ru-rus-ispell-0.99d6 New Russian dictionaries for ispell Maintained by: ache@FreeBSD.org Also listed in: textproc Requires: gettext-0.10.35, gmake-3.79.1, ispell-3.1.20c_2 Category security (http://www.freebsd.org/ports/security.html) ================================================================== apg-1.1.61b An automated password generator Maintained by: roam@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1 p5-Crypt-Cracklib-0.01 Perl interface to Alec Muffet's cracklib library Maintained by: ports@FreeBSD.org Also listed in: perl5 Requires: cracklib-2.7_1 Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== checkservice-1.1.0 Checkservice is written to check the status of the services Maintained by: ijliao@FreeBSD.org Requires: p5-Mail-Tools-1.15, p5-Net-1.0703 qtpkg-1.0 A Qt based package removal tool Maintained by: twschulz@gloria.cord.edu Requires: XFree86-3.3.6_7, jpeg-6b, lcms-1.06, libmng-0.9.3, png-1.0.8_1, qt-2.2.3_3 xw-0.0.8 X app to list current users logged into the system Maintained by: dan@spot.org Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== clo++-0.3.0 Command line parser generator Maintained by: kevlo@FreeBSD.org Requires: iconv-2.0_1, libxml2-2.2.11 ruby-qt2xml-0.11 Qt2 xml extension for Ruby Maintained by: knu@FreeBSD.org Also listed in: x11-toolkits ruby Requires: Mesa-3.2.1_1, XFree86-3.3.6_7, 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_3, ruby-1.6.2.2001.01.18, ruby-qt2-0.11 xml-i18n-tools-0.6 Xml internationalization support for GNOME, and others Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 Category www (http://www.freebsd.org/ports/www.html) ================================================================== mnogosearch-3.1.9_2 Full featured SQL-based hypertext search engine Maintained by: ache@FreeBSD.org Also listed in: databases Requires: gettext-0.10.35, gmake-3.79.1 nspostgres-3.0 A driver to access PostgreSQL databases from Aolserver Maintained by: jkoshy@freebsd.org Also listed in: databases Requires: aolserver-3.2, gettext-0.10.35, gmake-3.79.1, postgresql-7.0.3 wb0-000324 Web browser for svgalib which can show pictures Maintained by: trevor@FreeBSD.org Requires: gettext-0.10.35, jpeg-6b, lynx-2.8.4d16, png-1.0.8_1, svgalib-1.4.2_1 Category x11-fonts (http://www.freebsd.org/ports/x11-fonts.html) ================================================================== webfonts-0.12 TrueType core fonts for the Web Maintained by: kkonstan@daemon.gr Requires: XFree86-3.3.6_7, cabextract-0.1, freetype-1.3.1_1, ttmkfdir-0.0 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== ruby-qt2canvas-0.11 Qt2 canvas extension for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: Mesa-3.2.1_1, XFree86-3.3.6_7, 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_3, ruby-1.6.2.2001.01.18, ruby-qt2-0.11 ruby-qt2table-0.11 Qt2 table extension for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: Mesa-3.2.1_1, XFree86-3.3.6_7, 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_3, ruby-1.6.2.2001.01.18, ruby-qt2-0.11 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== ion-20010121 A window manager with a text-editorish, keyboard friendly interface Maintained by: ricci@cs.utah.edu Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1 qlwm-2.1 Qt-based window manager Maintained by: trevor@FreeBSD.org Requires: XFree86-3.3.6_7, jpeg-6b, lcms-1.06, libmng-0.9.3, png-1.0.8_1, qt-2.2.3_3 Updated ports last two weeks - ----------------------------------- Category archivers (http://www.freebsd.org/ports/archivers.html) ================================================================== p5-Compress-Zlib-1.09 Perl5 interface to zlib compression library Maintained by: demon@FreeBSD.org Also listed in: perl5 Category astro (http://www.freebsd.org/ports/astro.html) ================================================================== glunarclock-0.20 A GNOME applet which displays the current phase of the Moon Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libungif-4.1.0b1, libxml-1.8.11, png-1.0.8_1, tiff-3.5.5, xpm-3.4k setiathome-3.03_2 Donate idle cycles to the search for space aliens Maintained by: clefevre@citeweb.net Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== cd2mp3-0.81,1 Easy to use MP3 manipulation and creation tool Maintained by: jamie@jamiesdomain.org.uk Requires: XFree86-3.3.6_7, dagrab-0.3.5, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, lame-gtk-3.70_2 freeamp-2.1.rc5 GTK-based MP3 player Maintained by: roman@xpert.com Requires: ORBit-0.5.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, freetype-1.3.1_1, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.11, gtk-1.2.8, id3lib-3.7.13, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libogg-20001018, libungif-4.1.0b1, libvorbis-20001018, musicbrainz-1.0.0.pre6, nasm-0.98, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k gnapster-1.4.2 GNOME client for the online mp3 community called napster Maintained by: cpiazza@FreeBSD.org Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, 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 gqmpeg-0.8.1_1 Another gtk-based MP3 frontend Maintained by: lyngbol@candid.dk Requires: ORBit-0.5.7, XFree86-3.3.6_7, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gnomelibs-1.2.11, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libtool-1.3.4_1, libungif-4.1.0b1, mpg123-0.59r, png-1.0.8_1, tiff-3.5.5, xpm-3.4k mp3blaster-3.0p5 MP3 console ncurses-based player Maintained by: greid@ukug.uk.freebsd.org Requires: libgnugetopt-1.1 mpg123.el-1.19 Front-end to mpg123 audio player for Emacsen Maintained by: taoka@FreeBSD.org Also listed in: elisp Requires: mpg123-0.59r musicbrainz-1.0.0.pre6 2nd generation incarnation of the CD Index - audio metadata Maintained by: roman@xpert.com Requires: gettext-0.10.35, gmake-3.79.1, libogg-20001018, libtool-1.3.4_1, libvorbis-20001018 opmixer-0.60 Adjusts a mixer Maintained by: trevor@FreeBSD.org Requires: XFree86-3.3.6_7, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, gtkmm-1.2.4, libsigc++-1.0.1 p5-MP3-ID3v1Tag-1.11 Edit ID3v1 Tags from an Audio MPEG Layer 3 Maintained by: leo@florida.sarang.net Also listed in: perl5 s3mod-1.09_1 MOD/S3M player Maintained by: ports@FreeBSD.org sdl_mixer-1.1.0 A sample multi-channel audio mixer library Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_7, 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.2.0, libogg-20001018, libtool-1.3.4_1, libvorbis-20001018, sdl-devel-1.1.7_2, smpeg-0.4.2, svgalib-1.4.2_1 timidity++-emacs-2.10.2 Emacs interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6_7, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, png-1.0.8_1, timidity++-2.10.2 timidity++-gtk-2.10.2 Gtk interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6_7, 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, timidity++-2.10.2 timidity++-motif-2.10.2 Motif interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6_7, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, open-motif-2.1.30_1, png-1.0.8_1, timidity++-2.10.2, xpm-3.4k timidity++-slang-2.10.2 Slang interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6_7, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, libslang-1.4.2_1, png-1.0.8_1, timidity++-2.10.2 timidity++-tcltk-2.10.2 Tcl/Tk interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6_7, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, png-1.0.8_1, tcl-8.0.5, timidity++-2.10.2, tk-8.0.5 timidity++-xaw-2.10.2 Xaw interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6_7, Xaw3d-1.5, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, png-1.0.8_1, timidity++-2.10.2 timidity++-xskin-2.10.2 X11AMP skin interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6_7, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, png-1.0.8_1, timidity++-2.10.2 timidity++-2.10.2 Software MIDI player Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6_7, bzip2-1.0.1, png-1.0.8_1 xhippo-2.9 A Generic music player for UNIX systems Maintained by: rod@zort.on.ca Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, mpg123-0.59r Category biology (http://www.freebsd.org/ports/biology.html) ================================================================== emboss-1.9.1 A collection of open source tools for genetic sequence analysis Maintained by: johann@egenetics.com Requires: XFree86-3.3.6_7, freetype-1.3.1_1, gd-1.8.3, gettext-0.10.35, gmake-3.79.1, jpeg-6b, libtool-1.3.4_1, open-motif-2.1.30_1, png-1.0.8_1, xpm-3.4k tinker-3.8 A general purpose molecular modelling package Maintained by: gjohnson@nola.srrc.usda.gov Category chinese (http://www.freebsd.org/ports/chinese.html) ================================================================== zh-tw-BitchX-1.0c17_2 An alternative ircII color client with optional GTK/GNOME support Maintained by: clive@FreeBSD.org Also listed in: irc Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, m4-1.4 zh-ghostscript-6.50 Aladdin Postscript interpreter version 6 Maintained by: keith@FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_7, freetype-1.3.1_1, ghostscript-6.50_2, png-1.0.8_1, zh-ttfm-0.9.3 zh-pine-4.32 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.3 A Big5/GB enhanced TrueType Font Manager Maintained by: keith@FreeBSD.org Also listed in: print Requires: freetype-1.3.1_1 zh-xemacs-mule-21.1.13 XEmacs text editor version 21, with XIM support and Big5 settings Maintained by: kiri@FreeBSD.org Also listed in: editors editors Requires: XFree86-3.3.6_7, autoconf-2.13, db-2.7.7, faces-1.6.1, gettext-0.10.35, jpeg-6b, m4-1.4, png-1.0.8_1, tiff-3.5.5, xemacs-basic-mule-packages-1.2, xemacs-mule-common-21.1.13, xemacs-packages-1.7, xpm-3.4k, zh-kcfonts-1.05, zh-libtabe-0.1.9, zh-xcin-2.5.2.2 Category comms (http://www.freebsd.org/ports/comms.html) ================================================================== snooper-1999.12.02_1 Serial line protocol analyzer (need two serial interfaces) Maintained by: ports@FreeBSD.org Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== msql-2.0.11_2 The Mini SQL server, version 2 Maintained by: ports@FreeBSD.org mysql++-1.7_1 Complex C++ API for MySQL Maintained by: mico@bsd.hu Also listed in: devel Requires: mysql-client-3.23.32 mysql-client-3.23.32 Multithreaded SQL database (client) Maintained by: dirk@FreeBSD.org Requires: libtool-1.3.4_1 mysql-server-3.23.32_1 Multithreaded SQL database (server) Maintained by: dirk@FreeBSD.org Requires: libtool-1.3.4_1, mysql-client-3.23.32 py-MySQLdb-0.3.1 Access a MySQL database through Python Maintained by: sobomax@FreeBSD.org Also listed in: python Requires: mysql-client-3.23.32, python-2.0 ruby-gdbm-1.6.2.2001.01.18 A Ruby extension to GDBM library Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: gdbm-1.8.0, ruby-1.6.2.2001.01.18 unixODBC-2.0.3_1 ODBC library suite for Unix Maintained by: ports@FreeBSD.org Requires: autoconf-2.13, automake-1.4, libtool-1.3.4_1, m4-1.4 Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== yank-0.1.5 A simple notekeeper and todo-list manager for GNOME Maintained by: jedgar@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.11, png-1.0.8_1, tiff-3.5.5, xpm-3.4k Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== ORBit-0.5.7 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 bonobo-0.33 The component and compound document system for GNOME Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, ghostscript-6.50_2, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gnomeprint-0.25, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.11, oaf-0.6.2, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k cvsweb-1.105.1.65 WWW CGI script to browse CVS repository trees Maintained by: knu@FreeBSD.org Also listed in: www doxygen-1.2.4 A documentation system for C and C++ Maintained by: joep@di.nl Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, qt-1.45_1 gconf-0.12 A configuration database system for GNOME Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gtk-1.2.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.11, oaf-0.6.2, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k glademm-0.5.11 A C++(GTK--) code generator for glade Maintained by: fujie@tk.elec.waseda.ac.jp Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glade-0.5.11, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gtk-1.2.8, gtkmm-1.2.4, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libsigc++-1.0.1, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.11, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gnomevfs-0.5 GNOME Virtual File System Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bonobo-0.33, bzip2-1.0.1, esound-0.2.22, gconf-0.12, gdk-pixbuf-0.9.0_1, gettext-0.10.35, ghostscript-6.50_2, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gnomeprint-0.25, gtk-1.2.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.11, oaf-0.6.2, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k kdevelop-1.3 Powerful IDE for developing KDE/Qt-based apps Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_7, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.1.2_2, libtool-1.3.4_1, png-1.0.8_1, qt-1.45_1, tiff-3.5.5 ktranslator-0.6.1 A powerful utility for kde translators Maintained by: ports@FreeBSD.org Also listed in: kde Requires: XFree86-3.3.6_7, autoconf-2.13, automake-1.4, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.1.2_2, m4-1.4, png-1.0.8_1, qt-1.45_1, tiff-3.5.5 libole2-0.2.0 Support library for OLE functions (MS-Excel) for gnumeric 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 libsock-1.2.0 Multi-threaded TCP/IP networking library Maintained by: jasone@FreeBSD.org Requires: cook-2.16_1, gettext-0.10.35, libstash-1.2.0 libstash-1.2.0 Library of algorithms and data structures Maintained by: jasone@FreeBSD.org Requires: cook-2.16_1, gettext-0.10.35 lwp-1.6 A userspace thread library Maintained by: coda@cs.cmu.edu Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 oaf-0.6.2 Object Activation Framework for GNOME 2.0 Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, libtool-1.3.4_1, libxml-1.8.11, popt-1.5 pcre-3.4 Perl Compatible Regular Expressions library Maintained by: dom@myrddin.demon.co.uk Requires: bzip2-1.0.1, libtool-1.3.4_1 rpc2-1.9 An interprocess communication library Maintained by: coda@cs.cmu.edu Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1, lwp-1.6 ruby-date2-2.3 An alternative date class for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.2001.01.18 ruby-optparse-0.7.9 Yet another command line option parser for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.2001.01.18 ruby-racc-runtime-1.3.6_1 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.2001.01.18, ruby-amstd-1.9.6 ruby-racc-1.3.6_1 An LALR(1) parser generator for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.2001.01.18, ruby-amstd-1.9.6, ruby-racc-runtime-1.3.6_1, ruby-strscan-0.6.1 ruby-runit-0.3.3a Ruby implementation of Kent Beck's Testing Framework (cf. eXtreme Programming) Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.2001.01.18, ruby-amstd-1.9.6, ruby-optparse-0.7.9, ruby-racc-runtime-1.3.6_1, ruby-rdtool-0.6.7, ruby-strscan-0.6.1 ruby-strscan-0.6.1 Fast string scanner class for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.2001.01.18, ruby-amstd-1.9.6 rvm-1.3 A persistent VM library Maintained by: coda@cs.cmu.edu Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1, lwp-1.6 sdl-devel-1.1.7_2 Cross-platform multi-media development API (developm. vers.) Maintained by: sobomax@FreeBSD.org Requires: Mesa-3.2.1_1, XFree86-3.3.6_7, aalib-1.2, esound-0.2.22, libaudiofile-0.2.0, libtool-1.3.4_1, nasm-0.98, svgalib-1.4.2_1 Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== jedit-3.0.1_1 Powerful programmer's text editor written in Java Maintained by: sobomax@FreeBSD.org Also listed in: java Requires: XFree86-3.3.6_7, javavmwrapper-1.1, jre-1.1.8 lpe-1.2.5 A "lightweight programmer's editor" with syntax highlighting Maintained by: cj@vallcom.net Requires: gettext-0.10.35, gmake-3.79.1, libslang-1.4.2_1, libtool-1.3.4_1 nvi-perl-1.79_1 A clone of vi/ex, with perl5 linked into Maintained by: ports@FreeBSD.org pico-4.0 PIne's message COmposition editor Maintained by: jeremy@external.org scite-1.35 A full-featured SCIntilla based Text Editor for GTK/GNOME Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libungif-4.1.0b1, libxml-1.8.11, png-1.0.8_1, scintilla-1.35, tiff-3.5.5, xpm-3.4k xemacs-mule-common-21.1.13 XEmacs(version 21) with mule, lisp files, info pages, etc (except executables) Maintained by: kiri@FreeBSD.org Requires: XFree86-3.3.6_7, autoconf-2.13, faces-1.6.1, gettext-0.10.35, jpeg-6b, m4-1.4, png-1.0.8_1, tiff-3.5.5, xemacs-basic-mule-packages-1.2, xemacs-packages-1.7, xpm-3.4k xemacs-mule-sumo-21.1.13 The "meta-port" for XEmacs with SUMO packages Maintained by: kiri@FreeBSD.org Requires: XFree86-3.3.6_7, faces-1.6.1, gettext-0.10.35, jpeg-6b, png-1.0.8_1, tiff-3.5.5, xemacs-additional-packages-1.0, xemacs-basic-mule-packages-1.2, xemacs-comm-packages-2.2, xemacs-games-packages-1.2, xemacs-libs-packages-1.2, xemacs-mule-21.1.13, xemacs-mule-common-21.1.13, xemacs-mule-packages-1.1, xemacs-oa-packages-1.2, xemacs-packages-1.7, xemacs-prog-packages-2.3, xemacs-wp-packages-1.2, xpm-3.4k xemacs-mule-21.1.13 XEmacs(version 21) text editor with mule(Only the executables) Maintained by: kiri@FreeBSD.org Requires: XFree86-3.3.6_7, autoconf-2.13, faces-1.6.1, gettext-0.10.35, jpeg-6b, m4-1.4, png-1.0.8_1, tiff-3.5.5, xemacs-basic-mule-packages-1.2, xemacs-mule-common-21.1.13, xemacs-packages-1.7, xpm-3.4k xemacs-sumo-21.1.13 The "meta-port" for XEmacs with SUMO packages Maintained by: kiri@FreeBSD.org Requires: XFree86-3.3.6_7, jpeg-6b, png-1.0.8_1, tiff-3.5.5, xemacs-21.1.13, xemacs-additional-packages-1.0, xemacs-comm-packages-2.2, xemacs-games-packages-1.2, xemacs-libs-packages-1.2, xemacs-oa-packages-1.2, xemacs-packages-1.7, xemacs-prog-packages-2.3, xemacs-wp-packages-1.2, xpm-3.4k xemacs-21.1.13 XEmacs text editor version 21 Maintained by: gj@FreeBSD.org Requires: XFree86-3.3.6_7, autoconf-2.13, jpeg-6b, m4-1.4, png-1.0.8_1, tiff-3.5.5, xemacs-packages-1.7, xpm-3.4k zile-1.4 Small emacs-like text editor Maintained by: jasone@freebsd.org Requires: autoconf-2.13, m4-1.4 Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== snes9x-1.34a_2 Super Nintendo Entertainment System(SNES) Emulator Maintained by: nakai@FreeBSD.org Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, nasm-0.98, unzip-5.41 xmame-0.37b10.1 UNIX/X11 port of the Multi Arcade Machine Emulator (MAME) Maintained by: c9710216@studentmail.newcastle.edu.au Requires: XFree86-3.3.6_7, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, xpm-3.4k Category ftp (http://www.freebsd.org/ports/ftp.html) ================================================================== curl-7.6 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 downloader-1.21 Program for downloading via ftp or http with GUI Maintained by: ijliao@FreeBSD.org Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8 lftp-2.3.7 Shell-like command line ftp client Maintained by: cj@vallcom.net Also listed in: ipv6 Requires: bzip2-1.0.1, gettext-0.10.35 spegla-1.1p4_1 A mirror program for FTP sites (written in C) Maintained by: jkh@FreeBSD.org Category games (http://www.freebsd.org/ports/games.html) ================================================================== actx-1.01 Window sitter for X11 Maintained by: esu@yk.rim.or.jp Requires: XFree86-3.3.6_7, xpm-3.4k cowsay-3.03_1 Configurable talking characters in ASCII art Maintained by: kris@FreeBSD.org dopewars-1.4.8_1 A UNIX rewrite of a game originally based on "Drug Wars" Maintained by: jim@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1 maelstrom-3.0.1_1 Asteroids-style game for X Window System Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_7, esound-0.2.22, libaudiofile-0.2.0, sdl-1.0.8_1, svgalib-1.4.2_1, xpm-3.4k tinymux-1.6p0_1 A Multi-Player FreeForm adventure Program Maintained by: ports@FreeBSD.org Requires: autoconf-2.13, gdbm-1.8.0, m4-1.4 xpuyopuyo-0.9.3 A puzzle game, somewhat like Tetris Maintained by: yinjieh@csie.nctu.edu.tw Requires: XFree86-3.3.6_7, autoconf-2.13, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, m4-1.4, xpm-3.4k xtux-2001.01.07 Humorous Arcade game for X Maintained by: goranrunfeldt@home.se Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, xpm-3.4k Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== p5-GIFgraph-1.10_2 A Perl package to generate PNG charts Maintained by: ls@gambit.com.ru Also listed in: perl5 Requires: freetype-1.3.1_1, gd-1.8.3, jpeg-6b, p5-GD-1.32, png-1.0.8_1 ImageMagick-5.2.7_2 An X11 package for display and interactive manipulation of images Maintained by: jseger@FreeBSD.org Also listed in: perl5 Requires: XFree86-3.3.6_7, autoconf-2.13, bzip2-1.0.1, freetype-1.3.1_1, freetype2-2.0.1, ghostscript-5.50a, hdf-4.1r3, jbigkit-1.2, jpeg-6b, libtool-1.3.4_1, libwmf-0.1.21, m4-1.4, mpeg2codec-1.2, netpbm-9.10, png-1.0.8_1, tiff-3.5.5, transfig-3.2.3c, xpm-3.4k avifile-0.53.4 AVI player/converter with numerous codecs, including MPEG-4(DivX ;-)) Maintained by: holger@eit.uni-kl.de Requires: Mesa-3.2.1_1, XFree86-3.3.6_7, aalib-1.2, autoconf-2.13, esound-0.2.22, gettext-0.10.35, gmake-3.79.1, jpeg-6b, lcms-1.06, libaudiofile-0.2.0, libmng-0.9.3, libtool-1.3.4_1, m4-1.4, png-1.0.8_1, qt-2.2.3_3, sdl-devel-1.1.7_2, svgalib-1.4.2_1, unzip-5.41 evas-0.0.3 A highly optimized canvas library Maintained by: ishmael27@home.com Requires: Mesa-3.2.1_1, XFree86-3.3.6_7, edb-1.0.2, freetype-1.3.1_1, imlib2-1.0.1, jpeg-6b, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 gdk-pixbuf-0.9.0_1 A graphic library for GNOME Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.11, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k Gdtclft-2.2.5 A TCL interface to the Thomas Boutell's Gd library Maintained by: mi@aldan.algebra.com Also listed in: tcl83 Requires: freetype-1.3.1_1, gd-1.8.3, jpeg-6b, png-1.0.8_1, tcl-8.3.1 gif2png-2.4.0 Converts GIF images to a PNG format Maintained by: saper@system.pl Requires: png-1.0.8_1, python-2.0 gimp-1.2.1 Developer's beta release of the GNU Image Manipulation Program Maintained by: vanilla@FreeBSD.org Also listed in: gnome Requires: XFree86-3.3.6_7, 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 imlib2-1.0.1 The next generation graphic library for enlightenment package Maintained by: ishmael27@home.com Requires: XFree86-3.3.6_7, edb-1.0.2, freetype-1.3.1_1, jpeg-6b, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 ming-0.0.9b_1 LGPL'ed Flash 4 movie output library with many languages support Maintained by: knu@FreeBSD.org Requires: XFree86-3.3.6_7, libungif-4.1.0b1, png-1.0.8_1 netpbm-9.10 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.91 Perl5 module to determine the size of images in several common formats Maintained by: ports@FreeBSD.org Also listed in: www perl5 py-ming-0.0.9b Python module for the Ming library which allows you to create Flash 4 movies Maintained by: knu@FreeBSD.org Also listed in: python Requires: XFree86-3.3.6_7, libungif-4.1.0b1, ming-0.0.9b_1, png-1.0.8_1, python-2.0 qiv-1.6 A very small and fast GDK/Imlib image viewer Maintained by: trevor@FreeBSD.org Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libgnugetopt-1.1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 ruby-ming-0.0.9b Ruby module for the Ming library which allows you to create Flash 4 movies Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: XFree86-3.3.6_7, libungif-4.1.0b1, ming-0.0.9b_1, png-1.0.8_1, ruby-1.6.2.2001.01.18, swig-1.3a5_2 sodipodi-0.21 A small vector based drawing program with GNOME libraries Maintained by: nakai@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bonobo-0.33, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, ghostscript-6.50_2, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gnomeprint-0.25, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libglade-0.15, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.11, oaf-0.6.2, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k threeDS-0.2_1 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_7, jpeg-6b, py-imaging-1.1.1, py-numeric-17.2.0, py-opengl-1.5.6.b1, py-tkinter-2.0, python-2.0, tcl-8.3.1, tk-8.3.1 vcdgear-1.6d A tool to convert VCDs from cue/bin format to mpeg Maintained by: cpiazza@FreeBSD.org xine-0.3.6_3 A MPEG-1 and MPEG-2 player Maintained by: roman@xpert.com Requires: XFree86-3.3.6_7, 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 xpdf-0.92 Display tool for PDF files Maintained by: chuckr@FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_7, autoconf-2.13, freetype-1.3.1_1, m4-1.4, t1lib-1.0.1, xpm-3.4k zimg-4.5.0 Image-generator that uses ASCII input files to create PNGs/EDFs Maintained by: ports@FreeBSD.org Requires: freetype-1.3.1_1, gd-1.8.3, jpeg-6b, png-1.0.8_1 Category irc (http://www.freebsd.org/ports/irc.html) ================================================================== BitchX-1.0c17_2 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 ezbounce-0.99.11 A highly configurable IRC Proxy Maintained by: ports@FreeBSD.org infobot-0.44.5 Bot written in Perl with a rabid AI Maintained by: perlguy@perlguy.com ninja-1.5.1 Another ircII based irc client Maintained by: ports@FreeBSD.org Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-elvis-1.8.4_1 A clone of vi/ex, the standard UNIX editor, with Japanese patch Maintained by: sanpei@FreeBSD.org Also listed in: editors Requires: ja-Canna-3.2.2 ja-exmh-2.3.1 X11/TK based mail reader front end to MH for Japanese environments Maintained by: ports@FreeBSD.org Also listed in: mail tk83 Requires: XFree86-3.3.6_7, ja-less+iso-358.254_1, ja-mh-6.8.4.j3.03, ja-tcl-8.0.5, ja-tk-8.0.5, metamail-2.7, xloadimage-4.1 ja-gnome-1.2_3 The Japanese "meta-port" for the GNOME integrated X11 desktop Maintained by: nakai@FreeBSD.org Also listed in: x11 gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bonobo-0.33, bzip2-1.0.1, esound-0.2.22, gal-0.4.1, gconf-0.12, gdk-pixbuf-0.9.0_1, gettext-0.10.35, ghostscript-6.50_2, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gnomeprint-0.25, gnomevfs-0.5, gtk-1.2.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, ja-gal-0.4.1, ja-gnomecore-1.2.4, ja-gnomelibs-1.2.11, ja-gnumeric-0.61, jpeg-6b, libaudiofile-0.2.0, libglade-0.15, libole2-0.2.0, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.11, oaf-0.6.2, png-1.0.8_1, popt-1.5, python-2.0, tiff-3.5.5, xpm-3.4k ja-gnomelibs-1.2.11 Libraries for GNOME, a GNU desktop environment Maintained by: nakai@FreeBSD.org Also listed in: x11 gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k ja-man-1.1i A manual display command for Japanese (EUC) Maintained by: kuriyama@FreeBSD.org Requires: ja-groff-0.100_1, ja-less+iso-358.254_1 ja-mutt-1.3.13.j0 Text-based mail client (Japanised development 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, libiconv-1.4, m4-1.4, urlview-0.9 ja-ptex-common-2.1.10 Character code independent files for ASCII Japanese pTeX Maintained by: max@FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, libwww-5.3.1, png-1.0.8_1 ja-ptex-euc-2.1.10 Japanese pTeX files to support EUC character set Maintained by: max@FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, ja-ptex-common-2.1.10, libwww-5.3.1, png-1.0.8_1 ja-ptex-jis-2.1.10 Japanese pTeX files to support JIS character set Maintained by: max@FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, ja-ptex-common-2.1.10, libwww-5.3.1, png-1.0.8_1 ja-ptex-sjis-2.1.10 Japanese pTeX files to support Shift-JIS character set Maintained by: max@FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, ja-ptex-common-2.1.10, libwww-5.3.1, png-1.0.8_1 ja-rskkserv-2.94.0 An alternative implementation of skkserv written in Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, ja-skk-jisyoL-9.6, m4-1.4, ruby-1.6.2.2001.01.18, ruby-tcpwrap-0.1 ja-ruby-tcltklib-1.6.2.2001.01.18 A Ruby interface to Tcl/Tk libraries Maintained by: knu@FreeBSD.org Also listed in: lang x11-toolkits ruby tcl80 tk80 Requires: XFree86-3.3.6_7, ja-tcl-8.0.5, ja-tk-8.0.5, ruby-1.6.2.2001.01.18 ja-ruby-tk-1.6.2.2001.01.18 Ruby interface to the Tk widget set Maintained by: knu@FreeBSD.org Also listed in: x11-toolkits ruby tk80 Requires: XFree86-3.3.6_7, ja-ruby-tcltklib-1.6.2.2001.01.18, ja-tcl-8.0.5, ja-tk-8.0.5, ruby-1.6.2.2001.01.18 ja-ruby-uconv-0.4.5 Unicode conversion library with Japanese codesets support for Ruby Maintained by: knu@FreeBSD.org Also listed in: converters ruby Requires: ruby-1.6.2.2001.01.18 ja-timidity++-slang-2.10.2 Slang interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6_7, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, ja-libslang-1.4.2.j0, png-1.0.8_1, timidity++-2.10.2 ja-timidity++-tcltk-2.10.2 Tcl/Tk interface for TiMidity++ Maintained by: yatt@msc.biglobe.ne.jp Requires: XFree86-3.3.6_7, bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, ja-tcl-8.0.5, ja-tk-8.0.5, png-1.0.8_1, timidity++-2.10.2 ja-vflib-2.25.2 Japanese Vector font library with free vector font Maintained by: mita@FreeBSD.org Also listed in: print Requires: XFree86-3.3.6_7, autoconf-2.13, freetype-1.3.1_1, imake-4.0.1, m4-1.4 ja-xemacs-canna+freewnn-21.1.13 XEmacs(version 21) text editor, with SJ3, SKK, Canna and FreeWnn support Maintained by: kiri@FreeBSD.org Also listed in: editors Requires: XFree86-3.3.6_7, autoconf-2.13, faces-1.6.1, gettext-0.10.35, ja-Canna-3.2.2, ja-FreeWnn-lib-1.1.1.a017, jpeg-6b, m4-1.4, png-1.0.8_1, tiff-3.5.5, xemacs-basic-mule-packages-1.2, xemacs-mule-common-21.1.13, xemacs-packages-1.7, xpm-3.4k ja-xemacs-canna+wnn6-21.1.13 XEmacs(version 21) text editor, with SJ3, SKK, Canna and Wnn6 support Maintained by: kiri@FreeBSD.org Also listed in: editors Requires: XFree86-3.3.6_7, autoconf-2.13, faces-1.6.1, gettext-0.10.35, ja-Canna-3.2.2, ja-Wnn6-lib-98.10.28, jpeg-6b, m4-1.4, png-1.0.8_1, tiff-3.5.5, xemacs-basic-mule-packages-1.2, xemacs-mule-common-21.1.13, xemacs-packages-1.7, xpm-3.4k ja-xemacs-canna-21.1.13 XEmacs(version 21) text editor, with SJ3, SKK and Canna support Maintained by: kiri@FreeBSD.org Also listed in: editors Requires: XFree86-3.3.6_7, autoconf-2.13, faces-1.6.1, gettext-0.10.35, ja-Canna-3.2.2, jpeg-6b, m4-1.4, png-1.0.8_1, tiff-3.5.5, xemacs-basic-mule-packages-1.2, xemacs-mule-common-21.1.13, xemacs-packages-1.7, xpm-3.4k ja-xemacs-freewnn-21.1.13 XEmacs(version 21) text editor, with SJ3, SKK and FreeWnn support Maintained by: kiri@FreeBSD.org Also listed in: editors Requires: XFree86-3.3.6_7, autoconf-2.13, faces-1.6.1, gettext-0.10.35, ja-FreeWnn-lib-1.1.1.a017, jpeg-6b, m4-1.4, png-1.0.8_1, tiff-3.5.5, xemacs-basic-mule-packages-1.2, xemacs-mule-common-21.1.13, xemacs-packages-1.7, xpm-3.4k ja-xemacs-sumo-canna+freewnn-21.1.13 The "meta-port" for XEmacs with SUMO packages Maintained by: kiri@FreeBSD.org Requires: XFree86-3.3.6_7, faces-1.6.1, gettext-0.10.35, ja-Canna-3.2.2, ja-FreeWnn-lib-1.1.1.a017, ja-xemacs-canna+freewnn-21.1.13, jpeg-6b, png-1.0.8_1, tiff-3.5.5, xemacs-additional-packages-1.0, xemacs-basic-mule-packages-1.2, xemacs-comm-packages-2.2, xemacs-games-packages-1.2, xemacs-libs-packages-1.2, xemacs-mule-common-21.1.13, xemacs-oa-packages-1.2, xemacs-packages-1.7, xemacs-prog-packages-2.3, xemacs-wp-packages-1.2, xpm-3.4k ja-xemacs-sumo-canna+wnn6-21.1.13 The "meta-port" for XEmacs with SUMO packages Maintained by: kiri@FreeBSD.org Requires: XFree86-3.3.6_7, faces-1.6.1, gettext-0.10.35, ja-Canna-3.2.2, ja-Wnn6-lib-98.10.28, ja-xemacs-canna+wnn6-21.1.13, jpeg-6b, png-1.0.8_1, tiff-3.5.5, xemacs-additional-packages-1.0, xemacs-basic-mule-packages-1.2, xemacs-comm-packages-2.2, xemacs-games-packages-1.2, xemacs-libs-packages-1.2, xemacs-mule-common-21.1.13, xemacs-oa-packages-1.2, xemacs-packages-1.7, xemacs-prog-packages-2.3, xemacs-wp-packages-1.2, xpm-3.4k ja-xemacs-sumo-canna-21.1.13 The "meta-port" for XEmacs with SUMO packages Maintained by: kiri@FreeBSD.org Requires: XFree86-3.3.6_7, faces-1.6.1, gettext-0.10.35, ja-Canna-3.2.2, ja-xemacs-canna-21.1.13, jpeg-6b, png-1.0.8_1, tiff-3.5.5, xemacs-additional-packages-1.0, xemacs-basic-mule-packages-1.2, xemacs-comm-packages-2.2, xemacs-games-packages-1.2, xemacs-libs-packages-1.2, xemacs-mule-common-21.1.13, xemacs-oa-packages-1.2, xemacs-packages-1.7, xemacs-prog-packages-2.3, xemacs-wp-packages-1.2, xpm-3.4k ja-xemacs-sumo-freewnn-21.1.13 The "meta-port" for XEmacs with SUMO packages Maintained by: kiri@FreeBSD.org Requires: XFree86-3.3.6_7, faces-1.6.1, gettext-0.10.35, ja-FreeWnn-lib-1.1.1.a017, ja-xemacs-freewnn-21.1.13, jpeg-6b, png-1.0.8_1, tiff-3.5.5, xemacs-additional-packages-1.0, xemacs-basic-mule-packages-1.2, xemacs-comm-packages-2.2, xemacs-games-packages-1.2, xemacs-libs-packages-1.2, xemacs-mule-common-21.1.13, xemacs-oa-packages-1.2, xemacs-packages-1.7, xemacs-prog-packages-2.3, xemacs-wp-packages-1.2, xpm-3.4k ja-xemacs-sumo-wnn6-21.1.13 The "meta-port" for XEmacs with SUMO packages Maintained by: kiri@FreeBSD.org Requires: XFree86-3.3.6_7, faces-1.6.1, gettext-0.10.35, ja-Wnn6-lib-98.10.28, ja-xemacs-wnn6-21.1.13, jpeg-6b, png-1.0.8_1, tiff-3.5.5, xemacs-additional-packages-1.0, xemacs-basic-mule-packages-1.2, xemacs-comm-packages-2.2, xemacs-games-packages-1.2, xemacs-libs-packages-1.2, xemacs-mule-common-21.1.13, xemacs-oa-packages-1.2, xemacs-packages-1.7, xemacs-prog-packages-2.3, xemacs-wp-packages-1.2, xpm-3.4k ja-xemacs-wnn6-21.1.13 XEmacs(version 21) text editor, with SJ3, SKK and Wnn6 support Maintained by: kiri@FreeBSD.org Also listed in: editors Requires: XFree86-3.3.6_7, autoconf-2.13, faces-1.6.1, gettext-0.10.35, ja-Wnn6-lib-98.10.28, jpeg-6b, m4-1.4, png-1.0.8_1, tiff-3.5.5, xemacs-basic-mule-packages-1.2, xemacs-mule-common-21.1.13, xemacs-packages-1.7, xpm-3.4k ja-zangband-2.4.0.j010122_1 Zangband (Zelazny Angband) with japanese, color, X11 support Maintained by: makoto@pinpott.spnet.ne.jp Also listed in: games Requires: XFree86-3.3.6_7, unzip-5.41 ja-zipcodes-20001101 Japanese zipcode tables. includes both 3/5 and 7 digits form Maintained by: ports@freebsd.org Also listed in: misc Requires: ja-nkf-1.71, lha-1.14i Category java (http://www.freebsd.org/ports/java.html) ================================================================== shujit-0.6.10 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.2001.01.18 Category korean (http://www.freebsd.org/ports/korean.html) ================================================================== ko-ami-1.0.8 Well-known Korean X11 Input Method Maintained by: cjh@FreeBSD.org Also listed in: x11 Requires: ORBit-0.5.7, XFree86-3.3.6_7, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.11, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k ko-gau-0.4.1_1 Gtk-based Hangul terminal emulator (for modem/tcp) Maintained by: cjh@kr.freebsd.org Also listed in: comms Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, ko-baekmukfonts-bdf-2.0_3, lrzsz-0.12.20 ko-hanterm-3.1.4_1 An xterm hacked for managing Korean languages Maintained by: cjh@FreeBSD.org Also listed in: x11 Requires: XFree86-3.3.6_7, ko-johabfonts-3.04 ko-helvis-1.8h2_1 A clone of vi/ex, the standard UNIX editor, supporting Hangul Maintained by: cjh@FreeBSD.org Also listed in: editors Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== erlang-7.1.0 A functional programming language from Ericsson Maintained by: sam@inf.enst.fr Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, javavmwrapper-1.1, jdk-1.2.2b10, unixODBC-2.0.3_1, urwfonts-1.0 php-3.0.18_1 PHP3 stand-alone script interpreter Maintained by: roam@FreeBSD.org Also listed in: www python-1.5.2_1 An interpreted object-oriented programming language Maintained by: tg@FreeBSD.org Also listed in: python ruby-tcltklib-1.6.2.2001.01.18 A Ruby interface to Tcl/Tk libraries Maintained by: knu@FreeBSD.org Also listed in: x11-toolkits ruby tcl82 tk82 Requires: XFree86-3.3.6_7, ruby-1.6.2.2001.01.18, tcl-8.2.3, tk-8.2.3 ruby-1.6.2.2001.01.18 An object-oriented interpreted scripting language Maintained by: knu@FreeBSD.org Also listed in: ruby ipv6 Requires: autoconf-2.13, m4-1.4 yabasic-2.66 Yet another Basic for Unix and Windows Maintained by: elwood@mc5sys.in-berlin.de Requires: XFree86-3.3.6_7, bison-1.28, gettext-0.10.35 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== balsa-1.1.0 A mail reader for the gnome interface Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, ghostscript-6.50_2, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gnomeprint-0.25, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libproplist-0.10.1, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.11, png-1.0.8_1, pspell-0.12, tiff-3.5.5, xpm-3.4k cclient-4.8_1 Mark Crispen's C-client mail access routines Maintained by: ports@FreeBSD.org Also listed in: devel courier-imap-1.3.2 IMAP (and POP3) server that provides access to Maildir mailboxes Maintained by: nbm@FreeBSD.org Also listed in: ipv6 Requires: gettext-0.10.35, gmake-3.79.1 cyrus-1.6.24_1 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.12.28, tcl-8.2.3 elm+ME-2.4.87,1 A once-popular mail user agent, unofficial clone Maintained by: clefevre@citeweb.net exmh-2.3.1 X11/TK based mail reader front end to MH Maintained by: bmah@FreeBSD.org Also listed in: tk83 Requires: XFree86-3.3.6_7, metamail-2.7, nmh-1.0.4, tcl-8.3.1, tk-8.3.1, xloadimage-4.1 mmc-0.5 A tiny mail client for Gnome Desktop Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libungif-4.1.0b1, libxml-1.8.11, png-1.0.8_1, tiff-3.5.5, xpm-3.4k p5-Mail-IMAPClient-2.0.6 Perl5 module to talk to a IMAP4rev1 (RFC2060) server Maintained by: kaoru@kaisei.org Also listed in: perl5 pine-4.32 PINE(tm) -- a Program for Internet News & Email Maintained by: ports@FreeBSD.org Also listed in: news Requires: cclient-4.8_1 pop3lite-0.1.4.2 A flexible, modular RFC-compliant POP3 daemon Maintained by: greid@ukug.uk.freebsd.org Requires: gettext-0.10.35, glib-1.2.8, gmake-3.79.1, libtool-1.3.4_1 postfix-20001217_1 An alternative to widely-used Sendmail Maintained by: dwcjr@inethouston.net qmailadmin-0.42 CGI program for administering Qmail with vchkpw/vpopmail Maintained by: nbm@FreeBSD.org Also listed in: www Requires: autorespond-1.0.0, ezmlm-idx-0.40, gettext-0.10.35, gmake-3.79.1, qmail-1.03, ucspi-tcp-0.88, vpopmail-4.9.8_1 ruby-tmail-0.8.18 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.2001.01.18, ruby-amstd-1.9.6, ruby-racc-runtime-1.3.6_1, ruby-strscan-0.6.1 sqwebmail-1.2.4 CGI Webmail client for Maildirs Maintained by: nbm@FreeBSD.org Also listed in: www vpopmail-4.9.8_1 Easy virtual domain and authentication package for use with qmail Maintained by: nbm@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, qmail-1.03, ucspi-tcp-0.88 yuzu-1.0_1 A nicer mail user agent powered by JavaMail and JFC/Swing Maintained by: daichi@ongs.net Requires: javavmwrapper-1.1, jdk-1.1.8, jfc-1.1.1 Category math (http://www.freebsd.org/ports/math.html) ================================================================== gnuplot371+-1.2.0 A command-driven interactive function plotting program Maintained by: nakaji@jp.freebsd.org Also listed in: japanese graphics Requires: XFree86-3.3.6_7, autoconf-2.13, freetype-1.3.1_1, gettext-0.10.35, gmake-3.79.1, ja-vflib-2.25.2, m4-1.4, png-1.0.8_1 p5-Math-FixedPrecision-0.12 Perl module that provides decimal math without floating point errors Maintained by: ports@FreeBSD.org Also listed in: perl5 Wingz-142_1 A Commercial Spreadsheet Maintained by: ports@FreeBSD.org Also listed in: linux Requires: XFree86-3.3.6_7, linux_base-6.1 Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== amanda-2.4.2 The Advanced Maryland Automatic Network Disk Archiver Maintained by: jeh@FreeBSD.org Requires: XFree86-3.3.6_7, freetype-1.3.1_1, gd-1.8.3, gettext-0.10.35, gmake-3.79.1, gnuplot-3.7.1, jpeg-6b, libtool-1.3.4_1, png-1.0.8_1 ari-yahoo-1.9 A console Yahoo! messenger client Maintained by: greid@ukug.uk.freebsd.org Requires: gettext-0.10.35, gmake-3.79.1 dnetc-2.8012.465 Distributed.net distributed computing (rc5/ogr) project Maintained by: dbaker@distributed.net findutils-4.1_1 The GNU find utilities Maintained by: clefevre@citeweb.net Requires: gettext-0.10.35, gmake-3.79.1 ile-2.0_1 An Input Line Editor that wraps itself around programs Maintained by: jmz@FreeBSD.org pybliographer-1.0.8 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.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libglade-0.15, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.11, 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 qhacc-0.7 Simple QT2-based financial manager Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_7, jpeg-6b, lcms-1.06, libmng-0.9.3, png-1.0.8_1, qt-2.2.3_3 smssend-2.4 A tool to send a SMS to any GSM Maintained by: mico@bsd.hu Category net (http://www.freebsd.org/ports/net.html) ================================================================== bind-8.2.3 The Berkeley Internet Name Daemon, an implementation of DNS Maintained by: DougB@FreeBSD.org bind-9.1.0 The Berkeley Internet Name Daemon, an implementation of DNS Maintained by: DougB@FreeBSD.org Also listed in: ipv6 coda-client-5.3.12_1 Client programs for a replicated high-performance network file system Maintained by: coda@cs.cmu.edu Requires: gdbm-1.8.0, gettext-0.10.35, gmake-3.79.1, lwp-1.6, rpc2-1.9, rvm-1.3 coda-server-5.3.12_1 Server programs for a replicated high-performance network file system Maintained by: coda@cs.cmu.edu Requires: gdbm-1.8.0, gettext-0.10.35, gmake-3.79.1, lwp-1.6, rpc2-1.9, rvm-1.3 djbdns-1.04 A collection of secure and reliable DNS tools Maintained by: nbm@FreeBSD.org Requires: daemontools-0.70 ethereal-0.8.15 An X11/GTK network analyzer/capture tool Maintained by: billf@FreeBSD.org Also listed in: ipv6 Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, libtool-1.3.4_1 everybuddy-0.2.0_1 A "chat" program that combines AIM, ICQ, and Yahoo! Chat into one Maintained by: jim@FreeBSD.org Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8 gabber-0.8.1 Gabber: The GNOME Jabber Client Maintained by: erich@tacni.net Requires: ORBit-0.5.7, XFree86-3.3.6_7, bonobo-0.33, bzip2-1.0.1, esound-0.2.22, gal-0.4.1, gconf-0.12, gdk-pixbuf-0.9.0_1, gettext-0.10.35, ghostscript-6.50_2, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gnomemm-1.1.12, gnomeprint-0.25, gnomevfs-0.5, gtk-1.2.8, gtkmm-1.2.4, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libglade-0.15, libiconv-1.4, libsigc++-1.0.1, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libxml-1.8.11, oaf-0.6.2, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k gq-0.3.1 GTK-based LDAP client Maintained by: roman@xpert.com Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, openldap-1.2.11_1 ktelnet-0.63 A Frontend for telnet, rlogin, ssh in K Desktop Environment Maintained by: ports@FreeBSD.org Also listed in: kde Requires: XFree86-3.3.6_7, autoconf-2.13, automake-1.4, gettext-0.10.35, gmake-3.79.1, jpeg-6b, kdelibs-1.1.2_2, m4-1.4, png-1.0.8_1, qt-1.45_1, tiff-3.5.5 kmud-0.5 Cool MUD interface based on KDE/Qt Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_7, gettext-0.10.35, jpeg-6b, kdebase-1.1.2_1, kdelibs-1.1.2_2, libtool-1.3.4_1, png-1.0.8_1, qt-1.45_1, tiff-3.5.5, xpm-3.4k libsmi-0.2.13 A library to access SMI MIB information Maintained by: saper@system.pl Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 mars_nwe-0.99.b19_1 Netware server emulator for Un*x systems Maintained by: bp@FreeBSD.org micq-0.4.6.1 Text-based ICQ implementation Maintained by: ports@freebsd.org ncat-1.2.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 nemesis-1.2 Network packet builder & injection suite Maintained by: ports@FreeBSD.org Also listed in: security Requires: libnet-1.0.1b nttcp-1.47 A client/server program for testing network performance Maintained by: billf@FreeBSD.org Also listed in: benchmarks Requires: gettext-0.10.35, gmake-3.79.1 openldap-2.0.7 Open source LDAP client and server software Maintained by: knu@FreeBSD.org Also listed in: databases Requires: autoconf-2.13, libtool-1.3.4_1, m4-1.4 p5-Socket6-0.08 Perl module to support getaddrinfo() and getnameinfo() Maintained by: ume@FreeBSD.org Also listed in: perl5 ipv6 p5-URI-1.10 Perl5 interface to Uniform Resource Identifier (URI) references Maintained by: ache@FreeBSD.org Also listed in: perl5 Requires: p5-MIME-Base64-2.11 pdnsd-1.1.1 Caching (permanently, writes to disk on exit) DNS proxy-server Maintained by: roman@xpert.com proxy-1.2.0 Transparent logging TCP/IP proxy Maintained by: jasone@FreeBSD.org Requires: cook-2.16_1, gettext-0.10.35 ruby-drb-1.3.1 Distributed Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.2001.01.18, ruby-acl-1.0.1 tik-0.89 A Tcl/Tk based AOL Instant Messenger (AIM) Chat Client Maintained by: dionysos@anti-aol.org Also listed in: tk82 Requires: XFree86-3.3.6_7, tcl-8.2.3, tk-8.2.3 xsmbrowser-3.3.0 Tcl/Tk port of Windows' Network Neighborhood Maintained by: roman@xpert.com Requires: XFree86-3.3.6_7, expect-5.32.1, samba-2.0.7, tcl-8.2.3, tk-8.2.3 zebra-0.90a_3 Free RIPv1, RIPv2, OSPFv2, BGP4 route software (server/reflector) Maintained by: andreas@FreeBSD.org Also listed in: ipv6 Category news (http://www.freebsd.org/ports/news.html) ================================================================== bgrab-1.3.6 Binary Grabber - downloads binaries from newsgroups Maintained by: kbyanc@posi.net Requires: mmencode-2.7 ubh-1.5 Perl script to download and decode binaries posted to Usenet Maintained by: dburr@FreeBSD.ORG Also listed in: graphics Requires: p5-Net-1.0703, p5-News-Newsrc-1.07, p5-Set-IntSpan-1.07 Category palm (http://www.freebsd.org/ports/palm.html) ================================================================== palmos-sdk-3.5_1 Palm OS SDK Maintained by: kuriyama@FreeBSD.org Category print (http://www.freebsd.org/ports/print.html) ================================================================== cups-1.1.6 The Common UNIX Printing System Maintained by: greid@ukug.uk.freebsd.org Requires: bzip2-1.0.1 ghostscript-6.50_2 Aladdin Postscript interpreter version 6 Maintained by: andreas@FreeBSD.org Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, jpeg-6b, png-1.0.8_1 Category security (http://www.freebsd.org/ports/security.html) ================================================================== cracklib-2.7_1 Password-checking library Maintained by: ajk@iu.edu gnupg-1.0.4_3 The GNU Privacy Guard Maintained by: kuriyama@FreeBSD.org heimdal-0.3d_2 A re-implementation of Kerberos V Maintained by: nectar@FreeBSD.ORG Also listed in: ipv6 Requires: XFree86-3.3.6_7 nessus-libnasl-1.0.7 Nessus Attack Scripting Language Maintained by: olgeni@FreeBSD.org Requires: libtool-1.3.4_1, nessus-libraries-1.0.7 nessus-libraries-1.0.7 Libraries for Nessus, the security scanner Maintained by: olgeni@FreeBSD.org Requires: libtool-1.3.4_1 nessus-plugins-1.0.7 Plugins for Nessus, the security scanner Maintained by: olgeni@FreeBSD.org Requires: lynx-2.8.3.1, nessus-1.0.7, nessus-libnasl-1.0.7, nessus-libraries-1.0.7, nmap-2.53 nessus-1.0.7 A security scanner: looks for vulnerabilities in a given network Maintained by: olgeni@FreeBSD.org Requires: libtool-1.3.4_1, nessus-libnasl-1.0.7, nessus-libraries-1.0.7 pam_krb5-1.0_1 A Pluggable Authentication Module for Kerberos 5 Maintained by: nectar@FreeBSD.org Requires: krb5-1.2.1_1 pgp-6.5.8 Public-Key encryption for the masses Maintained by: mike@fate.com Requires: gettext-0.10.35, gmake-3.79.1 snort-1.7 Lightweight network intrusion detection system Maintained by: dirk@FreeBSD.org stunnel-3.13 SSL encryption wrapper for standard network daemons Maintained by: martti.kuparinen@iki.fi Requires: autoconf-2.13, m4-1.4 whisker-1.4_1 A sophisticated CGI (in)security scanner Maintained by: kris@FreeBSD.ORG zebedee-2.0.1 Encrypted, secure compressed TCP tunnel Maintained by: greg@hewgill.com Requires: bzip2-1.0.1 Category shells (http://www.freebsd.org/ports/shells.html) ================================================================== flash-0.9.4 A ncurses-based restriction shell Maintained by: ports@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1 Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== cfengine-1.6.2 GNU cfengine - a systems administration tool for networks Maintained by: ports@FreeBSD.org Requires: autoconf-2.13, automake-1.4, gettext-0.10.35, gmake-3.79.1, m4-1.4 ftrace-0.9a A file modification/creation watcher Maintained by: greid@ukug.uk.freebsd.org gkrellm-1.0.6 A GTK based system monitor Maintained by: ume@FreeBSD.org Also listed in: ipv6 Requires: XFree86-3.3.6_7, 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 gnomecontrolcenter-1.2.2_2 Control center for GNOME project Maintained by: vanilla@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gnomelibs-1.2.11, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gtop-1.0.11 GNOME system moniter program Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gtk-1.2.8, guile-1.4, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libgtop-1.0.10_3, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.11, png-1.0.8_1, tiff-3.5.5, xpm-3.4k ipa-1.0.3 IP Accounting Daemon Maintained by: simon@simon.org.ua logrotate-3.5.2 Daemon to rotate, compress, remove and mail system log files Maintained by: ycheng@sinica.edu.tw Requires: bzip2-1.0.1, gettext-0.10.35, gmake-3.79.1, popt-1.5, rpm-3.0.6_4 logtool-1.0.4 Parse syslog logfile into a palatable format Maintained by: ijliao@FreeBSD.org Requires: libgnugetopt-1.1 medusa-0.3.0 GNOME filesystem indexer Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bonobo-0.33, bzip2-1.0.1, esound-0.2.22, gconf-0.12, gdk-pixbuf-0.9.0_1, gettext-0.10.35, ghostscript-6.50_2, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gnomeprint-0.25, gnomevfs-0.5, gtk-1.2.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libtool-1.3.4_1, libungif-4.1.0b1, libxml-1.8.11, oaf-0.6.2, png-1.0.8_1, popt-1.5, tiff-3.5.5, xpm-3.4k webmin-0.84 Web-based interface for system administration for Unix Maintained by: olgeni@FreeBSD.org Requires: p5-Net-SSLeay-1.05 Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== cocoon-1.8.2 100% pure Java publishing framework servlet Maintained by: kuriyama@FreeBSD.org Also listed in: www java Requires: apache-1.3.17, apache-jserv-1.1.2, javavmwrapper-1.1, jdk-1.1.8, jsdk-2.0 dsssl-docbook-modular-1.60_2 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 gmat-0.2.4b_1 O'Reilly's SGML formatting package. Maintained by: grog Requires: XFree86-3.3.6_7, docbook-3.1, ghostview-1.5, iso8879-1986, mkcatalog-1.1, procmail-3.15, sp-1.3.4 p5-XML-XPath-1.04 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 pspell-0.12 Generic interface to spell checker libraries Maintained by: ports@FreeBSD.org Requires: gettext-0.10.35, gmake-3.79.1, libtool-1.3.4_1 py-martel-0.5_2,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 ruby-rdtool-0.6.7 RD to HTML/man/etc. converter (RD is to Ruby as POD is to Perl) Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: ruby-1.6.2.2001.01.18, ruby-amstd-1.9.6, ruby-optparse-0.7.9, ruby-racc-1.3.6_1, ruby-racc-runtime-1.3.6_1, ruby-strscan-0.6.1 Category www (http://www.freebsd.org/ports/www.html) ================================================================== apache+ipv6-1.3.14_1 The extremely popular Apache http server. Very fast, very clean Maintained by: sumikawa@FreeBSD.org Also listed in: ipv6 apache+mod_ssl-1.3.17+2.8.0 The Apache 1.3 webserver with SSL/TLS functionality Maintained by: rse@engelschall.com Also listed in: security Requires: mm-1.1.3 apache-1.3.17 The extremely popular Apache http server. Very fast, very clean Maintained by: ache@freebsd.org galeon-0.9.b3 A GNOME Web browser based on gecko (the Mozilla rendering engine) Maintained by: sobomax@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bzip2-1.0.1, esound-0.2.22, gdk-pixbuf-0.9.0_1, gettext-0.10.35, glib-1.2.8, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libglade-0.15, libungif-4.1.0b1, libxml-1.8.11, mozilla-0.7_1,1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k gnujsp-1.0.1 GNU implementation of Sun's Java Server Pages Maintained by: girgen@partitur.se Also listed in: java Requires: apache-1.3.17, apache-jserv-1.1.2, javavmwrapper-1.1, jdk-1.1.8, jsdk-2.0 gtkhtml-0.8.2 Lightweight HTML rendering/printing/editing engine Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, bonobo-0.33, bzip2-1.0.1, esound-0.2.22, gal-0.4.1, gconf-0.12, gdk-pixbuf-0.9.0_1, gettext-0.10.35, ghostscript-6.50_2, glib-1.2.8, gmake-3.79.1, gnomeaudio-1.0.0, gnomecontrolcenter-1.2.2_2, gnomecore-1.2.4, gnomelibs-1.2.11, gnomeprint-0.25, gnomevfs-0.5, gtk-1.2.8, guile-1.4, iconv-2.0_1, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libglade-0.15, libtool-1.3.4_1, libungif-4.1.0b1, libunicode-0.4_2, libwww-5.3.1, libxml-1.8.11, oaf-0.6.2, png-1.0.8_1, popt-1.5, pspell-0.12, tiff-3.5.5, xpm-3.4k kannel-1.0 WAP / SMS Gateway Maintained by: martti.kuparinen@iki.fi Requires: autoconf-2.13, gettext-0.10.35, gmake-3.79.1, iconv-2.0_1, libxml2-2.2.11, m4-1.4 libghttp-1.0.9 GNOME http client library Maintained by: vanilla@FreeBSD.org Also listed in: gnome Requires: libtool-1.3.4_1 linux-lesstif-ns-0.92.6 Clone of the Motif library mostly for linux-netscape4 Maintained by: ports@FreeBSD.org Also listed in: x11-toolkits linux Requires: bzip2-1.0.1, linux_base-6.1, linux_devtools-6.1 mod_php3-3.0.18 PHP3 module for Apache Maintained by: dirk@FreeBSD.org Requires: apache-1.3.17 mod_php4-4.0.4pl1 PHP4 module for Apache Maintained by: dirk@FreeBSD.org Requires: apache-1.3.17, libtool-1.3.4_1 mozilla+ipv6-0.7_1,1 The open source, standards compliant web browser Maintained by: sumikawa@FreeBSD.org Also listed in: ipv6 Requires: ORBit-0.5.7, XFree86-3.3.6_7, 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 mozilla-embedded-0.7_1,1 The embeddiable component of mozilla ver 0.0 communicator web-surfboard Maintained by: sobomax@FreeBSD.org Requires: ORBit-0.5.7, XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, jpeg-6b, mozilla-0.7_1,1, png-1.0.8_1 mozilla-0.7_1,1 The open source, standards compliant web browser Maintained by: reg@FreeBSD.org Requires: ORBit-0.5.7, XFree86-3.3.6_7, 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 neon-0.9.1 An HTTP and WebDAV client library for Unix systems, with a C interface Maintained by: olgeni@FreeBSD.org Requires: expat-1.2, libxml-1.8.11 p5-Apache-DBI-0.88 DBI persistent connection, authentication and authorization Maintained by: igor@zynaps.ru Also listed in: databases perl5 Requires: apache-1.3.17, mod_perl-1.24 p5-libwww-5.50 Perl5 library for WWW access Maintained by: ports@FreeBSD.org Also listed in: perl5 devel Requires: p5-Digest-MD5-2.12, p5-HTML-Parser-3.15, p5-MIME-Base64-2.11, p5-Net-1.0703, p5-URI-1.10 sitecopy-0.10.14 Maintains remote websites, uses FTP or WebDAV to sync up with local copy Maintained by: nik@FreeBSD.org Requires: expat-1.2, gettext-0.10.35, gmake-3.79.1, libxml-1.8.11, neon-0.9.1 tinyproxy-1.3.3a A small, efficient HTTP proxy server Maintained by: mitsuru@riken.go.jp Requires: adns-1.0, gettext-0.10.35, gmake-3.79.1 zope-2.3.0 An object-based web application platform with database access Maintained by: nbm@FreeBSD.org Also listed in: python Requires: python-1.5.2_1 Category x11-fm (http://www.freebsd.org/ports/x11-fm.html) ================================================================== mtoolsfm-1.7 A graphical frontend to mtools Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gtk-1.2.8, mtools-3.9.7_2 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== ruby-qt2-0.11 Qt2 extension for Ruby Maintained by: knu@FreeBSD.org Also listed in: ruby Requires: Mesa-3.2.1_1, XFree86-3.3.6_7, 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_3, ruby-1.6.2.2001.01.18 ruby-tk-1.6.2.2001.01.18 Ruby interface to the Tk widget set Maintained by: knu@FreeBSD.org Also listed in: ruby tk82 Requires: XFree86-3.3.6_7, ruby-1.6.2.2001.01.18, ruby-tcltklib-1.6.2.2001.01.18, tcl-8.2.3, tk-8.2.3 scintilla-1.35 A full-featured free source code editing component for GTK+ Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_7, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8 wxgtk-2.2.4 The wxWindows GUI toolkit with GTK+ bindings Maintained by: nectar@FreeBSD.org Requires: XFree86-3.3.6_7, autoconf-2.13, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, jpeg-6b, m4-1.4, png-1.0.8_1, tiff-3.5.5 xview-3.2.1_1 X Window-System-based Visual/Integrated Environment for Workstations Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_7 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== enlightenment-0.16.5_4 A very artistic X window manager Maintained by: vanilla@FreeBSD.org Requires: XFree86-3.3.6_7, esound-0.2.22, fnlib-0.5, freetype-1.3.1_1, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libghttp-1.0.9, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5 fvwm-2.3.27 Popular virtual window manager for X Maintained by: Cy.Schubert@uumail.gov.bc.ca Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, xpm-3.4k sawfish-0.36 Lisp configurable window manager Maintained by: sobomax@FreeBSD.org Requires: XFree86-3.3.6_7, 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.4, libungif-4.1.0b1, png-1.0.8_1, rep-gtk-0.15, tiff-3.5.5 Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== XFree86-3.3.6_7 X11R6.3/XFree86 core distribution Maintained by: jmz@FreeBSD.org gnomelibs-1.2.11 Libraries for GNOME, a GNU desktop environment Maintained by: ade@FreeBSD.org Also listed in: gnome Requires: ORBit-0.5.7, XFree86-3.3.6_7, esound-0.2.22, gettext-0.10.35, glib-1.2.8, gmake-3.79.1, gtk-1.2.8, imlib-1.9.8.1, jpeg-6b, libaudiofile-0.2.0, libtool-1.3.4_1, libungif-4.1.0b1, png-1.0.8_1, tiff-3.5.5, xpm-3.4k wmmenu-0.4 A popup menu of icons that launch programs for the WindowMaker dock Maintained by: karlj000@unbc.ca Requires: XFree86-3.3.6_7, gettext-0.10.35, gmake-3.79.1, libdockapp-0.4.0, xpm-3.4k xdialog-1.5.1 A drop in replacement for the "dialog" or "cdialog" programs Maintained by: ijliao@FreeBSD.org Requires: XFree86-3.3.6_7, bzip2-1.0.1, gettext-0.10.35, glib-1.2.8, gtk-1.2.8 xwatchwin-1.1.1_1 Watch a window on another X server Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.6_7 _________________________________________________________________ © 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: 2001-02-03 00:57:16 UTC; based on revision 1.320 _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi -----BEGIN PGP SIGNATURE----- Version: 2.6.3ia Charset: noconv iQCVAwUBOn0yVTmN/mkrcYGtAQGHZgP/Qr0Q63K1A4dugb4sQPsW1hSfAWsvvaRU FhSOQr09eBO5VB4UXq1IGKP53MnX8Q8/3lBOhzBLdHAm0dBcmGQIDM12AcbsXy6D gTgIr38prHKpRvuI+Hf1UybxKNUfBsF1ptRWgzuuRKKrjPx8m+ss5UNCEbTl1UiA yKtPdhfSvUQ= =xPQl -----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 Sun Feb 4 4: 5:46 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1EBB537B491; Sun, 4 Feb 2001 04:05:30 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14C5O614296; Sun, 4 Feb 2001 04:05:24 -0800 (PST) (envelope-from okazaki) Date: Sun, 4 Feb 2001 04:05:24 -0800 (PST) From: Message-Id: <200102041205.f14C5O614296@freefall.freebsd.org> To: kunishi@c.oka-pu.ac.jp, okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23743: textproc/xerces: upgrade to 1.2.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: textproc/xerces: upgrade to 1.2.3 State-Changed-From-To: open->closed State-Changed-By: okazaki State-Changed-When: Sun Feb 4 04:01:29 PST 2001 State-Changed-Why: Committed by kevlo, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23743 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 4:13:52 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E6D3437B401; Sun, 4 Feb 2001 04:13:34 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14CDYU15896; Sun, 4 Feb 2001 04:13:34 -0800 (PST) (envelope-from okazaki) Date: Sun, 4 Feb 2001 04:13:34 -0800 (PST) From: Message-Id: <200102041213.f14CDYU15896@freefall.freebsd.org> To: bill@twwells.com, okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24661: jdk-tutorial fails checksum verify Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: jdk-tutorial fails checksum verify State-Changed-From-To: open->closed State-Changed-By: okazaki State-Changed-When: Sun Feb 4 04:10:31 PST 2001 State-Changed-Why: Updated by vanilla, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=24661 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 5: 0:23 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 08AFD37B684 for ; Sun, 4 Feb 2001 05:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14D03M19502; Sun, 4 Feb 2001 05:00:03 -0800 (PST) (envelope-from gnats) Received: from t-mta2.odn.ne.jp (mfep2.odn.ne.jp [143.90.131.180]) by hub.freebsd.org (Postfix) with ESMTP id 6818937B67D for ; Sun, 4 Feb 2001 04:59:30 -0800 (PST) Received: from a44.pop16.odn.ne.jp ([210.237.197.88]) by t-mta2.odn.ne.jp with ESMTP id <20010204125927271.UVPA.20693.t-mta2.odn.ne.jp@mta2.odn.ne.jp> for ; Sun, 4 Feb 2001 21:59:27 +0900 Message-Id: <20010204125927271.UVPA.20693.t-mta2.odn.ne.jp@mta2.odn.ne.jp> Date: Sun, 4 Feb 2001 21:54:13 +0900 (JST) From: shuna@pop16.odn.ne.jp Reply-To: shuna@pop16.odn.ne.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24847: Update port: japanese/mutt-devel Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24847 >Category: ports >Synopsis: Update port: japanese/mutt-devel >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 Feb 04 05:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: IWASHITA Yoji >Release: FreeBSD 3.4-RELEASE i386 >Organization: personal >Environment: FreeBSD 3.4-RELEASE >Description: Update: mutt-1.3.13i-ja0 to mutt-1.3.14i-ja0 URL was changed in pkg-descr. >How-To-Repeat: >Fix: diff -uNr mutt-devel.old/Makefile mutt-devel/Makefile --- mutt-devel.old/Makefile Sun Feb 4 13:31:11 2001 +++ mutt-devel/Makefile Sun Feb 4 13:33:22 2001 @@ -30,7 +30,7 @@ RUN_DEPENDS= urlview:${PORTSDIR}/textproc/urlview PRE_VERSION= 1.2 -VERSION= 1.3.13 +VERSION= 1.3.14 JP_VERSION= 0 DIST_SUBDIR= mutt diff -uNr mutt-devel.old/distinfo mutt-devel/distinfo --- mutt-devel.old/distinfo Sun Feb 4 13:31:11 2001 +++ mutt-devel/distinfo Sun Feb 4 13:34:54 2001 @@ -1,3 +1,3 @@ -MD5 (mutt/mutt-1.3.13i.tar.gz) = 1e1520c2576eae00f07e771e7fa48582 -MD5 (mutt/mutt-1.3.13i-ja0.tar.gz) = 43b7a43d1f420f460dd01c901eea6005 +MD5 (mutt/mutt-1.3.14i.tar.gz) = ac3b821ae2ef39cc8c99bd151c788980 +MD5 (mutt/mutt-1.3.14i-ja0.tar.gz) = 20679a84aa8e812b7c50d7fb76b1e17a MD5 (mutt/manual_ja-1.2i-2.tar.gz) = 5a5675ffe23ffe273bd6fe246d3aaefd diff -uNr mutt-devel.old/files/patch-aa mutt-devel/files/patch-aa --- mutt-devel.old/files/patch-aa Mon Oct 2 06:08:28 2000 +++ mutt-devel/files/patch-aa Sun Feb 4 21:05:14 2001 @@ -1,6 +1,6 @@ ---- configure.in.orig Sun Sep 24 04:54:05 2000 -+++ configure.in Sun Sep 24 04:54:50 2000 -@@ -416,14 +416,14 @@ +--- configure.in.orig Sun Feb 4 21:04:05 2001 ++++ configure.in Sun Feb 4 21:04:31 2001 +@@ -417,14 +417,14 @@ [ mutt_cv_func_iconv=no mutt_cv_lib_iconv=no AC_TRY_LINK([#include @@ -18,7 +18,7 @@ [iconv_t cd = iconv_open("",""); iconv(cd,NULL,NULL,NULL,NULL); iconv_close(cd);], mutt_cv_lib_iconv=yes mutt_cv_func_iconv=yes) -@@ -434,7 +434,7 @@ +@@ -435,7 +435,7 @@ AC_MSG_ERROR(Unable to find iconv library) fi if test "$mutt_cv_lib_iconv" = yes; then @@ -26,7 +26,7 @@ + LIBICONV="-lgiconv" fi AC_DEFINE(HAVE_ICONV) - fi + @@ -448,7 +448,7 @@ mutt_save_LIBS="$LIBS" LIBS="$LIBS $LIBICONV" diff -uNr mutt-devel.old/files/patch-ab mutt-devel/files/patch-ab --- mutt-devel.old/files/patch-ab Mon Oct 2 06:08:28 2000 +++ mutt-devel/files/patch-ab Sun Feb 4 21:06:01 2001 @@ -1,5 +1,5 @@ ---- charset.c.orig Sun Sep 24 04:54:05 2000 -+++ charset.c Sun Sep 24 04:55:48 2000 +--- charset.c.orig Sun Feb 4 21:04:05 2001 ++++ charset.c Sun Feb 4 21:05:27 2001 @@ -29,7 +29,7 @@ #include #include diff -uNr mutt-devel.old/files/patch-ac mutt-devel/files/patch-ac --- mutt-devel.old/files/patch-ac Mon Oct 2 06:08:28 2000 +++ mutt-devel/files/patch-ac Sun Feb 4 21:07:26 2001 @@ -1,5 +1,5 @@ ---- gettext.c.orig Wed Jul 19 19:16:08 2000 -+++ gettext.c Sun Sep 24 04:56:28 2000 +--- gettext.c.orig Thu Jan 4 14:38:55 2001 ++++ gettext.c Sun Feb 4 21:06:06 2001 @@ -5,7 +5,7 @@ #include "hash.h" diff -uNr mutt-devel.old/files/patch-ad mutt-devel/files/patch-ad --- mutt-devel.old/files/patch-ad Mon Oct 2 06:08:28 2000 +++ mutt-devel/files/patch-ad Sun Feb 4 21:07:59 2001 @@ -1,5 +1,5 @@ ---- gnupgparse.c.orig Thu May 25 04:18:32 2000 -+++ gnupgparse.c Sun Sep 24 04:57:10 2000 +--- gnupgparse.c.orig Tue Jan 9 07:21:51 2001 ++++ gnupgparse.c Sun Feb 4 21:07:30 2001 @@ -44,7 +44,7 @@ #include "mutt.h" #include "pgp.h" diff -uNr mutt-devel.old/files/patch-ae mutt-devel/files/patch-ae --- mutt-devel.old/files/patch-ae Mon Oct 2 06:08:28 2000 +++ mutt-devel/files/patch-ae Sun Feb 4 21:08:59 2001 @@ -1,5 +1,5 @@ ---- rfc2047.c.orig Sun Sep 24 04:54:06 2000 -+++ rfc2047.c Sun Sep 24 04:57:38 2000 +--- rfc2047.c.orig Sun Feb 4 21:04:05 2001 ++++ rfc2047.c Sun Feb 4 21:08:22 2001 @@ -24,7 +24,7 @@ #include diff -uNr mutt-devel.old/files/patch-af mutt-devel/files/patch-af --- mutt-devel.old/files/patch-af Mon Oct 2 06:08:28 2000 +++ mutt-devel/files/patch-af Sun Feb 4 21:09:51 2001 @@ -1,5 +1,5 @@ ---- charset.h.orig Sun Sep 24 04:54:05 2000 -+++ charset.h Sun Sep 24 04:58:15 2000 +--- charset.h.orig Sun Feb 4 21:04:05 2001 ++++ charset.h Sun Feb 4 21:09:20 2001 @@ -19,7 +19,7 @@ #ifndef _CHARSET_H #define _CHARSET_H @@ -8,4 +8,4 @@ +#include int mutt_convert_string (char **, const char *, const char *); - void mutt_sanitize_ja_chars(char *); + void mutt_sanitize_ja_chars (char *, size_t, int); diff -uNr mutt-devel.old/files/patch-ag mutt-devel/files/patch-ag --- mutt-devel.old/files/patch-ag Mon Oct 2 06:08:28 2000 +++ mutt-devel/files/patch-ag Sun Feb 4 21:10:34 2001 @@ -1,6 +1,6 @@ ---- Makefile.am.orig Wed Aug 30 18:59:43 2000 -+++ Makefile.am Sun Sep 24 04:58:37 2000 -@@ -137,7 +137,6 @@ +--- Makefile.am.orig Wed Oct 11 19:43:53 2000 ++++ Makefile.am Sun Feb 4 21:10:00 2001 +@@ -138,7 +138,6 @@ fi install-data-local: Muttrc diff -uNr mutt-devel.old/pkg-descr mutt-devel/pkg-descr --- mutt-devel.old/pkg-descr Mon Oct 2 06:08:28 2000 +++ mutt-devel/pkg-descr Tue Jan 30 00:24:27 2001 @@ -7,7 +7,7 @@ This is japanized development version. see /usr/local/share/doc/mutt/README.JA-PATCH -WWW: http://www.ne.jp/asahi/cyber/taki/unix-mailer/mutt-dev/ +WWW: http://www.emaillab.org/mutt/ - IWASHITA Yoji >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 Feb 4 5: 4:34 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 375D737B65D; Sun, 4 Feb 2001 05:04:16 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14D4G319800; Sun, 4 Feb 2001 05:04:16 -0800 (PST) (envelope-from okazaki) Date: Sun, 4 Feb 2001 05:04:16 -0800 (PST) From: Message-Id: <200102041304.f14D4G319800@freefall.freebsd.org> To: xaa+ports@madison-gurkha.com, okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24836: url for download is changed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: url for download is changed State-Changed-From-To: open->closed State-Changed-By: okazaki State-Changed-When: Sun Feb 4 05:02:34 PST 2001 State-Changed-Why: Outdated by ports/24846. http://www.freebsd.org/cgi/query-pr.cgi?pr=24836 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 6:40:35 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B72EA37B491 for ; Sun, 4 Feb 2001 06:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14Ee1U54196; Sun, 4 Feb 2001 06:40:01 -0800 (PST) (envelope-from gnats) Received: from rucus.ru.ac.za (rucus.ru.ac.za [146.231.29.2]) by hub.freebsd.org (Postfix) with SMTP id A59BC37B491 for ; Sun, 4 Feb 2001 06:31:46 -0800 (PST) Received: (qmail 33774 invoked by uid 1040); 4 Feb 2001 14:31:34 -0000 Message-Id: <20010204143134.33773.qmail@rucus.ru.ac.za> Date: 4 Feb 2001 14:31:34 -0000 From: drs@rucus.ru.ac.za Reply-To: drs@rucus.ru.ac.za To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24848: New port: mail/mess822 RFC 822 mail message parsing library and rewriting utilities Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24848 >Category: ports >Synopsis: mail/mess822 RFC 822 mail message parsing library and rewriting utilities >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 Feb 04 06:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: David Siebörger >Release: FreeBSD 4.1-STABLE i386 >Organization: Rhodes University Computer Users Society >Environment: >Description: RFC 822 mail message parsing library and rewriting utilities >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: # # mess822 # mess822/Makefile # mess822/distinfo # mess822/pkg-plist # mess822/pkg-comment # mess822/pkg-descr # mess822/files # mess822/files/patch-aa # echo c - mess822 mkdir -p mess822 > /dev/null 2>&1 echo x - mess822/Makefile sed 's/^X//' >mess822/Makefile << 'END-of-mess822/Makefile' X# New ports collection makefile for: mess822 X# Date created: 4 February 2001 X# Whom: David Siebörger X# X# $FreeBSD$ X# X XPORTNAME= mess822 XPORTVERSION= 0.58 XCATEGORIES= mail XMASTER_SITES= http://cr.yp.to/software/ \ X ftp://ftp.qmail.org/pub/software/ X XMAINTAINER= drs@rucus.ru.ac.za X XRUN_DEPENDS= ${QMAIL_DIR}/bin/qmail-send:${PORTSDIR}/mail/qmail X XNO_PACKAGE= Violates djb\'s license X XALL_TARGET= it XINSTALL_TARGET= setup X XMAN1= 822date.1 822field.1 822header.1 822print.1 822received.1 \ X iftocc.1 new-inject.1 XMAN3= mess822.3 mess822_addr.3 mess822_date.3 mess822_fold.3 \ X mess822_quote.3 mess822_token.3 mess822_when.3 XMAN5= rewriting.5 XMAN8= ofmipd.8 ofmipname.8 X X.if exists(${PREFIX}/qmail/bin/qmail-send) XQMAIL_DIR?= ${PREFIX}/qmail X.else XQMAIL_DIR?= /var/qmail X.endif X XNO_MTREE= yes X Xpost-patch: X @perl -pi.bak -e "s|-O2|${CFLAGS}|" ${WRKSRC}/conf-cc X @perl -pi.bak -e "s|.var.qmail|${QMAIL_DIR}|" ${WRKSRC}/conf-qmail X @echo '${PREFIX}' > ${WRKSRC}/conf-home X Xdo-build: X @cd ${WRKSRC} && make ${ALL_TARGET} X Xdo-install: X @cd ${WRKSRC} && make ${INSTALL_TARGET} X X.include END-of-mess822/Makefile echo x - mess822/distinfo sed 's/^X//' >mess822/distinfo << 'END-of-mess822/distinfo' XMD5 (mess822-0.58.tar.gz) = 8ce4c29c994a70dcaa30140601213dbe END-of-mess822/distinfo echo x - mess822/pkg-plist sed 's/^X//' >mess822/pkg-plist << 'END-of-mess822/pkg-plist' Xlib/mess822.a Xbin/ofmipd Xbin/ofmipname Xbin/iftocc Xbin/new-inject Xbin/822field Xbin/822header Xbin/822date Xbin/822received Xbin/822print Xinclude/mess822.h Xetc/leapsecs.dat END-of-mess822/pkg-plist echo x - mess822/pkg-comment sed 's/^X//' >mess822/pkg-comment << 'END-of-mess822/pkg-comment' XRFC 822 mail message parsing library and rewriting utilities END-of-mess822/pkg-comment echo x - mess822/pkg-descr sed 's/^X//' >mess822/pkg-descr << 'END-of-mess822/pkg-descr' Xmess822 is a library for parsing Internet mail messages. The mess822 Xpackage contains several applications that work with qmail: X * ofmipd rewrites messages from dumb clients. It supports a database X of recognized senders and From lines, using cdb for fast lookups. X * new-inject is an experimental new version of qmail-inject. It X includes a flexible user-controlled hostname rewriting mechanism. X * iftocc can be used in .qmail files. It checks whether a known X address is listed in To or Cc. X * 822header, 822field, 822date, and 822received extract various X pieces of information from a mail message. X * 822print converts a message into an easier-to-read format. X Xmess822 supports the full complexity of RFC 822 address lists, including Xaddress groups, source routes, spaces around dots, etc. It also supports Xcommon RFC 822 extensions: backslashes in atoms, dots in phrases, Xaddresses without host names, etc. It extracts each address as an Xeasy-to-use string, with a separate string for the accompanying comment. X Xmess822 converts RFC 822 dates into libtai's struct caltime format. It Xsupports numeric time zones, the standard old-fashioned time zones, and Xmany nonstandard time zones. X XWWW: http://cr.yp.to/mess822.html END-of-mess822/pkg-descr echo c - mess822/files mkdir -p mess822/files > /dev/null 2>&1 echo x - mess822/files/patch-aa sed 's/^X//' >mess822/files/patch-aa << 'END-of-mess822/files/patch-aa' X*** hier.c.orig Sun Feb 4 16:12:16 2001 X--- hier.c Sun Feb 4 16:13:07 2001 X*************** X*** 12,21 **** X d(auto_home,"man/man3",-1,-1,02755); X d(auto_home,"man/man5",-1,-1,02755); X d(auto_home,"man/man8",-1,-1,02755); X! d(auto_home,"man/cat1",-1,-1,02755); X! d(auto_home,"man/cat3",-1,-1,02755); X! d(auto_home,"man/cat5",-1,-1,02755); X! d(auto_home,"man/cat8",-1,-1,02755); X X c(auto_home,"lib","mess822.a",-1,-1,0644); X c(auto_home,"include","mess822.h",-1,-1,0644); X--- 12,18 ---- X d(auto_home,"man/man3",-1,-1,02755); X d(auto_home,"man/man5",-1,-1,02755); X d(auto_home,"man/man8",-1,-1,02755); X! d(auto_home,"etc",-1,-1,02755); X X c(auto_home,"lib","mess822.a",-1,-1,0644); X c(auto_home,"include","mess822.h",-1,-1,0644); X*************** X*** 48,70 **** X c(auto_home,"man/man3","mess822_token.3",-1,-1,0644); X c(auto_home,"man/man3","mess822_when.3",-1,-1,0644); X X! c(auto_home,"man/cat1","iftocc.0",-1,-1,0644); X! c(auto_home,"man/cat1","new-inject.0",-1,-1,0644); X! c(auto_home,"man/cat1","822field.0",-1,-1,0644); X! c(auto_home,"man/cat1","822header.0",-1,-1,0644); X! c(auto_home,"man/cat1","822date.0",-1,-1,0644); X! c(auto_home,"man/cat1","822received.0",-1,-1,0644); X! c(auto_home,"man/cat1","822print.0",-1,-1,0644); X! c(auto_home,"man/cat5","rewriting.0",-1,-1,0644); X! c(auto_home,"man/cat8","ofmipd.0",-1,-1,0644); X! c(auto_home,"man/cat8","ofmipname.0",-1,-1,0644); X! c(auto_home,"man/cat3","mess822.0",-1,-1,0644); X! c(auto_home,"man/cat3","mess822_addr.0",-1,-1,0644); X! c(auto_home,"man/cat3","mess822_date.0",-1,-1,0644); X! c(auto_home,"man/cat3","mess822_fold.0",-1,-1,0644); X! c(auto_home,"man/cat3","mess822_quote.0",-1,-1,0644); X! c(auto_home,"man/cat3","mess822_token.0",-1,-1,0644); X! c(auto_home,"man/cat3","mess822_when.0",-1,-1,0644); X! X! c("/etc",".","leapsecs.dat",-1,-1,0644); X } X--- 45,49 ---- X c(auto_home,"man/man3","mess822_token.3",-1,-1,0644); X c(auto_home,"man/man3","mess822_when.3",-1,-1,0644); X X! c(auto_home,"etc","leapsecs.dat",-1,-1,0644); X } END-of-mess822/files/patch-aa 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 Feb 4 6:50:29 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E2FD137B491 for ; Sun, 4 Feb 2001 06:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14Eo3q94785; Sun, 4 Feb 2001 06:50:03 -0800 (PST) (envelope-from gnats) Date: Sun, 4 Feb 2001 06:50:03 -0800 (PST) Message-Id: <200102041450.f14Eo3q94785@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: =?iso-2022-jp?B?GyRCNGQyPE1NTjwbKEKjIg==?= Subject: Re: ports/24847: Update port: japanese/mutt-devel Reply-To: =?iso-2022-jp?B?GyRCNGQyPE1NTjwbKEKjIg==?= Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24847; it has been noted by GNATS. From: =?iso-2022-jp?B?GyRCNGQyPE1NTjwbKEKjIg==?= To: freebsd-gnats-submit@FreeBSD.org, shuna@pop16.odn.ne.jp Cc: Subject: Re: ports/24847: Update port: japanese/mutt-devel Date: Sun, 04 Feb 2001 23:44:28 +0900 Sorry, there is minor change. before: +MD5 (mutt/mutt-1.3.14i-ja0.tar.gz) = 20679a84aa8e812b7c50d7fb76b1e17a after: +MD5 (mutt/mutt-1.3.14i-ja0.tar.gz) = fa97242b23fe8c625893d3e98d9ca65a To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 6:51: 1 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C52E137B4EC; Sun, 4 Feb 2001 06:50:45 -0800 (PST) Received: (from roam@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14EojE97631; Sun, 4 Feb 2001 06:50:45 -0800 (PST) (envelope-from roam) Date: Sun, 4 Feb 2001 06:50:45 -0800 (PST) From: Message-Id: <200102041450.f14EojE97631@freefall.freebsd.org> To: roam@FreeBSD.org, freebsd-ports@FreeBSD.org, roam@FreeBSD.org Subject: Re: ports/24848: mail/mess822 RFC 822 mail message parsing library and rewriting utilities Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mail/mess822 RFC 822 mail message parsing library and rewriting utilities Responsible-Changed-From-To: freebsd-ports->roam Responsible-Changed-By: roam Responsible-Changed-When: Sun Feb 4 06:50:22 PST 2001 Responsible-Changed-Why: I'll take care of this. http://www.freebsd.org/cgi/query-pr.cgi?pr=24848 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 8:37:38 2001 Delivered-To: freebsd-ports@freebsd.org Received: from ashburn.skiltech.com (ashburn.skiltech.com [216.235.79.239]) by hub.freebsd.org (Postfix) with ESMTP id 4014B37B503 for ; Sun, 4 Feb 2001 08:37:20 -0800 (PST) Received: (from minter@localhost) by ashburn.skiltech.com (8.11.1/8.11.1) id f14GbGZ86736; Sun, 4 Feb 2001 11:37:16 -0500 (EST) (envelope-from minter) Date: Sun, 4 Feb 2001 11:37:16 -0500 (EST) From: "H. Wade Minter" X-X-Sender: To: Pete Fritchman Cc: Subject: Re: wmnetselect port broken In-Reply-To: <20010203235623.B43682@databits.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 Yup - it was. My bad. Installing the imake port fixed it. On Sat, 3 Feb 2001, Pete Fritchman wrote: > Looks like your machine is broken: > ... > ===> Configuring for wmnetselect-0.8 > mv -f Makefile Makefile.bak > imake -DUseInstalled -I/usr/X11R6/lib/X11/config > make Makefiles > ... > > tol [107] % ls -l /usr/X11R6/lib/X11/config/Imake.tmpl > -r--r--r-- 1 root wheel 35532 Jul 24 2000 /usr/X11R6/lib/X11/config/Imake.tmpl > tol [108] % > > I'm guessing that you don't have that file. How did you install X? > > -pete > > ++ 03/02/01 17:02 -0500 - H. Wade Minter: > >cvsup'd yesterday. Trying to compile /usr/ports/www/wmnetselect. > > > >>> Checksum OK for wmnetselect-0.8.tar.gz. > >===> wmnetselect-0.8 depends on executable: imake - found > >===> wmnetselect-0.8 depends on shared library: X11.6 - found > >===> Patching for wmnetselect-0.8 > >===> Applying FreeBSD patches for wmnetselect-0.8 > >===> Configuring for wmnetselect-0.8 > >mv -f Makefile Makefile.bak > >imake -DUseInstalled -I/usr/X11R6/lib/X11/config > >Imakefile.c:9: Imake.tmpl: No such file or directory > >imake: Exit code 1. > > Stop. > >*** Error code 1 > > > > > > > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org > >with "unsubscribe freebsd-ports" in the body of the message > -- > Pete Fritchman > Databits Network Services, Inc. > finger petef@databits.net for PGP key > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 10:49: 5 2001 Delivered-To: freebsd-ports@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id CA60237B69D for ; Sun, 4 Feb 2001 10:48:47 -0800 (PST) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.11.1/8.11.1) with ESMTP id f14Iml291126 for ; Sun, 4 Feb 2001 10:48:47 -0800 (PST) (envelope-from jdp@wall.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.11.1/8.11.0) id f14ImkV01881; Sun, 4 Feb 2001 10:48:46 -0800 (PST) (envelope-from jdp) Date: Sun, 4 Feb 2001 10:48:46 -0800 (PST) Message-Id: <200102041848.f14ImkV01881@vashon.polstra.com> To: ports@freebsd.org From: John Polstra Reply-To: ports@freebsd.org Subject: Re: HEADS UP: some attics coming back... In-Reply-To: <200102040434.f144Y3t01970@mobile.wemm.org> References: <200102040434.f144Y3t01970@mobile.wemm.org> Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <200102040434.f144Y3t01970@mobile.wemm.org>, Peter Wemm wrote: > I will be restoring some Attic files that existed with the > RELEASE_4_2 tags. People are using cvsup to try and update 4.2-R CD > ports trees and cvsup is failing to delete old patches. CVSup is "failing" only in the sense that some people aren't using it properly. It _will_ reliably delete old patches if it thinks they belong to it. See: http://www.polstra.com/projects/freeware/CVSup/faq.html#caniadopt as well as the two questions following it in the CVSup FAQ. Trust me, if CVSup deleted "extra" files that didn't explicitly belong to it, you wouldn't like that either. Do you value your kernel config files? ;-) For those who didn't follow the procedures above and who think they might have some orphaned files in their trees, the standard CVSup distribution contains a script called "cvsupchk" which will clean things up. It is in the directory "contrib/cvsupchk". Maybe one of you should make a port out of it (*hint hint, nudge nudge*). :-) John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 10:49:16 2001 Delivered-To: freebsd-ports@freebsd.org Received: from gypsy.vrac.iastate.edu (gypsy.vrac.iastate.edu [129.186.232.122]) by hub.freebsd.org (Postfix) with ESMTP id EB96B37B69F for ; Sun, 4 Feb 2001 10:48:58 -0800 (PST) Received: from tomservo.vrac.iastate.edu (tomservo.vrac.iastate.edu [129.186.232.121]) by gypsy.vrac.iastate.edu (Postfix) with ESMTP id DF4231A; Sun, 4 Feb 2001 12:48:58 -0600 (CST) Received: from tomservo.vrac.iastate.edu (localhost [127.0.0.1]) by tomservo.vrac.iastate.edu (Postfix) with ESMTP id 63AEA5E13; Sun, 4 Feb 2001 12:48:52 -0600 (CST) To: Kris Kennaway Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Which XFree86 4 port to use? In-reply-to: "Sat, 03 Feb 2001 18:31:26 PST." <20010203183126.A42809@xor.obsecurity.org> Date: Sun, 04 Feb 2001 12:48:52 -0600 From: Patrick Hartling Message-Id: <20010204184852.63AEA5E13@tomservo.vrac.iastate.edu> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Kris Kennaway wrote: } On Sat, Feb 03, 2001 at 06:25:51PM -0600, Patrick Hartling wrote: } } > So my question is really this: should I build 4.0.2 from XFree86-4 or } > just continue to be patient waiting for the modularized version to be } > upgraded? It doesn't matter either way to me, but I want to be sure to } > use the one that will get along with all the other X11 ports. Thanks. } } Well, presumably the modular one will be upgraded at some point, so } it's up to you whether or not you can wait. :-) I guess I'll just keep on waiting. :) I'm a pretty patient person, and the modular one has worked very well so far. I'd hate to switch over and get worse results. -Patrick Patrick L. Hartling | Research Assistant, VRAC patrick@137.org | 2624 Howe Hall -- (515)294-4916 http://www.137.org/patrick/ | http://www.vrac.iastate.edu/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 11: 6:46 2001 Delivered-To: freebsd-ports@freebsd.org Received: from ipamzlx.physik.uni-mainz.de (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by hub.freebsd.org (Postfix) with ESMTP id B786137B401; Sun, 4 Feb 2001 11:06:25 -0800 (PST) Received: from ipamzlx.Physik.Uni-Mainz.DE (ipamzlx.Physik.Uni-Mainz.DE [134.93.180.54]) by ipamzlx.physik.uni-mainz.de (8.11.2/8.11.2) with ESMTP id f14J7PS69946; Sun, 4 Feb 2001 20:07:25 +0100 (CET) (envelope-from ohartman@ipamzlx.physik.uni-mainz.de) Date: Sun, 4 Feb 2001 20:07:25 +0100 (CET) From: "O. Hartmann" To: freebsd-questions@freebsd.org Cc: freebsd-ports@freebsd.org Subject: StarOffice 5.2 and ODBC 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 Dear Sirs. Again, and again ... I have much trouble to connect StarOffice via ODBC to our MySQL server. With StarOffice and M$-Access 2000 on Windooze platforms and MyODB I do not have any kind of problems connecting the MySQL server. But from all FreeBSD based UNIX clients, on which we run StarOffice 5.2 as a better replacement for the crap on Windows machines, I have no access to our MySQL server. Data: MySQL 2.23.32 runs on FreeBSD 4.2; all clients running FBSD 4.2, StarOffice 5.2 (german) from ports collection. ODBC is MyODBC 2.50.36 compiled with unixODBC 2.0.3. I already set up /usr/local/etc/odbcinst.ini and odbc.ini the right way. I have a user, she's administering our student's library database. She has an account and within this account she has her own .odbc.ini file set up to the right database and table. When running StarOffice, we try to connect to the MySQL server via ODBC, we do exact the same procedure as we did on all Windooze machines with success. But it seems that on FreeBSD StarOffice can not find .odbc.ini. It reports an error and says we should check our configuration against libodbc.so. But this library is present and within search paths we provide. To avoid confudingly path-searches I linked the odbcinst.ini and odbc.ini into all Linux-compat /etc and /usr/local/etc search paths within the Linux compat tree - without any success. I tried to force linux to search the FreeBSD library paths to recognize where the libraries are ... no success. I think this could turn me into big problems because of the difference between Linux and FreeBSD libraries. As often as I asked in StarOffice mailing lists I got some curious answers about how to cross link libraries; so I try to ask again the FreeBSD community. I hope there is someone who's already set up StarOffice with ODBC access ... What is the trick? Do I need Linux libs for ODBC? Is there another way using a simple do use ODBC client to access a MySQL database, simple to use for a commom user, not a crack or hacker or admin ...??? Well, thanks in advance! Best wishes, Oliver -- MfG O. Hartmann ohartman@mail.physik.uni-mainz.de ---------------------------------------------------------------- IT-Administration des Institut fuer Physik der Atmosphaere (IPA) ---------------------------------------------------------------- Johannes Gutenberg Universitaet Mainz Becherweg 21 55099 Mainz Tel: +496131/3924662 (Maschinensaal) Tel: +496131/3924144 FAX: +496131/3923532 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 11:42:28 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (smtp.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 47D2A37B4EC for ; Sun, 4 Feb 2001 11:42:08 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f14Jg3822596 for ; Sun, 4 Feb 2001 21:42:05 +0200 Received: (from max@localhost) by vic.sabbo.net (8.11.2/8.9.3) id f14Jg6325245 for ports@freebsd.org; Sun, 4 Feb 2001 21:42:06 +0200 (EET) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200102041942.f14Jg6325245@vic.sabbo.net> Subject: Re: HEADS UP: some attics coming back... To: ports@freebsd.org Date: Sun, 4 Feb 2001 21:42:04 +0200 (EET) In-Reply-To: <200102041848.f14ImkV01881@vashon.polstra.com> from "John Polstra" at Feb 04, 2001 10:48:46 AM X-Mailer: ELM [version 2.5 PL3] 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 > > In article <200102040434.f144Y3t01970@mobile.wemm.org>, Peter Wemm > wrote: > > > I will be restoring some Attic files that existed with the > > RELEASE_4_2 tags. People are using cvsup to try and update 4.2-R CD > > ports trees and cvsup is failing to delete old patches. > > CVSup is "failing" only in the sense that some people aren't using it > properly. It _will_ reliably delete old patches if it thinks they > belong to it. See: > > http://www.polstra.com/projects/freeware/CVSup/faq.html#caniadopt > > as well as the two questions following it in the CVSup FAQ. > > Trust me, if CVSup deleted "extra" files that didn't explicitly belong > to it, you wouldn't like that either. Do you value your kernel config > files? ;-) > > For those who didn't follow the procedures above and who think they > might have some orphaned files in their trees, the standard CVSup > distribution contains a script called "cvsupchk" which will clean > things up. It is in the directory "contrib/cvsupchk". Maybe one of > you should make a port out of it (*hint hint, nudge nudge*). :-) Maybe it's better to add some option into cvsup, which would instruct it to delete all orphaned files and dirs? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 12:20:25 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9ADD37B6A2 for ; Sun, 4 Feb 2001 12:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14KK1C63088; Sun, 4 Feb 2001 12:20:01 -0800 (PST) (envelope-from gnats) Received: from eeyore.local.dohd.org (d0030.upc-d.chello.nl [213.46.0.30]) by hub.freebsd.org (Postfix) with ESMTP id 5582E37B67D for ; Sun, 4 Feb 2001 12:17:41 -0800 (PST) Received: by eeyore.local.dohd.org (Postfix, from userid 1002) id 7EF54BABB; Sun, 4 Feb 2001 21:17:39 +0100 (MET) Message-Id: <20010204201739.7EF54BABB@eeyore.local.dohd.org> Date: Sun, 4 Feb 2001 21:17:39 +0100 (MET) From: xaa+ports@madison-gurkha.com Reply-To: xaa+ports@madison-gurkha.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/24850: libslang, port upgrade by maintainer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24850 >Category: ports >Synopsis: Upgrade of libslang port to 1.4.3 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sun Feb 04 12:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mark Huizer; Eindhoven >Release: FreeBSD 5.0-CURRENT i386 >Organization: Madison Gurkha BV >Environment: System: FreeBSD eeyore.local.dohd.org 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Jan 30 19:19:31 MET 2001 xaa@eeyore.local.dohd.org:/usr2/sources/src/sys/compile/eeyore i386 >Description: libslang upgrade to 1.4.3, see patch >How-To-Repeat: >Fix: diff -udr ../devel/libslang/Makefile libslang/Makefile --- ../devel/libslang/Makefile Tue Jan 9 09:29:57 2001 +++ libslang/Makefile Sat Feb 3 23:35:06 2001 @@ -6,8 +6,8 @@ # PORTNAME= libslang -PORTVERSION= 1.4.2 -PORTREVISION= 1 +PORTVERSION= 1.4.3 +#PORTREVISION= 0 CATEGORIES= devel MASTER_SITES= ftp://space.mit.edu/pub/davis/slang/v1.4/ DISTNAME= slang-${PORTVERSION} diff -udr ../devel/libslang/distinfo libslang/distinfo --- ../devel/libslang/distinfo Tue Sep 5 03:56:32 2000 +++ libslang/distinfo Sat Feb 3 22:42:50 2001 @@ -1 +1 @@ -MD5 (slang-1.4.2.tar.bz2) = 9dcc099578608b4ec12836ed4e2f0c0a +MD5 (slang-1.4.3.tar.bz2) = e173142a853aaa5bc989c9b2d0853d56 diff -udr ../devel/libslang/files/patch-aa libslang/files/patch-aa --- ../devel/libslang/files/patch-aa Tue Jan 9 09:29:57 2001 +++ libslang/files/patch-aa Sun Feb 4 21:08:14 2001 @@ -1,32 +1,26 @@ ---- configure.orig Sun Aug 20 11:20:18 2000 -+++ configure Sat Jan 6 09:57:40 2001 -@@ -1753,14 +1753,13 @@ - fi - +--- ./configure.orig Sat Feb 3 22:08:12 2001 ++++ configure Sun Feb 4 21:07:52 2001 +@@ -1833,8 +1833,8 @@ + #define HAVE_DLFCN_H 1 + EOF --echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 --echo "configure:1758: checking for dlopen in -ldl" >&5 -+echo $ac_n "checking for dlopen""... $ac_c" 1>&6 -+echo "configure:1758: checking for dlopen" >&5 +- echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 +-echo "configure:1838: checking for dlopen in -ldl" >&5 ++ echo $ac_n "checking for dlopenl""... $ac_c" 1>&6 ++echo "configure:1838: checking for dlopen" >&5 ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 - else - ac_save_LIBS="$LIBS" --LIBS="-ldl $LIBS" - cat > conftest.$ac_ext <&6 -- DYNAMIC_LINK_LIB="-ldl" -+ DYNAMIC_LINK_LIB="" - cat >> confdefs.h <<\EOF - #define HAVE_DLFCN_H 1 +- DYNAMIC_LINK_LIB="-ldl" ++ DYNAMIC_LINK_LIB="" + cat >> confdefs.h <<\EOF + #define HAVE_DLOPEN 1 EOF -@@ -1906,6 +1905,19 @@ +@@ -2046,6 +2046,19 @@ IEEE_CFLAGS="-ieee_with_no_inexact" fi ;; @@ -46,10 +40,10 @@ * ) IEEE_CFLAGS="" esac -@@ -2231,16 +2243,8 @@ +@@ -2408,16 +2421,8 @@ echo $ac_n "checking SLANG_VERSION""... $ac_c" 1>&6 - echo "configure:2234: checking SLANG_VERSION" >&5 + echo "configure:2411: checking SLANG_VERSION" >&5 -slang_version=`grep "^#define *SLANG_VERSION " $srcdir/src/slang.h | - awk '{ print $3 }'` -slang_major_version=`echo $slang_version | @@ -61,7 +55,7 @@ - -slang_minor_version="$slang_minor_version.$slang_mminor_version" +slang_major_version=1 -+slang_minor_version=4 ++slang_miner_version=4 slang_version="$slang_major_version.$slang_minor_version" echo "$ac_t""$slang_version" 1>&6 diff -udr ../devel/libslang/files/patch-ae libslang/files/patch-ae --- ../devel/libslang/files/patch-ae Thu Jan 27 07:36:56 2000 +++ libslang/files/patch-ae Sun Feb 4 21:10:33 2001 @@ -4,8 +4,8 @@ exec_prefix = @exec_prefix@ install_lib_dir = @libdir@ install_include_dir = @includedir@ --install_doc_dir = $(prefix)/doc/slang/@slang_version@ -+install_doc_dir = $(prefix)/share/doc/slang/@slang_version@ +-install_doc_dir = $(prefix)/doc/slang ++install_doc_dir = $(prefix)/share/doc/slang DOC_FILES = ../changes.txt ../COPY* ../doc/slangdoc.html ../doc/text/*.txt #--------------------------------------------------------------------------- # Misc commands (safe to leave these untouched) >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 Feb 4 12:39:13 2001 Delivered-To: freebsd-ports@freebsd.org Received: from k9k203-3.kam.afb.lu.se (k9k203-3.kam.afb.lu.se [194.47.220.194]) by hub.freebsd.org (Postfix) with SMTP id 846FF37B401 for ; Sun, 4 Feb 2001 12:38:56 -0800 (PST) Received: (qmail 2160 invoked from network); 4 Feb 2001 20:39:00 -0000 Received: from unknown (HELO gollum.k9k203-3.kam.afb.lu.se) (192.168.0.2) by k9k203-3.kam.afb.lu.se with SMTP; 4 Feb 2001 20:39:00 -0000 Received: (qmail 23915 invoked by uid 1001); 4 Feb 2001 20:37:33 -0000 Date: Sun, 4 Feb 2001 21:37:33 +0100 From: Sverre Valgeirsson To: freebsd-ports@freebsd.org Subject: Am I doing something wrong? Message-ID: <20010204213733.C538@gollum.k9k203-3.kam.afb.lu.se> Reply-To: e96sv@efd.lth.se 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 Hi. I submitted my first two ports a while ago (24422:ksetiwatch and 24488:kbear), and they haven't gotten into the ports tree. did I make a mistake submitting them, did they just go by unnoticed or is someone looking at them ? Just wondering.. greetings /sverre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 12:53:47 2001 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 E491C37B401 for ; Sun, 4 Feb 2001 12:53:29 -0800 (PST) Received: from fwd01.sul.t-online.com by mailout02.sul.t-online.com with smtp id 14PW9t-0001n8-09; Sun, 04 Feb 2001 21:53:17 +0100 Received: from neutron.cichlids.com (520050424122-0001@[62.225.192.237]) by fmrl01.sul.t-online.com with esmtp id 14PW9i-2CibcOC; Sun, 4 Feb 2001 21:53:06 +0100 Received: from cichlids.cichlids.com (cichlids.cichlids.com [192.168.0.10]) by neutron.cichlids.com (Postfix) with ESMTP id B27A7AB44; Sun, 4 Feb 2001 21:53:10 +0100 (CET) Received: by cichlids.cichlids.com (Postfix, from userid 1001) id B534314A3A; Sun, 4 Feb 2001 21:53:04 +0100 (CET) Date: Sun, 4 Feb 2001 21:53:04 +0100 To: Sverre Valgeirsson Cc: freebsd-ports@freebsd.org Subject: Re: Am I doing something wrong? Message-ID: <20010204215304.B3177@cichlids.cichlids.com> Mail-Followup-To: alex@cichlids.cichlids.com, Sverre Valgeirsson , freebsd-ports@freebsd.org References: <20010204213733.C538@gollum.k9k203-3.kam.afb.lu.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010204213733.C538@gollum.k9k203-3.kam.afb.lu.se>; from e96sv@efd.lth.se on Sun, Feb 04, 2001 at 09:37:33PM +0100 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 Sverre Valgeirsson (e96sv@efd.lth.se): > did I make a mistake submitting them, did they just go by unnoticed or is someone looking at them ? I guess nobody had the time to look at them since now, sorry. Please wait some more, if something is wrong you are told. If not, they are just committed. 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 Sun Feb 4 13:50:31 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7019737B491 for ; Sun, 4 Feb 2001 13:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14Lo1R73616; Sun, 4 Feb 2001 13:50:01 -0800 (PST) (envelope-from gnats) Received: from master.branda.to (host131.co154.isl.net.tw [210.208.154.131]) by hub.freebsd.org (Postfix) with SMTP id A7F0A37B401 for ; Sun, 4 Feb 2001 13:40:51 -0800 (PST) Received: (qmail 64916 invoked by uid 0); 4 Feb 2001 21:51:45 -0000 Message-Id: <20010204215145.64915.qmail@master.branda.to> Date: 4 Feb 2001 21:51:45 -0000 From: thinker.bbs@bbs.yzu.edu.tw Reply-To: thinker.bbs@bbs.yzu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24852: courier-0.31.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24852 >Category: ports >Synopsis: courier-0.31.0 >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 04 13:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: thinker >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: >Description: >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: # # courier # courier/Makefile # courier/pkg-plist # courier/pkg-descr # courier/pkg-comment # courier/distinfo # echo c - courier mkdir -p courier > /dev/null 2>&1 echo x - courier/Makefile sed 's/^X//' >courier/Makefile << 'END-of-courier/Makefile' X# New ports collection makefile for: courier X# Date created: 3 February 2001 X# Whom: Thinker K.F. Li X# X# $FreeBSD$ X# X XPORTNAME= courier XPORTVERSION= 0.31.0 XCATEGORIES= mail XMASTER_SITES= \ X ftp://download.sourceforge.net/pub/sourceforge/courier/ \ X http://download.sourceforge.net/courier/ X#DISTNAME= ${PORTNAME}-$(PORTVERSION} X X#HAS_CONFIGURE= yes X#GNU_CONFIGURE= yes XCONFIGURE_ARGS= \ X --disable-root-check \ X --prefix=${PREFIX} \ X --exec-prefix=${PREFIX} \ X --datadir=${PREFIX}/share/courier \ X --sysconfdir=${PREFIX}/etc/courier \ X --sharedstatedir=/var/run/courier \ X --localstatedir=/var/run/courier X XMAN1= sendmail.1 preline.1 maildirmake.1 cancelmsg.1 dotlock.1 \ X maildrop.1 makemime.1 makedat.1 reformail.1 reformime.1 \ X couriermlm.1 testmxlookup.1 dot-forward.1 couriertls.1 XMAN5= dot-courier.5 maildropex.5 maildropfilter.5 maildropgdbm.5 XMAN7= localmailfilter.7 maildirquota.7 XMAN8= courierfilter.8 dupfilter.8 courierperlfilter.8 authlib.8 \ X courier.8 courierldapaliasd.8 courierpop3login.8 couriertcpd.8 \ X deliverquota.8 esmtpd.8 mailq.8 makeacceptmailfor.8 \ X makehosteddomains.8 mkesmtpdcert.8 mkimapdcert.8 makealiases.8 \ X makepercentrelay.8 makesmtpaccess.8 makeuserdb.8 pop3d.8 \ X submit.8 userdb.8 userdbpw.8 imapd.8 courieruucp.8 XMLINKS= sendmail.1 rmail.1 authlib.8 authshadow.8 authlib.8 authpam.8 \ X authlib.8 authcram.8 authlib.8 authmysql.8 authlib.8 authdaemond.8 \ X makeuserdb.8 pw2userdb.8 makesmtpaccess.8 makesmtpaccess-msa.8 \ X dot-forward.1 dotforward.1 courierfilter.8 filterctl.8 \ X authlib.8 authpwd.8 authlib.8 authuserdb.8 authlib.8 authvchkpw.8 \ X authlib.8 authldap.8 authlib.8 authdaemon.8 \ X courierpop3login.8 courierpop3d.8 makeuserdb.8 vchkpw2userdb.8 \ X esmtpd.8 esmtpd-msa.8 courieruucp.8 makeuucpneighbors.8 X X XMANCOMPRESSED= no X#NOMANCOMPRESS= yes X X#MAINTAINER= thinker.bbs@bbs.yzu.edu.tw X Xdo-configure: X cd ${WRKSRC} && ./configure ${CONFIGURE_ARGS} X Xtt: X echo ${MAN1} ${MAN5} ${MAN7} ${MAN8} X X.include END-of-courier/Makefile echo x - courier/pkg-plist sed 's/^X//' >courier/pkg-plist << 'END-of-courier/pkg-plist' X@group bin Xlibexec/courier/webmail/webmail X@group mail Xbin/maildrop X@group daemon Xbin/sendmail Xlibexec/courier/modules/esmtp/authstart X@group wheel Xetc/courier/ldapaddressbook.dist Xlibexec/filters/perlfilter Xlibexec/filters/dupfilter Xsbin/courierfilter Xshare/courier/sqwebmail/html/en-us/LOCALE Xshare/courier/sqwebmail/html/en-us/LANGUAGE Xshare/courier/sqwebmail/html/en-us/LANGUAGE_PREF Xshare/courier/sqwebmail/html/en-us/ISPELLDICT Xshare/courier/sqwebmail/html/en-us/CHARSET Xshare/courier/sqwebmail/html/en-us/attachments.html Xshare/courier/sqwebmail/html/en-us/abooklist.html Xshare/courier/sqwebmail/html/en-us/empty.html Xshare/courier/sqwebmail/html/en-us/expired.html Xshare/courier/sqwebmail/html/en-us/folder.html Xshare/courier/sqwebmail/html/en-us/folders.html Xshare/courier/sqwebmail/html/en-us/index.html Xshare/courier/sqwebmail/html/en-us/invalid.html Xshare/courier/sqwebmail/html/en-us/login.html Xshare/courier/sqwebmail/html/en-us/filter.html Xshare/courier/sqwebmail/html/en-us/ldaplist.html Xshare/courier/sqwebmail/html/en-us/ldapsearch.html Xshare/courier/sqwebmail/html/en-us/newmsg.html Xshare/courier/sqwebmail/html/en-us/preferences.html Xshare/courier/sqwebmail/html/en-us/printnocookie.html Xshare/courier/sqwebmail/html/en-us/printredirect.html Xshare/courier/sqwebmail/html/en-us/quickadd.html Xshare/courier/sqwebmail/html/en-us/print.html Xshare/courier/sqwebmail/html/en-us/readmsg.html Xshare/courier/sqwebmail/html/en-us/redirect.html Xshare/courier/sqwebmail/html/en-us/spellchk.html Xshare/courier/sqwebmail/sendit.sh Xshare/courier/sqwebmail/cleancache.pl Xshare/courier/sqwebmail/ldapsearch Xshare/courier/perlfilter-wrapper.pl Xshare/courier/perlfilter-example.pl Xshare/courier/filterctl Xshare/courier/couriermlm/subreporthdr.tmpl Xshare/courier/couriermlm/subreporthdr1.tmpl Xshare/courier/couriermlm/subreporthdr2.tmpl Xshare/courier/couriermlm/subreporthdr3.tmpl X@owner bin X@group bin Xbin/couriertls Xlibexec/courier/modules/modules.ctl Xlibexec/courier/imaplogin Xlibexec/authlib/authcustom Xlibexec/authlib/authcram Xlibexec/authlib/authuserdb Xlibexec/authlib/authpam Xshare/courier/htmldoc/courierfilter.html Xshare/courier/htmldoc/courierperlfilter.html Xshare/courier/htmldoc/dupfilter.html Xshare/courier/htmldoc/aliases.html Xshare/courier/htmldoc/courierd.html Xshare/courier/htmldoc/courierdsn.html Xshare/courier/htmldoc/esmtp.html Xshare/courier/htmldoc/index.html Xshare/courier/htmldoc/install.html Xshare/courier/htmldoc/intro.html Xshare/courier/htmldoc/history.html Xshare/courier/htmldoc/layout.html Xshare/courier/htmldoc/links.html Xshare/courier/htmldoc/local.html Xshare/courier/htmldoc/mailq.html Xshare/courier/htmldoc/modules.html Xshare/courier/htmldoc/queue.html Xshare/courier/htmldoc/structures.html Xshare/courier/htmldoc/sendmail.html Xshare/courier/htmldoc/dot-forward.html Xshare/courier/htmldoc/FAQ.html Xshare/courier/htmldoc/draft-varshavchik-exdata-smtpext.txt Xshare/courier/htmldoc/draft-varshavchik-verp-smtpext.txt Xshare/courier/htmldoc/authlib.html Xshare/courier/htmldoc/courier.html Xshare/courier/htmldoc/courierldapaliasd.html Xshare/courier/htmldoc/courierpop3login.html Xshare/courier/htmldoc/couriertls.html Xshare/courier/htmldoc/dot-courier.html Xshare/courier/htmldoc/deliverquota.html Xshare/courier/htmldoc/esmtpd.html Xshare/courier/htmldoc/maildirmake.html Xshare/courier/htmldoc/mkesmtpdcert.html Xshare/courier/htmldoc/mkimapdcert.html Xshare/courier/htmldoc/couriermlm.html Xshare/courier/htmldoc/testmxlookup.html Xshare/courier/htmldoc/maildirquota.html Xshare/courier/htmldoc/makeuserdb.html Xshare/courier/htmldoc/userdb.html Xshare/courier/htmldoc/localmailfilter.html Xshare/courier/htmldoc/status.html Xshare/courier/htmldoc/makehosteddomains.html Xshare/courier/htmldoc/makeacceptmailfor.html Xshare/courier/htmldoc/makealiases.html Xshare/courier/htmldoc/makesmtpaccess.html Xshare/courier/htmldoc/pop3d.html Xshare/courier/htmldoc/preline.html Xshare/courier/htmldoc/submit.html Xshare/courier/htmldoc/cancelmsg.html Xshare/courier/htmldoc/couriertcpd.html Xshare/courier/htmldoc/makepercentrelay.html Xshare/courier/htmldoc/userdbpw.html Xshare/courier/htmldoc/imapd.html Xshare/courier/htmldoc/maildrop.README.html Xshare/courier/htmldoc/maildropex.html Xshare/courier/htmldoc/maildroptips.html Xshare/courier/htmldoc/reformime.html Xshare/courier/htmldoc/dotlock.html Xshare/courier/htmldoc/maildropfilter.html Xshare/courier/htmldoc/makedat.html Xshare/courier/htmldoc/maildrop.html Xshare/courier/htmldoc/maildropgdbm.html Xshare/courier/htmldoc/reformail.html Xshare/courier/htmldoc/makemime.html Xshare/courier/htmldoc/courieruucp.html Xshare/courier/imapd Xshare/courier/imapd-ssl Xshare/courier/makedat X@owner daemon X@group daemon Xbin/preline Xbin/cancelmsg Xbin/mailq Xbin/maildirmake Xbin/imapd Xbin/dotlock Xbin/dotforward Xbin/makemime Xbin/reformail Xbin/reformime Xbin/deliverquota Xbin/couriermlm Xbin/testmxlookup Xetc/courier/module.uucp Xetc/courier/module.local Xetc/courier/authmodulelist Xetc/courier/esmtpd.cnf Xetc/courier/esmtpd.dist Xetc/courier/esmtpd-msa.dist Xetc/courier/esmtp.authpam Xetc/courier/module.esmtp Xetc/courier/esmtpauthclient Xetc/courier/dsndelayed.txt Xetc/courier/dsndelivered.txt Xetc/courier/dsnfailed.txt Xetc/courier/dsnrelayed.txt Xetc/courier/dsnfooter.txt Xetc/courier/dsnsubjectnotice.txt Xetc/courier/aliases/system Xetc/courier/dsnsubjectwarn.txt Xetc/courier/dsnheader.txt Xetc/courier/module.dsn Xetc/courier/pop3d.authpam Xetc/courier/imapd.authpam Xetc/courier/webmail.authpam Xetc/courier/imapd.cnf Xetc/courier/pop3d.cnf Xetc/courier/courierd.dist Xetc/courier/imapd.dist Xetc/courier/imapd-ssl.dist Xetc/courier/pop3d.dist Xetc/courier/pop3d-ssl.dist Xetc/courier/quotawarnmsg.example Xetc/courier/smtpaccess/default Xetc/courier/maildrop Xetc/courier/enablefiltering Xlibexec/courier/modules/uucp/courieruucp Xlibexec/courier/modules/local/courierlocal Xlibexec/courier/modules/local/courierdeliver Xlibexec/courier/modules/esmtp/courieresmtp Xlibexec/courier/modules/esmtp/courieresmtpd Xlibexec/courier/modules/esmtp/addcr Xlibexec/courier/modules/esmtp/authend Xlibexec/courier/modules/dsn/courierdsn Xlibexec/courier/courierpop3login Xlibexec/courier/aliasexp Xlibexec/courier/aliascombine Xlibexec/courier/aliascreate Xlibexec/courier/submit Xlibexec/courier/makedatprog Xlibexec/courier/submitmkdir Xlibexec/courier/courierd Xlibexec/courier/courierpop3d Xsbin/courier Xsbin/showconfig Xsbin/showmodules Xsbin/couriertcpd Xsbin/userdbpw Xsbin/logger Xshare/courier/sqwebmail/images/folder.gif Xshare/courier/sqwebmail/images/folder2.gif Xshare/courier/sqwebmail/images/folders.gif Xshare/courier/sqwebmail/images/forward.gif Xshare/courier/sqwebmail/images/forwardatt.gif Xshare/courier/sqwebmail/images/fullheaders.gif Xshare/courier/sqwebmail/images/left.gif Xshare/courier/sqwebmail/images/left2.gif Xshare/courier/sqwebmail/images/print.gif Xshare/courier/sqwebmail/images/reply.gif Xshare/courier/sqwebmail/images/replyall.gif Xshare/courier/sqwebmail/images/replylist.gif Xshare/courier/sqwebmail/images/right.gif Xshare/courier/sqwebmail/images/right2.gif Xshare/courier/sqwebmail/images/trash2.gif Xshare/courier/makeuucpneighbors Xshare/courier/esmtpd Xshare/courier/makesmtpaccess Xshare/courier/makeacceptmailfor Xshare/courier/makepercentrelay Xshare/courier/mkesmtpdcert Xshare/courier/courierctl.start Xshare/courier/makealiases Xshare/courier/makehosteddomains Xshare/courier/makeuserdb Xshare/courier/pop3d Xshare/courier/pop3d-ssl Xshare/courier/userdb Xshare/courier/pw2userdb Xshare/courier/vchkpw2userdb Xshare/courier/mkimapdcert Xshare/courier/mkpop3dcert Xshare/courier/couriermlm/adminrequest.tmpl Xshare/courier/couriermlm/confsubj.tmpl Xshare/courier/couriermlm/digestsubj.tmpl Xshare/courier/couriermlm/fetch.tmpl Xshare/courier/couriermlm/fetchsubj.tmpl Xshare/courier/couriermlm/help.tmpl Xshare/courier/couriermlm/idxsubject.tmpl Xshare/courier/couriermlm/idxheaderhtml.tmpl Xshare/courier/couriermlm/idxheader2html.tmpl Xshare/courier/couriermlm/idxheadertxt.tmpl Xshare/courier/couriermlm/modrejbody.tmpl Xshare/courier/couriermlm/modreject.tmpl Xshare/courier/couriermlm/modrejheader.tmpl Xshare/courier/couriermlm/modsubject.tmpl Xshare/courier/couriermlm/modtext.tmpl Xshare/courier/couriermlm/modtext2.tmpl Xshare/courier/couriermlm/sub.tmpl Xshare/courier/couriermlm/sub2.tmpl Xshare/courier/couriermlm/sub3.tmpl Xshare/courier/couriermlm/sub4.tmpl Xshare/courier/couriermlm/sub5.tmpl Xshare/courier/couriermlm/subreportfooter.tmpl Xshare/courier/couriermlm/unsub.tmpl Xshare/courier/couriermlm/unsub2.tmpl Xshare/courier/couriermlm/unsub3.tmpl Xshare/courier/couriermlm/warn1headers.tmpl Xshare/courier/couriermlm/warn1text.tmpl Xshare/courier/couriermlm/warn1text2.tmpl Xshare/courier/couriermlm/warn2msg.tmpl X@exec mkdir -p %D/etc/courier; chown bin.bin %D/etc/courier X@exec mkdir -p %D/etc/courier/aliasdir; chown daemon.daemon %D/etc/courier/aliasdir X@exec mkdir -p %D/etc/courier/aliases; chown daemon.daemon %D/etc/courier/aliases X@exec mkdir -p %D/etc/courier/esmtpacceptmailfor.dir; chown root.wheel %D/etc/courier/esmtpacceptmailfor.dir X@exec mkdir -p %D/etc/courier/esmtppercentrelay.dir; chown root.wheel %D/etc/courier/esmtppercentrelay.dir X@exec mkdir -p %D/etc/courier/filters; chown daemon.daemon %D/etc/courier/filters X@exec mkdir -p %D/etc/courier/filters/active; chown daemon.daemon %D/etc/courier/filters/active X@exec mkdir -p %D/etc/courier/smtpaccess; chown daemon.daemon %D/etc/courier/smtpaccess X@exec mkdir -p %D/libexec/authlib; chown bin.bin %D/libexec/authlib X@exec mkdir -p %D/libexec/courier; chown bin.bin %D/libexec/courier X@exec mkdir -p %D/libexec/courier/modules; chown bin.bin %D/libexec/courier/modules X@exec mkdir -p %D/libexec/courier/modules/dsn; chown daemon.daemon %D/libexec/courier/modules/dsn X@exec mkdir -p %D/libexec/courier/modules/esmtp; chown daemon.daemon %D/libexec/courier/modules/esmtp X@exec mkdir -p %D/libexec/courier/modules/local; chown daemon.daemon %D/libexec/courier/modules/local X@exec mkdir -p %D/libexec/courier/modules/uucp; chown daemon.daemon %D/libexec/courier/modules/uucp X@exec mkdir -p %D/libexec/courier/webmail; chown root.bin %D/libexec/courier/webmail X@exec mkdir -p %D/libexec/filters; chown root.wheel %D/libexec/filters X@exec mkdir -p %D/share/courier; chown bin.bin %D/share/courier X@exec mkdir -p %D/share/courier/couriermlm; chown daemon.daemon %D/share/courier/couriermlm X@exec mkdir -p %D/share/courier/htmldoc; chown root.wheel %D/share/courier/htmldoc X@exec mkdir -p %D/share/courier/sqwebmail; chown root.wheel %D/share/courier/sqwebmail X@exec mkdir -p %D/share/courier/sqwebmail/html; chown root.wheel %D/share/courier/sqwebmail/html X@exec mkdir -p %D/share/courier/sqwebmail/html/en-us; chown root.wheel %D/share/courier/sqwebmail/html/en-us X@exec mkdir -p %D/share/courier/sqwebmail/images; chown daemon.daemon %D/share/courier/sqwebmail/images X@exec cd %D/bin && ln -s %D/libexec/courier/modules/esmtp/addcr addcr X@unexec rm %D/bin/addcr X@exec cd %D/bin && ln -s %D/share/courier/makedat makedat X@unexec rm %D/bin/makedat X@exec cd %D/bin && ln -s sendmail rmail X@unexec rm %D/bin/rmail X@exec cd %D/sbin && ln -s %D/share/courier/filterctl filterctl X@unexec rm %D/sbin/filterctl X@exec cd %D/sbin && ln -s %D/share/courier/makeuucpneighbors makeuucpneighbors X@unexec rm %D/sbin/makeuucpneighbors X@exec cd %D/sbin && ln -s %D/libexec/courier/modules/esmtp/courieresmtpd courieresmtpd X@unexec rm %D/sbin/courieresmtpd X@exec cd %D/sbin && ln -s %D/share/courier/esmtpd esmtpd X@unexec rm %D/sbin/esmtpd X@exec cd %D/sbin && ln -s %D/share/courier/makesmtpaccess makesmtpaccess X@unexec rm %D/sbin/makesmtpaccess X@exec cd %D/sbin && ln -s %D/share/courier/makeacceptmailfor makeacceptmailfor X@unexec rm %D/sbin/makeacceptmailfor X@exec cd %D/sbin && ln -s %D/share/courier/makepercentrelay makepercentrelay X@unexec rm %D/sbin/makepercentrelay X@exec cd %D/sbin && ln -s %D/share/courier/mkesmtpdcert mkesmtpdcert X@unexec rm %D/sbin/mkesmtpdcert X@exec cd %D/sbin && ln -s esmtpd esmtpd-msa X@unexec rm %D/sbin/esmtpd-msa X@exec cd %D/sbin && ln -s makesmtpaccess makesmtpaccess-msa X@unexec rm %D/sbin/makesmtpaccess-msa X@exec cd %D/sbin && ln -s %D/share/courier/imapd imapd X@unexec rm %D/sbin/imapd X@exec cd %D/sbin && ln -s %D/share/courier/imapd-ssl imapd-ssl X@unexec rm %D/sbin/imapd-ssl X@exec cd %D/sbin && ln -s %D/share/courier/mkimapdcert mkimapdcert X@unexec rm %D/sbin/mkimapdcert X@exec cd %D/sbin && ln -s %D/share/courier/mkpop3dcert mkpop3dcert X@unexec rm %D/sbin/mkpop3dcert X@exec cd %D/sbin && ln -s %D/share/courier/makealiases makealiases X@unexec rm %D/sbin/makealiases X@exec cd %D/sbin && ln -s %D/share/courier/pop3d pop3d X@unexec rm %D/sbin/pop3d X@exec cd %D/sbin && ln -s %D/share/courier/makehosteddomains makehosteddomains X@unexec rm %D/sbin/makehosteddomains X@exec cd %D/sbin && ln -s %D/share/courier/makeuserdb makeuserdb X@unexec rm %D/sbin/makeuserdb X@exec cd %D/sbin && ln -s %D/share/courier/pop3d-ssl pop3d-ssl X@unexec rm %D/sbin/pop3d-ssl X@exec cd %D/sbin && ln -s %D/share/courier/userdb userdb X@unexec rm %D/sbin/userdb X@exec cd %D/sbin && ln -s %D/share/courier/pw2userdb pw2userdb X@unexec rm %D/sbin/pw2userdb X@exec cd %D/sbin && ln -s %D/share/courier/vchkpw2userdb vchkpw2userdb X@unexec rm %D/sbin/vchkpw2userdb X@exec cd %D/share/courier/sqwebmail/html && ln -s en-us en X@unexec rm %D/share/courier/sqwebmail/html/en X@dirrm etc/courier/aliasdir X@dirrm etc/courier/aliases X@dirrm etc/courier/esmtpacceptmailfor.dir X@dirrm etc/courier/esmtppercentrelay.dir X@dirrm etc/courier/filters/active X@dirrm etc/courier/filters X@dirrm etc/courier/smtpaccess X@dirrm etc/courier X@dirrm libexec/authlib X@dirrm libexec/courier/modules/dsn X@dirrm libexec/courier/modules/esmtp X@dirrm libexec/courier/modules/local X@dirrm libexec/courier/modules/uucp X@dirrm libexec/courier/modules X@dirrm libexec/courier/webmail X@dirrm libexec/courier X@dirrm libexec/filters X@dirrm share/courier/couriermlm X@dirrm share/courier/htmldoc X@dirrm share/courier/sqwebmail/html/en-us X@dirrm share/courier/sqwebmail/html X@dirrm share/courier/sqwebmail/images X@dirrm share/courier/sqwebmail X@dirrm share/courier X@cwd / X@exec mkdir -p /var/run/courier; chown bin.bin /var/run/courier X@exec mkdir -p /var/run/courier/allfilters; chown daemon.daemon /var/run/courier/allfilters X@exec mkdir -p /var/run/courier/filters; chown daemon.daemon /var/run/courier/filters X@exec mkdir -p /var/run/courier/msgq; chown daemon.daemon /var/run/courier/msgq X@exec mkdir -p /var/run/courier/msgs; chown daemon.daemon /var/run/courier/msgs X@exec mkdir -p /var/run/courier/tmp; chown daemon.daemon /var/run/courier/tmp X@exec mkdir -p /var/run/courier/tmp/broken; chown root.wheel /var/run/courier/tmp/broken X@dirrm /var/run/courier/allfilters X@dirrm /var/run/courier/filters X@dirrm /var/run/courier/msgq X@dirrm /var/run/courier/msgs X@dirrm /var/run/courier/tmp/broken X@dirrm /var/run/courier/tmp X@dirrm /var/run/courier END-of-courier/pkg-plist echo x - courier/pkg-descr sed 's/^X//' >courier/pkg-descr << 'END-of-courier/pkg-descr' XThe Courier mail transfer agent (MTA) is an integrated mail server suite Xthat provides ESMTP, IMAP, POP3, webmail, and mailing list services within a Xsingle, consistent, framework. It grew out of several related projects, that Xmerged together (more on that later). Courier implements SMTP extensions for Xmailing list management and spam filtering. Courier can function as an Xintermediate mail relay, relaying mail between an internal LAN and the XInternet, or perform final delivery to mailboxes. Courier uses maildirs as its Xnative mail storage format (which is NFS-safe) but can also deliver mail to Xlegacy mailbox files as well. X Xwww: http://sourceforge.net/project/?group_id=5404 X X- Thinker Xthinker.bbs@bbs.yzu.edu.tw END-of-courier/pkg-descr echo x - courier/pkg-comment sed 's/^X//' >courier/pkg-comment << 'END-of-courier/pkg-comment' XA highly integrated mail server suiteEND-of-courier/pkg-comment echo x - courier/distinfo sed 's/^X//' >courier/distinfo << 'END-of-courier/distinfo' XMD5 (courier-0.31.0.tar.gz) = 8f95d2f300a5506b522f3068a4a9ea0b END-of-courier/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 Sun Feb 4 14:20:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9D46737B491 for ; Sun, 4 Feb 2001 14:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14MK2q77762; Sun, 4 Feb 2001 14:20:02 -0800 (PST) (envelope-from gnats) Date: Sun, 4 Feb 2001 14:20:02 -0800 (PST) Message-Id: <200102042220.f14MK2q77762@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Steven Enderle Subject: Re: ports/24012: New port: wmfsm 0.31 - a windowmaker dockapp for displaying a graphical filesystem usage Reply-To: Steven Enderle Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24012; it has been noted by GNATS. From: Steven Enderle To: freebsd-gnats-submit@FreeBSD.org, panic@subphase.de Cc: Subject: Re: ports/24012: New port: wmfsm 0.31 - a windowmaker dockapp for displaying a graphical filesystem usage Date: Sun, 04 Feb 2001 23:15:49 +0100 When will this port be integrated? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 14:20:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E77DF37B503 for ; Sun, 4 Feb 2001 14:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14MK2T77771; Sun, 4 Feb 2001 14:20:02 -0800 (PST) (envelope-from gnats) Received: from babylon.merseine.nu (c418236-a.clmba1.mo.home.com [24.12.203.134]) by hub.freebsd.org (Postfix) with ESMTP id CCF2A37B491 for ; Sun, 4 Feb 2001 14:18:14 -0800 (PST) Received: (from ishmael@localhost) by babylon.merseine.nu (8.11.1/8.11.1) id f14MKRD88151; Sun, 4 Feb 2001 16:20:27 -0600 (CST) (envelope-from ishmael) Message-Id: <200102042220.f14MKRD88151@babylon.merseine.nu> Date: Sun, 4 Feb 2001 16:20:27 -0600 (CST) From: ishmael27@home.com Reply-To: ishmael27@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24853: Change devel/libslang to not directly link libc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24853 >Category: ports >Synopsis: Change devel/libslang to not directly link libc >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 Feb 04 14:20:02 PST 2001 >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: Port devel/libslang declares -lc on the link line. This is wrong; if any program would link against libslang and libc_r (using -pthread) the compiler spits out lots of errors. >How-To-Repeat: Write a short program that uses pthreads and libslang. Link it with -lslang -pthread. Notice the errors. >Fix: --- files/patch-aa.orig Thu Jan 18 12:13:39 2001 +++ files/patch-aa Sun Feb 4 16:11:09 2001 @@ -1,5 +1,5 @@ ---- configure.orig Sun Aug 20 11:20:18 2000 -+++ configure Sat Jan 6 09:57:40 2001 +--- configure.orig Sat Aug 19 21:20:18 2000 ++++ configure Sun Feb 4 16:11:00 2001 @@ -1753,14 +1753,13 @@ fi @@ -26,6 +26,15 @@ cat >> confdefs.h <<\EOF #define HAVE_DLFCN_H 1 EOF +@@ -1893,7 +1892,7 @@ + ELF_CFLAGS="\$(CFLAGS) -fPIC" + ELF_LINK="\$(CC) -shared" + ELF_LINK_CMD="\$(ELF_LINK)" +- ELF_DEP_LIBS="\$(DL_LIB) -lm -lc" ++ ELF_DEP_LIBS="\$(DL_LIB) -lm" + esac + + @@ -1906,6 +1905,19 @@ IEEE_CFLAGS="-ieee_with_no_inexact" 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 Sun Feb 4 14:47: 0 2001 Delivered-To: freebsd-ports@freebsd.org Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.208.78.105]) by hub.freebsd.org (Postfix) with ESMTP id 62A2837B401 for ; Sun, 4 Feb 2001 14:46:44 -0800 (PST) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.11.2/8.11.2) id f14Mmir16819 for freebsd-ports@freebsd.org; Sun, 4 Feb 2001 14:48:44 -0800 (PST) (envelope-from sgk) From: Steve Kargl Message-Id: <200102042248.f14Mmir16819@troutmask.apl.washington.edu> Subject: port of some linux software To: freebsd-ports@freebsd.org Date: Sun, 4 Feb 2001 14:48:44 -0800 (PST) X-Mailer: ELM [version 2.4ME+ PL61 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I've manage to get the F compiler from Imagine1, Inc. for linux to rum under linux compatibility. I throw togather a port, but this software has some hardcoded paths. It expects to find its image in /usr/local/bin, its libraries in /usr/local/lib/F, and gcc should be in /usr/bin (note this is Linux's gcc). I had to create /compat/linux/usr/local/{bin,lib/F} to get things working. This doesn't appear in the normal directory hierarchy, so how should I install this. -- Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 14:50:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 887FB37B401; Sun, 4 Feb 2001 14:50:04 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14Mo4w80567; Sun, 4 Feb 2001 14:50:04 -0800 (PST) (envelope-from sobomax) Date: Sun, 4 Feb 2001 14:50:04 -0800 (PST) From: Message-Id: <200102042250.f14Mo4w80567@freefall.freebsd.org> To: panic@subphase.de, sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24012: New port: wmfsm 0.31 - a windowmaker dockapp for displaying a graphical filesystem usage Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: wmfsm 0.31 - a windowmaker dockapp for displaying a graphical filesystem usage State-Changed-From-To: open->closed State-Changed-By: sobomax State-Changed-When: Sun Feb 4 14:45:21 PST 2001 State-Changed-Why: Committed with several improvements (I made it PREFIX and X11BASE-safe). You can review differencies between original and committed versions to see exactly what was changed and learn for the future. Nevertheless, thank you for submission! http://www.freebsd.org/cgi/query-pr.cgi?pr=24012 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 15: 0:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8231E37B4EC for ; Sun, 4 Feb 2001 15:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14N02b81581; Sun, 4 Feb 2001 15:00:02 -0800 (PST) (envelope-from gnats) Received: from C456086-A.bllvu1.wa.home.com (c456086-a.bllvu1.wa.home.com [65.0.111.16]) by hub.freebsd.org (Postfix) with ESMTP id A64D037B401 for ; Sun, 4 Feb 2001 14:56:01 -0800 (PST) Received: (from kargl@localhost) by C456086-A.bllvu1.wa.home.com (8.11.1/8.11.2) id f14EtHB01702; Sun, 4 Feb 2001 14:55:17 GMT (envelope-from kargl) Message-Id: <200102041455.f14EtHB01702@C456086-A.bllvu1.wa.home.com> Date: Sun, 4 Feb 2001 14:55:17 GMT From: kargl@apl.washington.edu Reply-To: kargl@apl.washington.edu To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/24855: New port of FSF GMP library Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24855 >Category: ports >Synopsis: New port of FSF GMP library >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 Feb 04 15:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Steven G. Kargl >Release: FreeBSD 5.0-CURRENT i386 >Organization: apl/uw >Environment: System: FreeBSD C456086-A.bllvu1.wa.home.com 5.0-CURRENT FreeBSD 5.0-CURRENT #4: Sat Feb 3 20:53:47 GMT 2001 kargl@C456086-A.bllvu1.wa.home.com:/usr/obj/usr/src/sys/C456086-A i386 >Description: GNU MP is a library for arbitrary precision arithmetic. NOTE: This is version 3.1.1. The version in the base tree is 2.something and really, really, really out-of-date. Version 3.1.1 has hand coded asm for numerous processors and the configure will try to identify the exact features of the processors. >How-To-Repeat: >Fix: begin 644 gmp.tar.gz M'XL(`/)K?3H``^U846_;-A#.J_4K#LA#6R!1)%FREF`>YJ9N:B"Q`\MI'@-* MHB3"E"B05`SWU^^H)&ZQ81?P31O@TSZ)0F$N!("J&_)[>I*.6',.BP*#'^ M-V1-"\;IOG3XGC<*PS^-O^^-`A/_81R,HC@(L<>/_-$1>/LRZ%O\S^-_#'.Z M@59(K2`3G--,,]'`RY&`0LB+`1X2YQ@^$$TADQ2;_&(P\'Z"1:9%2B4$GN>A MP'TE:AP8J'+]JY:BTS51:Y>TW-T05;&FU*)Q:=XYQXYSNUBNYI.;Z;A?W#Q] MGBZ3V6(^'@Q=W_6=R\EJ>K58SJ;)>%`374%.'REW;B;):KI\2&8K,U#H]N+L M#+_=LNE<(Z'+]N$9J$#HKFC89.42"=%IEHBA/84NT" MK"H**I.LU=!0FJN=``2N'X*04+&RHA(7V50LJX`ILQ1Y)(R3%+>1-:!QC8^2 MTO?)AS_L-ZJ8M"V1M-%\>X*K&&%T`VK"&HT?*M^@4DG1.K0:"*B&M*H2&@HI MZEY\9]+EYP0T*G*-4W?)]&%RMUI<+N8?QX,M58[S:9(\F,?9U=UR^M0WFR>K MR?5U\I!\NIZ]?Y9S69/Q+J?PV]_\0^'OW_P1$2R71AHOB@&)E0W,'J2HM MJ50G8(9$0S@T79WV/:3)H>#B:4HK4/1E#+GO3$-%C`72<&=%-8C"*;JFY\;/ MDPW%W76A^",U\K3L.(;/:)8%R2@N]M4C/-.]8:"%DZ*X@H(H;=I6*,60EY]` M*K"T,`ZKFG#^Y%9C"#ZJK+J2[GI>JH"6&D]1(*L85B0YI-MG4EYTG&^$-)-5 M;VY*%,N^V370V]:HW$U`:QS"2]%+H)\;;"%#FF^6VJ)JS6KV!740I6B=8EO!7IC$C>&@#58(SA]Y`5$N@I"B&<:%UBSN. M;ICH]2Z]98W2E.1FDF)URUG&]-:4-I33DC09?>G3J)Q/YPUD27_?K'UH\^\Q5>8]W_.%%[+0NQ+Q^O\K___!TF?%T1>S_^C M86C?_X?`S8<(WN(A..W_=7%Q+]SRRSL80YP%4>$'YWF!7+S(1T4_'Y[Z]Q186%A86%A86%A86%A86%A;_"OP&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 Feb 4 15: 7:37 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (smtp.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id ABC0437B491 for ; Sun, 4 Feb 2001 15:07:17 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f14N7C825428; Mon, 5 Feb 2001 01:07:13 +0200 Received: (from max@localhost) by vic.sabbo.net (8.11.2/8.9.3) id f14N7Ct26250; Mon, 5 Feb 2001 01:07:12 +0200 (EET) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200102042307.f14N7Ct26250@vic.sabbo.net> Subject: Re: ports/24012: New port: wmfsm 0.31 - a windowmaker dockapp for To: panic@subphase.de Date: Mon, 5 Feb 2001 01:07:12 +0200 (EET) Cc: freebsd-ports@FreeBSD.org In-Reply-To: <200102042220.f14MK2q77762@freefall.freebsd.org> from "Steven Enderle" at Feb 04, 2001 02:20:02 PM X-Mailer: ELM [version 2.5 PL3] 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 > > The following reply was made to PR ports/24012; it has been noted by GNATS. > > From: Steven Enderle > To: freebsd-gnats-submit@FreeBSD.org, panic@subphase.de > Cc: > Subject: Re: ports/24012: New port: wmfsm 0.31 - a windowmaker dockapp for > displaying a graphical filesystem usage > Date: Sun, 04 Feb 2001 23:15:49 +0100 > > When will this port be integrated? Done. Next time please be more patient - our forces are limited and it certainly would not help if each PR submitter would periodically abuse freebsd-ports mailing list with requists like this. Just remember that as long as your port in the GNATS it will not be lost and eventually someone add it into tree. Thanks! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 15:10:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A9D4837B491 for ; Sun, 4 Feb 2001 15:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14NA1l84378; Sun, 4 Feb 2001 15:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A38DB37B491 for ; Sun, 4 Feb 2001 15:04:04 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f14N44681896; Sun, 4 Feb 2001 15:04:04 -0800 (PST) (envelope-from nobody) Message-Id: <200102042304.f14N44681896@freefall.freebsd.org> Date: Sun, 4 Feb 2001 15:04:04 -0800 (PST) From: jeremiah@sherline.com To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24856: New Port: Preconfigured bashrc for color prompt and dir listings Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24856 >Category: ports >Synopsis: New Port: Preconfigured bashrc for color prompt and dir listings >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 Feb 04 15:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jeremiah Gowdy >Release: 4.2-STABLE >Organization: Sherline Products >Environment: >Description: This installs bash scripts for color prompts and directory listings. It's good for people who have many different shells open at once, and for admins to 'know' if they are root without thinking about it, root prompts are red, user prompts are green. I use this on every server, as do 90% of my friends who are BSD admins, so I decided to share it. # 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: # # bashprompts # bashprompts/Makefile # bashprompts/pkg-comment # bashprompts/pkg-descr # bashprompts/pkg-plist # bashprompts/distinfo # echo c - bashprompts mkdir -p bashprompts > /dev/null 2>&1 echo x - bashprompts/Makefile sed 's/^X//' >bashprompts/Makefile << 'END-of-bashprompts/Makefile' X# New ports collection makefile for: bashprompts X# Date created: 4 Feb 2001 X# Whom: jgowdy X# X# $FreeBSD$ X# X XPORTNAME= bashprompts XPORTVERSION= 1.0 XCATEGORIES= misc XMASTER_SITES= http://data.irev.net/ X XMAINTAINER= jeremiah@sherline.com X XBUILD_DEPENDS= bash:${PORTSDIR}/shells/bash2\ X gnuls:${PORTSDIR}/misc/gnuls X Xdeinstall: X X.include END-of-bashprompts/Makefile echo x - bashprompts/pkg-comment sed 's/^X//' >bashprompts/pkg-comment << 'END-of-bashprompts/pkg-comment' XColor prompts, directory listings, and aliases for the bash shell END-of-bashprompts/pkg-comment echo x - bashprompts/pkg-descr sed 's/^X//' >bashprompts/pkg-descr << 'END-of-bashprompts/pkg-descr' XBashPrompts installs a new .bashrc and .bash_profile, which includes a color Xprompt which is red for root, green for standard users. The prompt is in the Xformat: X X[username@hostname]:/current/dir/# X XThis is useful for administrators who work on many different remote servers Xat the same time. It also keeps the administrator aware of whether or not he Xor she is root, avoiding accidentally running certain commands as root. X XBashPrompts also installs gnuls, a colored ls program, and aliases the ls Xcommand to the gnuls command. X XBashPrompts will install bash-2.04 if it is not already installed, but it will Xnot change any users' shell to bash. Users must chsh their shell to bash. X XBashPrompts installs the .bashrc and .bash_profile files into /usr/share/skel Xso new users will have BashPrompts also. X XOverall BashPrompts makes a colorful and friendly shell, useful to Xadministrators and newbies. END-of-bashprompts/pkg-descr echo x - bashprompts/pkg-plist sed 's/^X//' >bashprompts/pkg-plist << 'END-of-bashprompts/pkg-plist' END-of-bashprompts/pkg-plist echo x - bashprompts/distinfo sed 's/^X//' >bashprompts/distinfo << 'END-of-bashprompts/distinfo' XMD5 (bashprompts-1.0.tar.gz) = 47195cc0b562adcfe323ce14936ff6c8 END-of-bashprompts/distinfo exit >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 Sun Feb 4 17: 0:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1200737B491 for ; Sun, 4 Feb 2001 17:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15102k94137; Sun, 4 Feb 2001 17:00:02 -0800 (PST) (envelope-from gnats) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by hub.freebsd.org (Postfix) with ESMTP id 1D18D37B401 for ; Sun, 4 Feb 2001 16:56:51 -0800 (PST) Received: (from patrick@localhost) by fledge.watson.org (8.11.1/8.11.1) id f150uoa76042; Sun, 4 Feb 2001 19:56:50 -0500 (EST) (envelope-from patrick) Message-Id: <200102050056.f150uoa76042@fledge.watson.org> Date: Sun, 4 Feb 2001 19:56:50 -0500 (EST) From: patrick@watson.org Reply-To: patrick@watson.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24858: New port for ocamlweb 0.9 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24858 >Category: ports >Synopsis: new port for ocamlweb 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: Sun Feb 04 17:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Patrick M Doane >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: ocamlweb is a literate programming tool for Objective Caml >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: # # ocamlweb # ocamlweb/pkg-comment # ocamlweb/Makefile # ocamlweb/distinfo # ocamlweb/pkg-descr # ocamlweb/pkg-plist # echo c - ocamlweb mkdir -p ocamlweb > /dev/null 2>&1 echo x - ocamlweb/pkg-comment sed 's/^X//' >ocamlweb/pkg-comment << 'END-of-ocamlweb/pkg-comment' Xocamlweb is a literate programming tool for Objective Caml. END-of-ocamlweb/pkg-comment echo x - ocamlweb/Makefile sed 's/^X//' >ocamlweb/Makefile << 'END-of-ocamlweb/Makefile' X# New ports collection makefile for: ocamlweb X# Date created: 4 February 2001 X# Whom: Patrick Doane X# X# $FreeBSD$ X# X XPORTNAME= ocamlweb XPORTVERSION= 0.9 XCATEGORIES= devel XMASTER_SITES= http://www.lri.fr/~filliatr/ftp/ocamlweb/ XDISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DOCFILES} XEXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} X XMAINTAINER= patrick@watson.org X XGNU_CONFIGURE= yes X X.if !defined(NOPORTDOCS) XDOCFILES= ${PORTNAME}-man.ps.gz X.endif X Xpost-install: X.if !defined{NOPORTDOCS} X ${MKDIR} ${PREFIX}/share/doc/${PORTNAME} X ${INSTALL_MAN} ${DISTDIR}/${PORTNAME}-man.ps.gz ${PREFIX}/share/doc/${PORTNAME} X.endif X X.include END-of-ocamlweb/Makefile echo x - ocamlweb/distinfo sed 's/^X//' >ocamlweb/distinfo << 'END-of-ocamlweb/distinfo' XMD5 (ocamlweb-0.9.tar.gz) = 1c6c0b307b6cf5e840c7255cdb6bd322 XMD5 (ocamlweb-man.ps.gz) = bbdffb3bbcb0a1a7f756b3fff3ba99e4 END-of-ocamlweb/distinfo echo x - ocamlweb/pkg-descr sed 's/^X//' >ocamlweb/pkg-descr << 'END-of-ocamlweb/pkg-descr' XLiterate programming has been introduced by D. E. Knuth in 1984. The Xmain idea is to put the code and its documentation in the same file Xand to produce from it a document which is readable by a human, and Xnot only by a machine. Although ocamlweb borrows a lot of ideas from XKnuth's original tool (called WEB), there are big differences between Xthem. First, WEB allows you to present the pieces of your code in any Xorder, and this is quite useful when using poorly structured Xlanguages, like Pascal or C. But Objective Caml is already highly Xstructured, and this is no more useful. Moreover, WEB requires the use Xof a tool to produce the code from the WEB file, which greatly Xcomplicates the use of your favorite source-based tools (dependencies Xgenerator, debugger, emacs mode, etc.). When using ocamlweb, the Xdocumentation is inserted in the code as comments (in the Caml sense), Xand your code is not linked to the existence of ocamlweb in any way. X XCurrently, the task of ocamlweb may be seen as: X X 1. making a nice document with the code and its documentation; X 2. generating a global index of cross-references, where each identifier X is associated to the lists of sections where it is defined or used. X XWWW: http://www.lri.fr/~filliatr/ocamlweb END-of-ocamlweb/pkg-descr echo x - ocamlweb/pkg-plist sed 's/^X//' >ocamlweb/pkg-plist << 'END-of-ocamlweb/pkg-plist' Xbin/ocamlweb Xshare/texmf/tex/latex/misc/ocamlweb.sty Xshare/doc/ocamlweb/ocamlweb-man.ps.gz X@dirrm share/doc/ocamlweb END-of-ocamlweb/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 Feb 4 17: 0:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0924737B503; Sun, 4 Feb 2001 17:00:24 -0800 (PST) Received: (from dougb@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1510NH94168; Sun, 4 Feb 2001 17:00:23 -0800 (PST) (envelope-from dougb) Date: Sun, 4 Feb 2001 17:00:23 -0800 (PST) From: Message-Id: <200102050100.f1510NH94168@freefall.freebsd.org> To: jeremiah@sherline.com, dougb@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24856: New Port: Preconfigured bashrc for color prompt and dir listings Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: Preconfigured bashrc for color prompt and dir listings State-Changed-From-To: open->closed State-Changed-By: dougb State-Changed-When: Sun Feb 4 16:55:49 PST 2001 State-Changed-Why: While we appreciate your contribution, there are a number of problems. 1) Your port is incomplete, and violates style guidelines. Please read the porter's handbook in detail for your next submission. 2) Your installation of the bash startup files for all users, including root is a bit over the top. 3) In the past we have suggested that people offering shell related items would be better served by writing an article for submission to the FAQ, Handbook, Daemon News, etc. I belive this submission falls squarely into that category. I hope that this does not dissuade you from further submissions. http://www.freebsd.org/cgi/query-pr.cgi?pr=24856 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 18:47:56 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECEC037B69C; Sun, 4 Feb 2001 18:47:38 -0800 (PST) Received: (from kuriyama@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f152lcL06853; Sun, 4 Feb 2001 18:47:38 -0800 (PST) (envelope-from kuriyama) Date: Sun, 4 Feb 2001 18:47:38 -0800 (PST) From: Message-Id: <200102050247.f152lcL06853@freefall.freebsd.org> To: dwcjr@inethouston.net, kuriyama@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24727: [MAINTAINER UPDATE] mail/postfix-current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE] mail/postfix-current State-Changed-From-To: open->closed State-Changed-By: kuriyama State-Changed-When: Sun Feb 4 18:47:05 PST 2001 State-Changed-Why: Committed (with one pkg-plist entry :-), thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=24727 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 19: 2:56 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dante.naver.co.id (unknown [202.155.86.83]) by hub.freebsd.org (Postfix) with ESMTP id 5019B37B491; Sun, 4 Feb 2001 19:02:36 -0800 (PST) Received: by dante.naver.co.id (Postfix, from userid 1000) id 5BE3853541; Mon, 5 Feb 2001 10:03:20 +0700 (JAVT) Date: Mon, 5 Feb 2001 10:03:19 +0700 From: John Indra To: freebsd-stable@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: - i810 is only supported on Linux/x86 - Message-ID: <20010205100318.A2762@office.naver.co.id> Mail-Followup-To: freebsd-stable@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG References: <20010201160303.A38766@sunbay.com> <200102030118.f131ICv95065@wattres.Watt.COM> <981207422.3a7c097e22b31@webmail.harmonic.co.il> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <981207422.3a7c097e22b31@webmail.harmonic.co.il>; from roman@xpert.com on Sat, Feb 03, 2001 at 03:37:02PM +0200 X-Mailer: Mutt 1.2.5i on FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Feb 03, 2001 at 03:37:02PM +0200, Roman Shterenzon wrote: >(BTW, have XFREE86_VERSION=4 in /etc/make.conf if you're using XF86 4.x) Can't find this entry in /etc/defaults/make.conf Should /etc/defaults/make.conf maintainer update things? BTW This is on -CURRENT... /john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 19:10:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1DE6937B684 for ; Sun, 4 Feb 2001 19:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f153A2n11037; Sun, 4 Feb 2001 19:10:02 -0800 (PST) (envelope-from gnats) Received: from cn.FreeBSD.org (cn.freebsd.org [202.103.100.254]) by hub.freebsd.org (Postfix) with ESMTP id 28B3637B69B for ; Sun, 4 Feb 2001 19:03:03 -0800 (PST) Received: (from phj@localhost) by cn.FreeBSD.org (8.9.3/8.9.2) id LAA46151; Mon, 5 Feb 2001 11:03:00 +0800 (CST) (envelope-from phj) Message-Id: <200102050303.LAA46151@cn.FreeBSD.org> Date: Mon, 5 Feb 2001 11:03:00 +0800 (CST) From: Peng HaiJie Reply-To: phj@cn.FreeBSD.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24861: update ports(chinese/chinput2) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24861 >Category: ports >Synopsis: update ports Makefile,pkg-xxx files. >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 04 19:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Peng HaiJie >Release: FreeBSD 5.0-CURRENT i386 >Organization: cn.FreeBSD.org >Environment: FreeBSD sea.transfar.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sat Jan 20 17:11:51 CST 2001 phj@sea.transfar.com:/usr/src/sys/compile/KERNEL.20000911 i386 >Description: Update ports(chinese/chinput2) into version 1.2.1 >How-To-Repeat: >Fix: diff -u /usr/ports/chinese/chinput2/Makefile chinput2/Makefile --- /usr/ports/chinese/chinput2/Makefile Mon Feb 5 10:27:20 2001 +++ chinput2/Makefile Mon Feb 5 10:46:48 2001 @@ -7,10 +7,10 @@ # PORTNAME= chinput2 -PORTVERSION= 1.0 +PORTVERSION= 1.2.1 CATEGORIES= chinese x11 MASTER_SITES= ftp://ftp.cn.freebsd.org/pub/ported/ -DISTNAME= zh-chinput2-1.0 +DISTNAME= zh-chinput2-1.2.1 MAINTAINER= phj@cn.FreeBSD.org diff -u /usr/ports/chinese/chinput2/distinfo chinput2/distinfo --- /usr/ports/chinese/chinput2/distinfo Fri Nov 10 13:29:44 2000 +++ chinput2/distinfo Mon Feb 5 10:59:42 2001 @@ -1 +1 @@ -MD5 (zh-chinput2-1.0.tar.gz) = 67fb0b9dfff49a1547cd6496dbbe32fc +MD5 (zh-chinput2-1.2.1.tar.gz) = cf2895f333e8273859ee5fcb2c4c829f diff -u /usr/ports/chinese/chinput2/pkg-comment chinput2/pkg-comment --- /usr/ports/chinese/chinput2/pkg-comment Sun Dec 3 00:31:57 2000 +++ chinput2/pkg-comment Mon Feb 5 10:46:48 2001 @@ -1 +1 @@ -Another Chinese GB2312 X11 input server +Another Chinese GB2312 and Big5 X11 input server diff -u /usr/ports/chinese/chinput2/pkg-descr chinput2/pkg-descr --- /usr/ports/chinese/chinput2/pkg-descr Sun Dec 3 00:31:57 2000 +++ chinput2/pkg-descr Mon Feb 5 10:46:48 2001 @@ -1,5 +1,5 @@ -Implementation of HanZi QuanPin(GB2312) input method. +Implementation of HanZi QuanPin(GB2312 and Big5 ) input method. -X11 Chinese(HanZi) GB2312 input server. +X11 Chinese(HanZi) GB2312 and Big5 input server. -- Peng HaiJie (phj@cn.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 Sun Feb 4 19:40:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9742137B6A0 for ; Sun, 4 Feb 2001 19:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f153e1e13514; Sun, 4 Feb 2001 19:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E559237B69E for ; Sun, 4 Feb 2001 19:30:26 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f153UQp12813; Sun, 4 Feb 2001 19:30:26 -0800 (PST) (envelope-from nobody) Message-Id: <200102050330.f153UQp12813@freefall.freebsd.org> Date: Sun, 4 Feb 2001 19:30:26 -0800 (PST) From: dan@spot.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24862: Port assumes a directory exists that doesn't neccessarily exist Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24862 >Category: ports >Synopsis: Port assumes a directory exists that doesn't neccessarily exist >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 Feb 04 19:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Daniel Hemmerich >Release: 4.2-STABLE >Organization: BSDpro.com >Environment: N/A >Description: ports/lang/slib's maintainer assumes a directory exists when he moves stuff around >How-To-Repeat: do a clean install of freebsd 4.2 and install slib from ports >Fix: Index: ports/lang/slib/Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/lang/slib/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- ports/lang/slib/Makefile 2000/10/20 04:50:54 1.10 +++ ports/lang/slib/Makefile 2001/02/05 03:30:47 @@ -24,6 +24,7 @@ post-install: # moved here from author's makefile + ${MKDIR} ${PREFIX}/lib/scheme48 ${TOUCH} -r ${WRKSRC}/slibcat ${PREFIX}/lib/scheme48/slibcat ${MKDIR} ${PREFIX}/share/slib ${INSTALL_DATA} ${WRKSRC}/*.scm ${PREFIX}/share/slib >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 Feb 4 20:10:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A68AE37B491 for ; Sun, 4 Feb 2001 20:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f154A1h17860; Sun, 4 Feb 2001 20:10:01 -0800 (PST) (envelope-from gnats) 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 6266D37B401 for ; Sun, 4 Feb 2001 20:06:24 -0800 (PST) Received: by c1030098-a.wtrlo1.ia.home.com (Postfix, from userid 1001) id 7A5AD14C5D; Sun, 4 Feb 2001 22:06:19 -0600 (CST) Message-Id: <20010205040619.7A5AD14C5D@c1030098-a.wtrlo1.ia.home.com> Date: Sun, 4 Feb 2001 22:06:19 -0600 (CST) From: mdharnois@home.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/24863: postfix-current version is now 20010204 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24863 >Category: ports >Synopsis: postfix-current version is now 20010204 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Sun Feb 04 20:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Michael Harnois >Release: FreeBSD 5.0-CURRENT i386 >Organization: very little >Environment: System: FreeBSD mharnois.workgroup.net 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sun Feb 4 19:14:03 CST 2001 mdharnois@mharnois.workgroup.net:/usr/src/sys/compile/MYKERNEL i386 >Description: Another version bump. Fortunately, this time the existing patches apply cleanly. >How-To-Repeat: >Fix: --- Makefile.orig Sun Feb 4 20:46:42 2001 +++ Makefile Sun Feb 4 22:03:42 2001 @@ -6,7 +6,7 @@ # PORTNAME= postfix -PORTVERSION= 20010202 +PORTVERSION= 20010204 CATEGORIES= mail MASTER_SITES= ftp://ftp.porcupine.org/mirrors/postfix-release/experimental/ \ ftp://ftp.aet.tu-cottbus.de/pub/postfix_tls/%SUBDIR%/ \ --- distinfo.orig Sun Feb 4 20:46:42 2001 +++ distinfo Sun Feb 4 22:04:54 2001 @@ -1,2 +1,2 @@ -MD5 (snapshot-20010202.tar.gz) = 2fc440422cc4de9478e0e6e130b11728 +MD5 (snapshot-20010202.tar.gz) = a034b7c13d306bc1ab208996be886e5b MD5 (pfixtls-0.6.35-snap20010202-0.9.6.tar.gz) = f465a4d5c87793b5889bea0c1b4833c2 >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 Feb 4 20:10:25 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F1E4237B4EC for ; Sun, 4 Feb 2001 20:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f154A1217869; Sun, 4 Feb 2001 20:10:01 -0800 (PST) (envelope-from gnats) Received: from electron.databits.net (electron.databits.net [207.29.204.16]) by hub.freebsd.org (Postfix) with ESMTP id 5CF5737B65D for ; Sun, 4 Feb 2001 20:08:37 -0800 (PST) Received: (from petef@localhost) by electron.databits.net (8.11.2/8.11.2) id f1547Tg18206; Sun, 4 Feb 2001 23:07:29 -0500 (EST) (envelope-from petef) Message-Id: <200102050407.f1547Tg18206@electron.databits.net> Date: Sun, 4 Feb 2001 23:07:29 -0500 (EST) From: petef@databits.net Reply-To: petef@databits.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24864: port update: mail/imap-uw Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24864 >Category: ports >Synopsis: port update: mail/imap-uw >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 04 20:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Pete Fritchman >Release: FreeBSD 5.0-CURRENT i386 >Organization: Databits Network Services, Inc. >Environment: latest ports tree >Description: Update the mail/imap-uw port to the latest version (2000c), update pkg-descr to include a WWW: tag, and change MAINTAINER to myself. >How-To-Repeat: cd /usr/ports/mail/imap-uw/ make fetch >Fix: WWW: http://hex.databits.net/~petef/diffs/imap-uw.diff Index: ports/mail/imap-uw/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/imap-uw/Makefile,v retrieving revision 1.50 diff -r1.50 Makefile 9,10c9 < PORTVERSION= 4.8 < PORTREVISION= 1 --- > PORTVERSION= 2000c 17c16 < DISTNAME= imap-2000a --- > DISTNAME= imap-${PORTVERSION} 23c22 < MAINTAINER= ports@FreeBSD.org --- > MAINTAINER= petef@databits.net Index: ports/mail/imap-uw/distinfo =================================================================== RCS file: /home/ncvs/ports/mail/imap-uw/distinfo,v retrieving revision 1.31 diff -r1.31 distinfo 1c1 < MD5 (imap-2000a.tar.Z) = d642c114b55ffe2e172b8e1bef6a1a52 --- > MD5 (imap-2000c.tar.Z) = 90bdc0670812234a0589286798575980 Index: ports/mail/imap-uw/pkg-descr =================================================================== RCS file: /home/ncvs/ports/mail/imap-uw/pkg-descr,v retrieving revision 1.4 diff -r1.4 pkg-descr 21a22,26 > > WWW: http://www.washington.edu/imap/ > > -Pete > petef@databits.net Index: ports/mail/imap-uw/files/patch-ab =================================================================== RCS file: /home/ncvs/ports/mail/imap-uw/files/patch-ab,v retrieving revision 1.22 diff -r1.22 patch-ab 16c16 < -CFLAGS=$(BASECFLAGS) $(EXTRACFLAGS) --- > -CFLAGS=-g 40c40 < $(BUILD) `$(CAT) SPECIALS` OS=bsi \ --- > $(BUILD) `$(CAT) SPECIALS` OS=$@ \ Index: ports/mail/imap-uw/files/patch-ac =================================================================== RCS file: /home/ncvs/ports/mail/imap-uw/files/patch-ac,v retrieving revision 1.9 diff -r1.9 patch-ac 1,3c1,3 < --- src/imapd/Makefile.orig Tue Oct 24 16:54:32 2000 < +++ src/imapd/Makefile Sun Dec 17 23:44:22 2000 < @@ -18,30 +18,25 @@ --- > --- src/imapd/Makefile.orig Tue Jan 9 16:08:17 2001 > +++ src/imapd/Makefile Sun Feb 4 11:54:00 2001 > @@ -18,9 +18,9 @@ 14a15 > @@ -39,21 +39,17 @@ 21c22 < -CFLAGS = -I$C `cat $C/CFLAGS` -DANOFILE=\"$(ANO)\" \ --- > -CFLAGS = -I$C `cat $C/CFLAGS` $(EXTRACFLAGS) -DANOFILE=\"$(ANO)\" \ 24a26 > + >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 Feb 4 20:20:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1657037B4EC for ; Sun, 4 Feb 2001 20:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f154K2O18872; Sun, 4 Feb 2001 20:20:02 -0800 (PST) (envelope-from gnats) Date: Sun, 4 Feb 2001 20:20:02 -0800 (PST) Message-Id: <200102050420.f154K2O18872@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "David W. Chapman Jr." Subject: Re: ports/24863: postfix-current version is now 20010204 Reply-To: "David W. Chapman Jr." Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24863; it has been noted by GNATS. From: "David W. Chapman Jr." To: , Cc: Subject: Re: ports/24863: postfix-current version is now 20010204 Date: Sun, 4 Feb 2001 22:11:57 -0600 > -MD5 (snapshot-20010202.tar.gz) = 2fc440422cc4de9478e0e6e130b11728 > +MD5 (snapshot-20010202.tar.gz) = a034b7c13d306bc1ab208996be886e5b Shouldn't the new checksum be for snapshot-20010204 or was it released as 20010202? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 20:20:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3D62337B491 for ; Sun, 4 Feb 2001 20:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f154K3B18877; Sun, 4 Feb 2001 20:20:03 -0800 (PST) (envelope-from gnats) Date: Sun, 4 Feb 2001 20:20:03 -0800 (PST) Message-Id: <200102050420.f154K3B18877@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Michael Harnois Subject: Re: ports/24863: postfix-current version is now 20010204 Reply-To: Michael Harnois Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24863; it has been noted by GNATS. From: Michael Harnois To: "David W. Chapman Jr." Cc: Subject: Re: ports/24863: postfix-current version is now 20010204 Date: 04 Feb 2001 22:16:36 -0600 On Sun, 4 Feb 2001 22:11:57 -0600, "David W. Chapman Jr." said: >> -MD5 (snapshot-20010202.tar.gz) = >> 2fc440422cc4de9478e0e6e130b11728 +MD5 >> (snapshot-20010202.tar.gz) = a034b7c13d306bc1ab208996be886e5b > Shouldn't the new checksum be for snapshot-20010204 or was it > released as 20010202? You're right. Sorry. Should actually try the patched files before submitting them :(. -- Michael D. Harnois, Redeemer Lutheran Church, Washburn, IA mdharnois@home.com aa0bt@aa0bt.ampr.org The atheist staring from the attic window is often nearer to God than the believer caught up in his own false image of God. -- Martin Buber To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 20:26:24 2001 Delivered-To: freebsd-ports@freebsd.org Received: from cx587235-a.chnd1.az.home.com (cx587235-a.chnd1.az.home.com [24.11.88.170]) by hub.freebsd.org (Postfix) with ESMTP id 4923637B491 for ; Sun, 4 Feb 2001 20:26:07 -0800 (PST) Received: from whale.home-net (whale [192.168.1.2]) by cx587235-a.chnd1.az.home.com (8.11.1/8.11.1) with ESMTP id f154Q6696594 for ; Sun, 4 Feb 2001 21:26:06 -0700 (MST) (envelope-from jjreynold@home.com) Received: (from jjreynold@localhost) by whale.home-net (8.11.1/8.11.1) id f154Q6V01053; Sun, 4 Feb 2001 21:26:06 -0700 (MST) (envelope-from jjreynold@home.com) From: John Reynolds MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <14974.11102.147827.571605@whale.home-net> Date: Sun, 4 Feb 2001 21:26:06 -0700 To: ports@freebsd.org Subject: PR ports/24703 - libusb X-Mailer: VM 6.88 under Emacs 20.7.1 Cc: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I remember a thread in -ports a while back that I cannot find in the archives dealing with "appropriate" time to allow new port submissions to be committed into the tree. What is the "usual" time provided that the "do's" in the Porter's Handbook were done properly and portlint(1) was used? Could somebody give ports/24703 a looksie? I've got confirmation from people that have downloaded the .tgz from my website that the library works well for them. We are currently hacking on the next version and I was hoping to have this into the ports before releasing a new version (thereby eclipsing on PR with another creating confusion). Thanks, -Jr -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= John Reynolds Chandler Capabilities Engineering, CDS, Intel Corporation jreynold@sedona.ch.intel.com My opinions are mine, not Intel's. Running jjreynold@home.com FreeBSD 4.2-STABLE. FreeBSD: The Power to Serve. http://www.reynoldsnet.org/ Come join us!!! @ 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 Sun Feb 4 20:30:30 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EC4637B6A7 for ; Sun, 4 Feb 2001 20:30:12 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f154UCX19705; Sun, 4 Feb 2001 20:30:12 -0800 (PST) (envelope-from gnats) Date: Sun, 4 Feb 2001 20:30:12 -0800 (PST) Message-Id: <200102050430.f154UCX19705@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Pete Fritchman Subject: Re: ports/24834: c-client version obsolete Reply-To: Pete Fritchman Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24834; it has been noted by GNATS. From: Pete Fritchman To: freebsd-gnats-submit@FreeBSD.org, mdharnois@home.com Cc: Subject: Re: ports/24834: c-client version obsolete Date: Sun, 04 Feb 2001 23:22:39 -0500 I'm not sure what I was thinking when I couldn't find a version number from 4.8 so I just upped the PORTREVISION. The new version is just "2000c", they (U Washington) are no longer using the major.minor revision scheme, I guess. Updated patch at http://hex.databits.net/~petef/diffs/cclient.diff. -pete -- Pete Fritchman Databits Network Services, Inc. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 4 23:15:46 2001 Delivered-To: freebsd-ports@freebsd.org Received: from priv-edtnes11-hme0.telusplanet.net (fepout3.telus.net [199.185.220.238]) by hub.freebsd.org (Postfix) with ESMTP id 60C7537B65D for ; Sun, 4 Feb 2001 23:15:30 -0800 (PST) Received: from CRX.sfu.ca ([209.53.63.29]) by priv-edtnes11-hme0.telusplanet.net (InterMail vM.4.01.03.13 201-229-121-113) with ESMTP id <20010205071529.ICTZ667.priv-edtnes11-hme0.telusplanet.net@CRX.sfu.ca> for ; Mon, 5 Feb 2001 00:15:29 -0700 Message-Id: <5.0.2.1.2.20010204231749.00b0b298@mail.brightmail.com> X-Sender: tmchow%sway.com@mail.brightmail.com (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 5.0.2 Date: Sun, 04 Feb 2001 23:18:48 -0800 To: ports@FreeBSD.org From: Trevin Chow Subject: /usr/ports/net/isc-dhcp3 problem 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 Hi there, For some reason the isc-dhcp3 port has the 2 files: /usr/local/etc/rc.d/dhcpd.sh and /usr/local/etc/dhcpd.conf For some reason the dhcpd.sh file doesn't have the correct command line parameters to read the dhcpd.conf file. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 2: 5: 0 2001 Delivered-To: freebsd-ports@freebsd.org Received: from rnocserv.urc.ac.ru (rnocserv.urc.ac.ru [193.233.85.2]) by hub.freebsd.org (Postfix) with ESMTP id A020C37B491 for ; Mon, 5 Feb 2001 02:02:58 -0800 (PST) Received: from urc.ac.ru (belle.rnoc.urc.ac.ru [193.233.85.10]) by rnocserv.urc.ac.ru (8.11.1/8.11.1) with ESMTP id f15A2Fd38747 for ; Mon, 5 Feb 2001 15:02:21 +0500 (YEKT) (envelope-from anton@urc.ac.ru) Message-ID: <3A7E7A27.4E3B2FC9@urc.ac.ru> Date: Mon, 05 Feb 2001 15:02:15 +0500 From: Anton Voronin Organization: URC FREEnet X-Mailer: Mozilla 4.74 [ru ] (X11; U; FreeBSD 4.2-STABLE i386) X-Accept-Language: ru, en MIME-Version: 1.0 To: ports@freebsd.org Subject: Has anyone successfully built mysql-3.23.32? Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greetings! About a week ago I noticed a complaint in this mailing list about mysql-server configure failure. I have the same problem, it fails on gethostbyname_r check. Did anybody build it successfully or maybe someone knows the workaround? If I run configure manually, then makefiles are not created. Regards, Anton -- Anton Voronin Ural Regional Center of FREEnet, Southern Ural State University, Chelyabinsk, Russia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 2:28: 7 2001 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 4DED937B4EC for ; Mon, 5 Feb 2001 02:27:48 -0800 (PST) Received: (qmail 24889 invoked by uid 1000); 5 Feb 2001 10:26:08 -0000 Date: Mon, 5 Feb 2001 12:26:08 +0200 From: Peter Pentchev To: Anton Voronin Cc: ports@freebsd.org Subject: Re: Has anyone successfully built mysql-3.23.32? Message-ID: <20010205122607.J1256@ringworld.oblivion.bg> Mail-Followup-To: Anton Voronin , ports@freebsd.org References: <3A7E7A27.4E3B2FC9@urc.ac.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A7E7A27.4E3B2FC9@urc.ac.ru>; from anton@urc.ac.ru on Mon, Feb 05, 2001 at 03:02:15PM +0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Feb 05, 2001 at 03:02:15PM +0500, Anton Voronin wrote: > Greetings! > > About a week ago I noticed a complaint in this mailing list about mysql-server > configure failure. I have the same problem, it fails on gethostbyname_r check. > Did anybody build it successfully or maybe someone knows the workaround? If I > run configure manually, then makefiles are not created. What FreeBSD version are you running? About the previous complaint, I noticed a possible cause, and now I'm in the process of putting up a patch to test. However, time and real life is pressing me, so I cannot do it as fast as I would like to :( G'luck, Peter -- I am the thought you are now thinking. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 2:56: 4 2001 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 F24FE37B401 for ; Mon, 5 Feb 2001 02:55:44 -0800 (PST) Received: from localhost (casantos@localhost) by gate.cpmet.ufpel.tche.br (8.11.1/8.11.1) with ESMTP id f15Atb104112 for ; Mon, 5 Feb 2001 10:55:37 GMT (envelope-from casantos@cpmet.ufpel.tche.br) Date: Mon, 5 Feb 2001 10:55:37 +0000 (GMT) From: "Carlos A. M. dos Santos" To: FreeBSD ports mailing list Subject: Indigo Magic Desktop for Linux (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 ---------- Forwarded message ---------- Date: Mon, 5 Feb 2001 10:55:01 +0000 (GMT) From: Carlos A. M. dos Santos To: LessTif mailing list Subject: Indigo Magic Desktop for Linux I saw this in /. and think it deserves some attention from the M*tif users/developers: http://www.5dwm.org/ According to the information available, the source code will be opened too, so IMD will be portable to other operating Systems. I am very interested in porting it to FreeBSD as soon as the source become available. -- 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 Mon Feb 5 3: 1:10 2001 Delivered-To: freebsd-ports@freebsd.org Received: from rnocserv.urc.ac.ru (rnocserv.urc.ac.ru [193.233.85.2]) by hub.freebsd.org (Postfix) with ESMTP id EED6537B401 for ; Mon, 5 Feb 2001 03:00:06 -0800 (PST) Received: from urc.ac.ru (belle.rnoc.urc.ac.ru [193.233.85.10]) by rnocserv.urc.ac.ru (8.11.1/8.11.1) with ESMTP id f15Ausd71002; Mon, 5 Feb 2001 15:56:54 +0500 (YEKT) (envelope-from anton@urc.ac.ru) Message-ID: <3A7E86F6.35E0E95F@urc.ac.ru> Date: Mon, 05 Feb 2001 15:56:54 +0500 From: Anton Voronin Organization: URC FREEnet X-Mailer: Mozilla 4.74 [ru ] (X11; U; FreeBSD 4.2-STABLE i386) X-Accept-Language: ru, en MIME-Version: 1.0 To: Peter Pentchev Cc: ports@FreeBSD.ORG Subject: Re: Has anyone successfully built mysql-3.23.32? References: <3A7E7A27.4E3B2FC9@urc.ac.ru> <20010205122607.J1256@ringworld.oblivion.bg> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Peter Pentchev wrote: > On Mon, Feb 05, 2001 at 03:02:15PM +0500, Anton Voronin wrote: > > Greetings! > > > > About a week ago I noticed a complaint in this mailing list about mysql-server > > configure failure. I have the same problem, it fails on gethostbyname_r check. > > Did anybody build it successfully or maybe someone knows the workaround? If I > > run configure manually, then makefiles are not created. > > What FreeBSD version are you running? 4.2-stable, built on January 8th. > > About the previous complaint, I noticed a possible cause, and now I'm in > the process of putting up a patch to test. However, time and real life > is pressing me, so I cannot do it as fast as I would like to :( Regards, Anton > > G'luck, > Peter > > -- > I am the thought you are now thinking. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message -- Anton Voronin Ural Regional Center of FREEnet, Southern Ural State University, Chelyabinsk, Russia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 5: 9:46 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hq1.tyfon.net (hq1.tyfon.net [217.27.162.35]) by hub.freebsd.org (Postfix) with ESMTP id BCF9E37B503 for ; Mon, 5 Feb 2001 05:09:29 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by hq1.tyfon.net (Postfix) with ESMTP id E26671C7DB for ; Mon, 5 Feb 2001 14:09:26 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by hq1.tyfon.net (Postfix) with ESMTP id B3D551C7C9 for ; Mon, 5 Feb 2001 14:09:23 +0100 (CET) Date: Mon, 5 Feb 2001 14:09:23 +0100 (CET) From: Dan Larsson To: Subject: c-client port needs updating Message-ID: Organization: Tyfon Svenska AB X-NCC-NIC: DL1999-RIPE X-NCC-RegID: se.tyfon MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by hq1.tyfon.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The distfile `imap-2000b.tar.Z' has been replaced by `imap-2000c.tar.Z', please update the port accordingly. Affected ports: mail/imap-uw mail/p5-Mail-CClient mail/pine4 mail/pine4-ssl mail/tkrat mail/tkrat2 russian/pine.language Regards +------ Dan Larsson | Tel: +46 8 550 120 21 Tyfon Svenska AB | Fax: +46 8 550 120 02 GPG and PGP keys | finger dl@hq1.tyfon.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 5:10:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 25F1937B698 for ; Mon, 5 Feb 2001 05:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15DA1r04734; Mon, 5 Feb 2001 05:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B12DC37B6A2 for ; Mon, 5 Feb 2001 05:02:28 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15D2SO01831; Mon, 5 Feb 2001 05:02:28 -0800 (PST) (envelope-from nobody) Message-Id: <200102051302.f15D2SO01831@freefall.freebsd.org> Date: Mon, 5 Feb 2001 05:02:28 -0800 (PST) From: avn@any.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24867: ftp/wget cannot be patched Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24867 >Category: ports >Synopsis: ftp/wget cannot be patched >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 Feb 05 05:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alexey V. Neyman >Release: 4.2-STABLE i386 >Organization: ANY.RU >Environment: FreeBSD srv1.any 4.2-STABLE FreeBSD 4.2-STABLE #7: Tue Jan 30 16:30:25 MSK 2001 root@srv1.any:/usr/src/sys/compile/AMD i386 >Description: when trying to build ftp/wget port, files/patch-ab file is rejected (5 of 8 hunks fail). wget tarball obtained from ftp.gnu.org/gnu/wget >How-To-Repeat: toor@srv1>cd /usr/ports/ftp/wget toor@srv1>make fetch extract [...] toor@srv1>make patch ===> Patching for wget-1.6_1 ===> Applying FreeBSD patches for wget-1.6_1 5 out of 8 hunks failed--saving rejects to src/url.c.rej >Fix: >Release-Note: >Audit-Trail: >Unformatted: >> Patch patch-ab failed to apply cleanly. *** Error code 1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 5:20:27 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5A02B37B6A7; Mon, 5 Feb 2001 05:20:06 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15DK2c06098; Mon, 5 Feb 2001 05:20:02 -0800 (PST) (envelope-from kevlo) Date: Mon, 5 Feb 2001 05:20:02 -0800 (PST) From: Message-Id: <200102051320.f15DK2c06098@freefall.freebsd.org> To: xaa+ports@madison-gurkha.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24850: Upgrade of libslang port to 1.4.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade of libslang port to 1.4.3 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Mon Feb 5 05:19:46 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24850 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 5:30:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5C77A37B491 for ; Mon, 5 Feb 2001 05:30:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15DU5i07270; Mon, 5 Feb 2001 05:30:05 -0800 (PST) (envelope-from gnats) Date: Mon, 5 Feb 2001 05:30:05 -0800 (PST) Message-Id: <200102051330.f15DU5i07270@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Peter Pentchev Subject: Re: ports/24867: ftp/wget cannot be patched Reply-To: Peter Pentchev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24867; it has been noted by GNATS. From: Peter Pentchev To: avn@any.ru Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/24867: ftp/wget cannot be patched Date: Mon, 5 Feb 2001 15:23:57 +0200 On Mon, Feb 05, 2001 at 05:02:28AM -0800, avn@any.ru wrote: > > >Number: 24867 > >Category: ports > >Synopsis: ftp/wget cannot be patched > >Originator: Alexey V. Neyman > >Release: 4.2-STABLE i386 > >Organization: > ANY.RU > >Environment: > FreeBSD srv1.any 4.2-STABLE FreeBSD 4.2-STABLE #7: Tue Jan 30 16:30:25 MSK 2001 root@srv1.any:/usr/src/sys/compile/AMD i386 > > >Description: > when trying to build ftp/wget port, files/patch-ab file is rejected > (5 of 8 hunks fail). wget tarball obtained from ftp.gnu.org/gnu/wget > > >How-To-Repeat: > toor@srv1>cd /usr/ports/ftp/wget > toor@srv1>make fetch extract > [...] > toor@srv1>make patch > ===> Patching for wget-1.6_1 > ===> Applying FreeBSD patches for wget-1.6_1 > 5 out of 8 hunks failed--saving rejects to src/url.c.rej > >> Patch patch-ab failed to apply cleanly. > *** Error code 1 You seem to have been bitten by the recent cleaning of the ports collection. patch-ab has been removed, yet your cvsup run has not deleted it. Now you have two choices - either remove your whole /usr/ports tree, and pull it in via cvsup, or start from a ports tree from a FreeBSD release CD, and follow the instructions in items 11 and 12 of the CVSup FAQ at: http://www.polstra.com/projects/freeware/CVSup/faq.html#caniadopt Hope that helps. G'luck, Peter -- No language can express every thought unambiguously, least of all this one. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 6:38:34 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id A8FAC37B401; Mon, 5 Feb 2001 06:37:44 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f15EYw809723; Mon, 5 Feb 2001 16:35:04 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.9.3) with ESMTP id f15EZ1932199; Mon, 5 Feb 2001 16:35:01 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A7EBA0D.A293FF21@FreeBSD.org> Date: Mon, 05 Feb 2001 16:34:53 +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: jkh@FreeBSD.org, Peter Pentchev , Edwin Groothuis Subject: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24695 What do ppl think about proposed feature? I personally think that at least prefix part could be solved easily with appropriate autocompletion rule, however if there is enough interest I could go on and add this feature. -Maxim -------- Original Message -------- Subject: bin/24695: [patch] pkg_info: prefix search for a package Date: Mon, 5 Feb 2001 14:54:39 +0100 From: Edwin Groothuis To: sobomax@freebsd.org Hello, Got your name as the last person who changed the source of pkg_info in the CVS repository of FreeBSD. In PR bin/24695 I've added a patch for pkg_info, to support an easier way of searching for packages: pkg_info -P for prefix-searches, pkg_info -F for fuzzy-searches (somewhere in the string itself). Could you please have a look at it if it could be incorperated into the CVS repository? Edwin -- Edwin Groothuis | Interested in MUDs? Visit Fatal Dimensions: mavetju@chello.nl | http://fataldimensions.nl.eu.org/ ------------------+ telnet://fataldimensions.nl.eu.org:4000 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 6:43:46 2001 Delivered-To: freebsd-ports@freebsd.org Received: from puck.firepipe.net (mcut-b-167.resnet.purdue.edu [128.211.209.167]) by hub.freebsd.org (Postfix) with ESMTP id 5214037B491; Mon, 5 Feb 2001 06:43:29 -0800 (PST) Received: by puck.firepipe.net (Postfix, from userid 1000) id B7B1E1921; Mon, 5 Feb 2001 09:43:28 -0500 (EST) Date: Mon, 5 Feb 2001 09:43:28 -0500 From: Will Andrews To: Maxim Sobolev Cc: ports@FreeBSD.ORG, jkh@FreeBSD.ORG, Peter Pentchev , Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] Message-ID: <20010205094328.H649@puck.firepipe.net> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Maxim Sobolev , ports@FreeBSD.ORG, jkh@FreeBSD.ORG, Peter Pentchev , Edwin Groothuis References: <3A7EBA0D.A293FF21@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="/9ZOS6odDaRI+0hI" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A7EBA0D.A293FF21@FreeBSD.org>; from sobomax@FreeBSD.ORG on Mon, Feb 05, 2001 at 04:34:53PM +0200 X-Operating-System: FreeBSD 4.2-STABLE i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --/9ZOS6odDaRI+0hI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Feb 05, 2001 at 04:34:53PM +0200, Maxim Sobolev wrote: > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=3D24695 >=20 > What do ppl think about proposed feature? I personally think that at least > prefix part could be solved easily with appropriate autocompletion rule, > however if there is enough interest I could go on and add this feature. As Captain Picard said, "Make it so." --=20 wca --/9ZOS6odDaRI+0hI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6frwQF47idPgWcsURAlB/AJ0UtaGFj7/BzOwZS3XQak+XgPyxCgCgj9fJ 0yaPmzBqx8VljF/8Flxd+C8= =hXC+ -----END PGP SIGNATURE----- --/9ZOS6odDaRI+0hI-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 6:51:11 2001 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 DC57237B4EC for ; Mon, 5 Feb 2001 06:50:49 -0800 (PST) Received: (qmail 29054 invoked by uid 1000); 5 Feb 2001 14:49:08 -0000 Date: Mon, 5 Feb 2001 16:49:08 +0200 From: Peter Pentchev To: Will Andrews Cc: Maxim Sobolev , ports@FreeBSD.ORG, jkh@FreeBSD.ORG, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] Message-ID: <20010205164908.E26188@ringworld.oblivion.bg> Mail-Followup-To: Will Andrews , Maxim Sobolev , ports@FreeBSD.ORG, jkh@FreeBSD.ORG, Edwin Groothuis References: <3A7EBA0D.A293FF21@FreeBSD.org> <20010205094328.H649@puck.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: <20010205094328.H649@puck.firepipe.net>; from will@physics.purdue.edu on Mon, Feb 05, 2001 at 09:43:28AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Feb 05, 2001 at 09:43:28AM -0500, Will Andrews wrote: > On Mon, Feb 05, 2001 at 04:34:53PM +0200, Maxim Sobolev wrote: > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24695 > > > > What do ppl think about proposed feature? I personally think that at least > > prefix part could be solved easily with appropriate autocompletion rule, > > however if there is enough interest I could go on and add this feature. > > As Captain Picard said, "Make it so." As I've already said in the PR audit-trail, I like it :) Sometimes, autocompletion functions just don't cut it - for example, consider what I wrote about in the audit trail - querying all packages starting with 'mysql'. 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 Feb 5 7:17:21 2001 Delivered-To: freebsd-ports@freebsd.org Received: from leviathan.inethouston.net (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 0D4FB37B491 for ; Mon, 5 Feb 2001 07:17:05 -0800 (PST) Received: from dwcjr (DWCJR.inethouston.net [216.118.21.147]) by leviathan.inethouston.net (Postfix) with ESMTP id 0014B177E3F; Mon, 5 Feb 2001 09:17:05 -0600 (CST) Message-ID: <009601c08f86$b6352620$931576d8@inethouston.net> From: "David W. Chapman Jr." To: , "Trevin Chow" References: <5.0.2.1.2.20010204231749.00b0b298@mail.brightmail.com> Subject: Re: /usr/ports/net/isc-dhcp3 problem Date: Mon, 5 Feb 2001 09:17:11 -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 It does one mine, although you have to edit it manually to set the interface. ----- Original Message ----- From: "Trevin Chow" To: Sent: Monday, February 05, 2001 1:18 AM Subject: /usr/ports/net/isc-dhcp3 problem > Hi there, > > For some reason the isc-dhcp3 port has the 2 files: > > /usr/local/etc/rc.d/dhcpd.sh > and > /usr/local/etc/dhcpd.conf > > For some reason the dhcpd.sh file doesn't have the correct command line > parameters to read the dhcpd.conf file. > > > > 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 Feb 5 7:20:40 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 973F637B698 for ; Mon, 5 Feb 2001 07:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15FK2615042; Mon, 5 Feb 2001 07:20:02 -0800 (PST) (envelope-from gnats) Received: from beta.life.nthu.edu.tw (beta.life.nthu.edu.tw [140.114.98.20]) by hub.freebsd.org (Postfix) with ESMTP id 1F86F37B491 for ; Mon, 5 Feb 2001 07:16:52 -0800 (PST) Received: (from root@localhost) by beta.life.nthu.edu.tw (8.11.2/8.11.1) id f15FGcm15177; Mon, 5 Feb 2001 23:16:38 +0800 (CST) (envelope-from frankch) Message-Id: <200102051516.f15FGcm15177@beta.life.nthu.edu.tw> Date: Mon, 5 Feb 2001 23:16:38 +0800 (CST) From: frankch@waru.life.nthu.edu.tw Reply-To: frankch@waru.life.nthu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24870: update ports/chinese/rxvt to 2.7.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24870 >Category: ports >Synopsis: Update ports/chinese/rxvt to the latest version >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 Feb 05 07:20:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Chen Hsiung Chan >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD beta.life.nthu.edu.tw 4.2-STABLE FreeBSD 4.2-STABLE #0: Mon Feb 5 06:01:18 CST 2001 root@:/usr/src/sys/compile/meditation i386 >Description: Update ports/chinese/rxvt to the latest version. Also change maintainer to keichii@iteration.net >How-To-Repeat: >Fix: Please apply the following patch. NOTE: two empty patch file patch-aa, patch-ab will be produced, please remove them. diff -ruN rxvt.orig/Makefile rxvt/Makefile --- rxvt.orig/Makefile Mon Feb 5 11:28:45 2001 +++ rxvt/Makefile Mon Feb 5 22:52:35 2001 @@ -6,8 +6,7 @@ # PORTNAME= rxvt -PORTVERSION= 2.7.3 -PORTREVISION= 1 +PORTVERSION= 2.7.5 CATEGORIES= chinese x11 MASTER_SITES= ftp://ftp.rxvt.org/pub/rxvt/ \ ftp://mason.primenet.com.au/pub/rxvt/ \ @@ -17,11 +16,7 @@ MASTER_SITE_SUBDIR= X11/terms DISTNAME= rxvt-${PORTVERSION} -PATCH_SITES= ${MASTER_SITES} -PATCHFILES= rxvt-2.7.3.patch1.gz -PATCH_DIST_STRIP+= -p1 - -MAINTAINER= frankch@waru.life.nthu.edu.tw +MAINTAINER= keichii@iteration.net USE_X_PREFIX= yes USE_XPM= yes @@ -29,8 +24,14 @@ USE_BZIP2= yes CONFIGURE_ARGS= --enable-xpm-background --enable-transparency \ --enable-menubar --enable-graphics --enable-xim \ - --enable-languages --with-encoding=big5 + --disable-backspace-key --disable-delete-key \ + --enable-rxvt-scroll --enable-next-scroll \ + --enable-languages --with-encoding=big5 \ + --enable-utmp --enable-wtmp MAN1= crxvt.1 + +post-install: + @${CHMOD} 4711 ${PREFIX}/bin/crxvt .include diff -ruN rxvt.orig/distinfo rxvt/distinfo --- rxvt.orig/distinfo Mon Feb 5 11:28:45 2001 +++ rxvt/distinfo Mon Feb 5 11:31:08 2001 @@ -1,2 +1 @@ -MD5 (rxvt-2.7.3.tar.bz2) = 4f22d749152ba717c5b716df43801800 -MD5 (rxvt-2.7.3.patch1.gz) = 348fca4eb5e7bc41d070745e3655d184 +MD5 (rxvt-2.7.5.tar.bz2) = dd9d2b6c3887c674f484c480d4419a19 diff -ruN rxvt.orig/files/patch-Makefile.in rxvt/files/patch-Makefile.in --- rxvt.orig/files/patch-Makefile.in Thu Jan 1 08:00:00 1970 +++ rxvt/files/patch-Makefile.in Mon Feb 5 22:43:35 2001 @@ -0,0 +1,11 @@ +--- Makefile.in.orig Mon Feb 5 22:39:51 2001 ++++ Makefile.in Mon Feb 5 22:40:19 2001 +@@ -9,7 +9,7 @@ + first_rule: all + dummy: + +-subdirs = src doc rclock src/graphics src/test ++subdirs = src doc src/graphics + + DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog + diff -ruN rxvt.orig/files/patch-aa rxvt/files/patch-aa --- rxvt.orig/files/patch-aa Mon Feb 5 11:28:45 2001 +++ rxvt/files/patch-aa Thu Jan 1 08:00:00 1970 @@ -1,52 +0,0 @@ ---- Makefile.in.orig Mon Mar 27 19:38:42 2000 -+++ Makefile.in Mon Mar 27 19:39:21 2000 -@@ -9,7 +9,7 @@ - first_rule: all - dummy: - --subdirs = src doc rclock src/graphics src/test -+subdirs = src doc src/graphics - - DIST = INSTALL README.configure configure Makefile Makefile.in ChangeLog - ---- doc/Makefile.in.orig Mon Mar 27 19:39:40 2000 -+++ doc/Makefile.in Mon Mar 27 19:44:16 2000 -@@ -40,9 +40,6 @@ - - all: rxvt.1 - --rxvt.1: rxvt.tbl Makefile -- @if test x$(TBL) = x; then : ; else echo "$(TBL) $(srcdir)/rxvt.tbl | grep -v '^.lf' > rxvt.1"; $(TBL) $(srcdir)/rxvt.tbl | grep -v '^.lf' > rxvt.1 ; fi -- - SEDREPLACE = -e 's%@RXVT_VERSION@%$(VERSION)%g;'\ - -e 's%@RXVT_LSMDATE@%$(LSMDATE)%g;'\ - -e 's%@RXVT_DATE@%$(DATE)%g;'\ -@@ -56,7 +53,7 @@ - - tags allbin: - --alldoc: $(basedir)/$(VERNAME).lsm rxvt.1 rxvt.html rxvtRef.html rxvtRef.txt -+alldoc: rxvt.1 - - yodl/versioninfo.yo: yodl/versioninfo.yo.in ../src/version.h - $(SED) $(SEDREPLACE) < $(srcdir)/yodl/versioninfo.yo.in > $@ -@@ -85,7 +82,7 @@ - distclean: - - install: -- $(INSTALL_DATA) rxvt.1 $(DESTDIR)$(mandir)/$(RXVTNAME).$(manext) -+ $(INSTALL_DATA) rxvt.1 $(PREFIX)/man/man1/crxvt.1 - - uninstall: - -(cd $(mandir); $(RMF) $(RXVTNAME).$(manext) ) ---- src/Makefile.in.orig Mon Mar 27 19:41:21 2000 -+++ src/Makefile.in Mon Mar 27 19:41:38 2000 -@@ -98,7 +98,7 @@ - (cd $(srcdir); $(RMF) Makefile) - - install: allbin alldoc -- $(INSTALL_PROGRAM) rxvt $(DESTDIR)$(bindir)/$(RXVTNAME) -+ $(INSTALL_PROGRAM) rxvt $(PREFIX)/bin/crxvt - - uninstall: - -(cd $(bindir); $(RMF) $(RXVTNAME) ) diff -ruN rxvt.orig/files/patch-ab rxvt/files/patch-ab --- rxvt.orig/files/patch-ab Mon Feb 5 11:28:45 2001 +++ rxvt/files/patch-ab Thu Jan 1 08:00:00 1970 @@ -1,157 +0,0 @@ ---- src/init.c.orig Mon Mar 27 19:50:56 2000 -+++ src/init.c Mon Mar 27 19:51:44 2000 -@@ -866,6 +866,16 @@ - GCForeground | GCBackground | - GCFont | GCGraphicsExposures, - &gcvalue); -+#ifdef FIX_ALIGNMENT -+ TermWin.ngc = TermWin.gc; -+#ifdef MULTICHAR_SET -+ gcvalue.font = TermWin.mfont->fid; -+ TermWin.mgc = XCreateGC(Xdisplay, TermWin.vt, -+ GCForeground | GCBackground | -+ GCFont | GCGraphicsExposures, -+ &gcvalue); -+#endif -+#endif - } - } - /*----------------------------------------------------------------------*/ ---- src/main.c.orig Mon Mar 27 19:53:37 2000 -+++ src/main.c Mon Mar 27 19:54:04 2000 -@@ -546,7 +546,11 @@ - - /* alter existing GC */ - if (!init) { -+#ifdef FIX_ALIGNMENT -+ XSetFont(Xdisplay, TermWin.ngc, TermWin.font->fid); -+#else - XSetFont(Xdisplay, TermWin.gc, TermWin.font->fid); -+#endif - menubar_expose(); - } - ---- src/rxvt.h.orig Mon Mar 27 19:54:20 2000 -+++ src/rxvt.h Mon Mar 27 19:55:36 2000 -@@ -172,12 +172,19 @@ - Window parent[KNOW_PARENTS], /* parent[0] is our window */ - vt; /* vt100 window */ - GC gc; /* GC for drawing text */ -+#ifdef FIX_ALIGNMENT -+ GC ngc; -+ int vascent; -+#endif - XFontStruct *font; /* main font structure */ - #ifndef NO_BOLDFONT - XFontStruct *boldFont; /* bold font */ - #endif - #ifdef MULTICHAR_SET - XFontStruct *mfont; /* Multichar font structure */ -+#endif -+#ifdef FIX_ALIGNMENT -+ GC mgc; - #endif - XFontSet fontset; - #ifdef XPM_BACKGROUND ---- src/screen.c.orig Mon Mar 27 19:56:10 2000 -+++ src/screen.c Mon Mar 27 20:00:03 2000 -@@ -2162,7 +2162,12 @@ - * always go back to the base font - it's much safer - */ - wbyte = 0; -- XSetFont(Xdisplay, TermWin.gc, TermWin.font->fid); -+#ifdef FIX_ALIGNMENT -+ TermWin.gc = TermWin.ngc; -+ TermWin.vascent = TermWin.font->ascent; -+#else -+ XSetFont(Xdisplay, TermWin.gc, TermWin.font->fid); -+#endif - draw_string = XDrawString; - draw_image_string = XDrawImageString; - clearfirst = clearlast = 0; -@@ -2371,7 +2376,11 @@ - len = 0; - buffer[len++] = stp[col]; - ypixelc = Row2Pixel(row); -+#ifdef FIX_ALIGNMENT -+ ypixel = ypixelc + TermWin.vascent; -+#else - ypixel = ypixelc + TermWin.font->ascent; -+#endif - xpixel = Col2Pixel(col); - fontdiff = 0; - wlen = 1; -@@ -2392,7 +2401,13 @@ - fprop = TermWin.mprop; - if (!wbyte && TermWin.mfont) { - wbyte = 1; -+#ifdef FIX_ALIGNMENT -+ TermWin.gc = TermWin.mgc; -+ ypixel += TermWin.mfont->ascent - TermWin.vascent; -+ TermWin.vascent = TermWin.mfont->ascent; -+#else - XSetFont(Xdisplay, TermWin.gc, TermWin.mfont->fid); -+#endif - fontdiff = TermWin.mprop; - draw_string = XDrawString16; - draw_image_string = XDrawImageString16; -@@ -2439,7 +2454,13 @@ - } - if (wbyte) { - wbyte = 0; -+#ifdef FIX_ALIGNMENT -+ TermWin.gc = TermWin.ngc; -+ ypixel += TermWin.font->ascent - TermWin.vascent; -+ TermWin.vascent = TermWin.font->ascent; -+#else - XSetFont(Xdisplay, TermWin.gc, TermWin.font->fid); -+#endif - draw_string = XDrawString; - draw_image_string = XDrawImageString; - } -@@ -2537,7 +2558,11 @@ - rend &= ~RS_Bold; /* we've taken care of it */ - } else if (bfont) { - bfont = 0; -+#ifdef FIX_ALIGNMENT -+ XSetFont(Xdisplay, TermWin.ngc, TermWin.font->fid); -+#else - XSetFont(Xdisplay, TermWin.gc, TermWin.font->fid); -+#endif - } - #endif - /* -@@ -2672,6 +2697,9 @@ - end_row = TermWin.saveLines - TermWin.view_start; - if (selection.op && current_screen == selection.screen) { - i = selection.beg.row + TermWin.saveLines; -+#ifdef FIX_ALIGNMENT -+ TermWin.gc = TermWin.ngc; -+#endif - row = selection.end.row + TermWin.saveLines; - if (i >= end_row) - col = selection.beg.col; ---- src/feature.h.orig Mon Mar 27 20:06:40 2000 -+++ src/feature.h Mon Mar 27 20:07:27 2000 -@@ -55,18 +55,18 @@ - * overstrike just for multi char fonts - * Note: NO_BOLDOVERSTRIKE implies NO_BOLDOVERSTRIKE_MULTI - */ --/* #define NO_BOLDOVERSTRIKE */ -+#define NO_BOLDOVERSTRIKE - /* #define NO_BOLDOVERSTRIKE_MULTI */ - - /* - * Also use bold font or overstrike even if we use colour for bold - */ --#define VERYBOLD -+/* #define VERYBOLD */ - - /* - * Compile without support for real bold fonts - */ --/* #define NO_BOLDFONT */ -+#define NO_BOLDFONT - - /* - * If the screen has 24 bit mode, use that even if the default is 8 bit. diff -ruN rxvt.orig/files/patch-autoconf::config.h.in rxvt/files/patch-autoconf::config.h.in --- rxvt.orig/files/patch-autoconf::config.h.in Thu Jan 1 08:00:00 1970 +++ rxvt/files/patch-autoconf::config.h.in Mon Feb 5 22:48:58 2001 @@ -0,0 +1,22 @@ +--- autoconf/config.h.in.orig Mon Feb 5 22:46:11 2001 ++++ autoconf/config.h.in Mon Feb 5 22:48:13 2001 +@@ -168,7 +168,8 @@ + #undef HAVE_UTMP_HOST + + /* Define location of utmp */ +-#undef RXVT_UTMP_FILE ++/* #undef RXVT_UTMP_FILE */ ++#define RXVT_UTMP_FILE "/var/run/utmp" + + /* Define in utmpx.h has struct utmpx */ + #undef HAVE_STRUCT_UTMPX +@@ -180,7 +181,8 @@ + #undef RXVT_UTMPX_FILE + + /* Define location of wtmp */ +-#undef RXVT_WTMP_FILE ++/* #undef RXVT_WTMP_FILE */ ++#define RXVT_WTMP_FILE "/var/log/wtmp" + + /* Define location of wtmpx */ + #undef RXVT_WTMPX_FILE diff -ruN rxvt.orig/files/patch-doc::Makefile.in rxvt/files/patch-doc::Makefile.in --- rxvt.orig/files/patch-doc::Makefile.in Thu Jan 1 08:00:00 1970 +++ rxvt/files/patch-doc::Makefile.in Mon Feb 5 22:50:09 2001 @@ -0,0 +1,30 @@ +--- doc/Makefile.in.orig Mon Feb 5 22:40:26 2001 ++++ doc/Makefile.in Mon Feb 5 22:50:03 2001 +@@ -40,9 +40,6 @@ + + all: rxvt.1 + +-rxvt.1: rxvt.tbl Makefile +- @if test x$(TBL) = x; then : ; else echo "$(TBL) $(srcdir)/rxvt.tbl | grep -v '^.lf' > rxvt.1"; $(TBL) $(srcdir)/rxvt.tbl | grep -v '^.lf' > rxvt.1 ; fi +- + SEDREPLACE = -e 's%@RXVT_VERSION@%$(VERSION)%g;'\ + -e 's%@RXVT_LSMDATE@%$(LSMDATE)%g;'\ + -e 's%@RXVT_DATE@%$(DATE)%g;'\ +@@ -56,7 +53,7 @@ + + tags allbin: + +-alldoc: $(basedir)/$(VERNAME).lsm yodl/versioninfo.yo rxvt.1 rxvt.html rxvtRef.html rxvtRef.txt ++alldoc: rxvt.1 + + yodl/versioninfo.yo: yodl/versioninfo.yo.in ../src/version.h + $(SED) $(SEDREPLACE) < $(srcdir)/yodl/versioninfo.yo.in > $@ +@@ -87,7 +84,7 @@ + distclean: + + install: +- $(INSTALL_DATA) rxvt.1 $(DESTDIR)$(mandir)/$(RXVTNAME).$(manext) ++ $(INSTALL_DATA) rxvt.1 $(PREFIX)/man/man1/crxvt.1 + + uninstall: + -(cd $(mandir); $(RMF) $(RXVTNAME).$(manext) ) diff -ruN rxvt.orig/files/patch-src::Makefile.in rxvt/files/patch-src::Makefile.in --- rxvt.orig/files/patch-src::Makefile.in Thu Jan 1 08:00:00 1970 +++ rxvt/files/patch-src::Makefile.in Mon Feb 5 22:44:29 2001 @@ -0,0 +1,11 @@ +--- src/Makefile.in.orig Mon Feb 5 22:41:53 2001 ++++ src/Makefile.in Mon Feb 5 22:42:41 2001 +@@ -115,7 +115,7 @@ + + install: allbin alldoc + @$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) librxvt.la $(libdir) +- @$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvt $(DESTDIR)$(bindir)/`$(ECHO) $$p|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'|$(SED) 's/$$/$(EXEEXT)/'`; ++ @$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) rxvt $(PREFIX)/bin/crxvt + + uninstall: + @$(LIBTOOL) --mode=uninstall $(RMF) $(DESTDIR)$(bindir)/`$(ECHO) rxvt|$(SED) 's/$(EXEEXT)$$//'|$(SED) '$(transform)'|$(SED) 's/$$/$(EXEEXT)/'` diff -ruN rxvt.orig/pkg-plist rxvt/pkg-plist --- rxvt.orig/pkg-plist Mon Feb 5 11:28:45 2001 +++ rxvt/pkg-plist Mon Feb 5 22:50:46 2001 @@ -1 +1,4 @@ bin/crxvt +lib/librxvt.a +lib/librxvt.so +lib/librxvt.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 Feb 5 7:56:25 2001 Delivered-To: freebsd-ports@freebsd.org Received: from server.localdomain.net (unknown [194.244.229.102]) by hub.freebsd.org (Postfix) with ESMTP id 062C537B65D for ; Mon, 5 Feb 2001 07:56:06 -0800 (PST) Received: from dev1.localdomain.net (dev1.localdomain.net [192.168.1.50]) by server.localdomain.net (8.9.3/8.8.7) with ESMTP id QAA00726 for ; Mon, 5 Feb 2001 16:56:05 +0100 Date: Mon, 5 Feb 2001 16:56:18 +0100 (CET) From: Jimmy Olgeni X-X-Sender: To: Subject: WARNING: some work directories in CVS repo 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 all, I spotted some work directories in the repo. ./devel/pinstall/work ./net/sagemerlin/work ./net/nsping/work ./net/spat/work (there's a whole subtree!) ./x11/xvkbd/work ./security/ca-roots/work (doesn't look right) -- jimmy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 9:25:16 2001 Delivered-To: freebsd-ports@freebsd.org Received: from london.physics.purdue.edu (london.physics.purdue.edu [128.210.67.35]) by hub.freebsd.org (Postfix) with ESMTP id 80DC537B401; Mon, 5 Feb 2001 09:24:58 -0800 (PST) Received: (from will@localhost) by london.physics.purdue.edu (8.8.8/8.8.8) id MAA20506; Mon, 5 Feb 2001 12:24:57 -0500 (EST) X-Authentication-Warning: london.physics.purdue.edu: will set sender to will@physics.purdue.edu using -f Date: Mon, 5 Feb 2001 12:24:57 -0500 From: Will Andrews To: Jimmy Olgeni Cc: freebsd-ports@FreeBSD.ORG Subject: Re: WARNING: some work directories in CVS repo Message-ID: <20010205122457.B19431@london.physics.purdue.edu> 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 olgeni@FreeBSD.ORG on Mon, Feb 05, 2001 at 04:56:18PM +0100 X-Operating-System: SunOS 4.1.3_U1 sun4m Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Feb 05, 2001 at 04:56:18PM +0100, Jimmy Olgeni wrote: > I spotted some work directories in the repo. [..] > (doesn't look right) Some committers were careless. Ignore them. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 9:52:49 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6A58737B401; Mon, 5 Feb 2001 09:52:33 -0800 (PST) Received: (from sf@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15HqXl46867; Mon, 5 Feb 2001 09:52:33 -0800 (PST) (envelope-from sf) Date: Mon, 5 Feb 2001 09:52:33 -0800 (PST) From: Message-Id: <200102051752.f15HqXl46867@freefall.freebsd.org> To: mdharnois@home.com, sf@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24841: postfix-current snapshot now 20010128 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: postfix-current snapshot now 20010128 State-Changed-From-To: open->closed State-Changed-By: sf State-Changed-When: Mon Feb 5 09:52:18 PST 2001 State-Changed-Why: Superseded by 24863. http://www.freebsd.org/cgi/query-pr.cgi?pr=24841 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 9:55:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 808FD37B401; Mon, 5 Feb 2001 09:55:07 -0800 (PST) Received: (from sf@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15Ht7B47216; Mon, 5 Feb 2001 09:55:07 -0800 (PST) (envelope-from sf) Date: Mon, 5 Feb 2001 09:55:07 -0800 (PST) From: Message-Id: <200102051755.f15Ht7B47216@freefall.freebsd.org> To: mdharnois@home.com, sf@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24863: postfix-current version is now 20010204 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: postfix-current version is now 20010204 State-Changed-From-To: open->feedback State-Changed-By: sf State-Changed-When: Mon Feb 5 09:52:50 PST 2001 State-Changed-Why: update committed but TLS temporarily disabled due to patch mismatch. When new TLS released this will be enabled again. http://www.freebsd.org/cgi/query-pr.cgi?pr=24863 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 10:30:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BFD1B37B699 for ; Mon, 5 Feb 2001 10:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IU1052720; Mon, 5 Feb 2001 10:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 68B6937B401 for ; Mon, 5 Feb 2001 10:25:46 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IPkA52227; Mon, 5 Feb 2001 10:25:46 -0800 (PST) (envelope-from nobody) Message-Id: <200102051825.f15IPkA52227@freefall.freebsd.org> Date: Mon, 5 Feb 2001 10:25:46 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24873: Update port: devel/kdevelop Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24873 >Category: ports >Synopsis: Update port: devel/kdevelop >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 Feb 05 10:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Add missing @dirrm >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/kdevelop/pkg-plist devel/kdevelop/pkg-plist --- /usr/ports/devel/kdevelop/pkg-plist Tue Jan 30 21:03:28 2001 +++ devel/kdevelop/pkg-plist Wed Jan 31 22:44:23 2001 @@ -590,6 +590,8 @@ @dirrm share/doc/HTML/en/kdevelop @dirrm share/doc/HTML/de/kdevelop/welcome @dirrm share/doc/HTML/de/kdevelop/tutorial +@dirrm share/doc/HTML/en/kdevelop/reference/C +@dirrm share/doc/HTML/en/kdevelop/reference @dirrm share/doc/HTML/de/kdevelop/kde_libref @dirrm share/doc/HTML/de/kdevelop @dirrm share/apps/kdevelop/tools >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 Feb 5 10:30:26 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 96B1937B67D for ; Mon, 5 Feb 2001 10:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IU1J52711; Mon, 5 Feb 2001 10:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 64C6F37B491 for ; Mon, 5 Feb 2001 10:24:56 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IOuG52150; Mon, 5 Feb 2001 10:24:56 -0800 (PST) (envelope-from nobody) Message-Id: <200102051824.f15IOuG52150@freefall.freebsd.org> Date: Mon, 5 Feb 2001 10:24:56 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24872: Update port: devel/jam to 2.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24872 >Category: ports >Synopsis: Update port: devel/jam to 2.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: Mon Feb 05 10:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 2.3 - Add WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/devel/jam/Makefile devel/jam/Makefile --- /usr/ports/devel/jam/Makefile Tue Jan 30 21:03:22 2001 +++ devel/jam/Makefile Thu Feb 1 22:10:53 2001 @@ -6,19 +6,20 @@ # PORTNAME= jam -PORTVERSION= 2.2 +PORTVERSION= 2.3 CATEGORIES= devel MASTER_SITES= ftp://ftp1.perforce.com/pub/jam/ -MAINTAINER= ports@freebsd.org +MAINTAINER= ports@FreeBSD.org -HTML_DOCS_DIR= ${PREFIX}/share/doc/jam -HTML_DOCS= Jam.html Jambase.html Jamfile.html Jamlang.html +NO_WRKSUBDIR= yes +USE_ZIP= yes do-install: - (cd ${WRKSRC}; \ - ./jam0 install; \ - ${MKDIR} ${HTML_DOCS_DIR}; \ - ${INSTALL_MAN} ${HTML_DOCS} ${HTML_DOCS_DIR}) + ${INSTALL_PROGRAM} ${WRKSRC}/bin.freebsd/jam ${PREFIX}/bin +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/jam + ${INSTALL_DATA} ${WRKSRC}/*.html ${PREFIX}/share/doc/jam +.endif .include diff -urN /usr/ports/devel/jam/distinfo devel/jam/distinfo --- /usr/ports/devel/jam/distinfo Sat Jul 11 11:40:50 1998 +++ devel/jam/distinfo Thu Feb 1 21:57:15 2001 @@ -1 +1 @@ -MD5 (jam-2.2.tar.gz) = f0eb074b076a864c14fbd929ccbc35e2 +MD5 (jam-2.3.zip) = 3eb37e221712f483d9b054d4cfafd49a diff -urN /usr/ports/devel/jam/files/patch-aa devel/jam/files/patch-aa --- /usr/ports/devel/jam/files/patch-aa Tue Jul 14 03:13:34 1998 +++ devel/jam/files/patch-aa Thu Feb 1 22:13:43 2001 @@ -1,6 +1,17 @@ ---- Makefile.0 Wed Nov 12 01:22:21 1997 -+++ Makefile Mon Jul 13 11:02:39 1998 -@@ -37,7 +37,7 @@ +--- Makefile.orig Thu Jan 4 16:53:08 2001 ++++ Makefile Thu Feb 1 22:13:36 2001 +@@ -1,8 +1,8 @@ + # Makefile for jam + +-CC = cc ++#CC = cc + TARGET = -o jam0 +-CFLAGS = ++#CFLAGS = + + # Special flavors - uncomment appropriate lines + +@@ -54,7 +54,7 @@ rules.c scan.c search.c timestamp.c variable.c all: jam0 diff -urN /usr/ports/devel/jam/pkg-descr devel/jam/pkg-descr --- /usr/ports/devel/jam/pkg-descr Sat Jul 11 11:40:50 1998 +++ devel/jam/pkg-descr Thu Feb 1 22:05:20 2001 @@ -2,3 +2,5 @@ Jam/MR is a build utility like make(1). It has its own expressive language which allows for portable Jamfiles capable of building large projects with multiple concurrent processes. + +WWW: http://www.perforce.com/jam/jam.html diff -urN /usr/ports/devel/jam/pkg-plist devel/jam/pkg-plist --- /usr/ports/devel/jam/pkg-plist Sat Jul 11 11:40:50 1998 +++ devel/jam/pkg-plist Thu Feb 1 22:10:04 2001 @@ -1,6 +1,5 @@ bin/jam -share/doc/jam/Jam.html -share/doc/jam/Jambase.html -share/doc/jam/Jamfile.html -share/doc/jam/Jamlang.html -@dirrm share/doc/jam +%%PORTDOCS%%share/doc/jam/Jam.html +%%PORTDOCS%%share/doc/jam/Jambase.html +%%PORTDOCS%%share/doc/jam/Jamfile.html +%%PORTDOCS%%@dirrm share/doc/jam >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 Feb 5 10:30:55 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0227737B684 for ; Mon, 5 Feb 2001 10:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IU1652729; Mon, 5 Feb 2001 10:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A42E137B401 for ; Mon, 5 Feb 2001 10:26:29 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IQTb52253; Mon, 5 Feb 2001 10:26:29 -0800 (PST) (envelope-from nobody) Message-Id: <200102051826.f15IQTb52253@freefall.freebsd.org> Date: Mon, 5 Feb 2001 10:26:29 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24874: Update port: editors/nvi-m17n Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24874 >Category: ports >Synopsis: Update port: editors/nvi-m17n >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 Feb 05 10:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Fix typo >How-To-Repeat: >Fix: diff -urN /usr/ports/editors/nvi-m17n/Makefile editors/nvi-m17n/Makefile --- /usr/ports/editors/nvi-m17n/Makefile Tue Jan 23 20:26:44 2001 +++ editors/nvi-m17n/Makefile Thu Feb 1 21:24:57 2001 @@ -7,7 +7,7 @@ PORTNAME= nvi PORTVERSION= 1.79.19991117 -PORTREVISON= 1 +PORTREVISION= 1 CATEGORIES?= editors MASTER_SITES= ftp://sleepy.vwh.net/pub/\ ftp://ftp.foretune.co.jp/pub/tools/nvi-m17n/ >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 Feb 5 10:31:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 32E9F37B69C for ; Mon, 5 Feb 2001 10:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IU2P52738; Mon, 5 Feb 2001 10:30:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AB3FB37B401 for ; Mon, 5 Feb 2001 10:27:13 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IRDB52362; Mon, 5 Feb 2001 10:27:13 -0800 (PST) (envelope-from nobody) Message-Id: <200102051827.f15IRDB52362@freefall.freebsd.org> Date: Mon, 5 Feb 2001 10:27:13 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24875: Update port: lang/Gofer to 2.30b Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24875 >Category: ports >Synopsis: Update port: lang/Gofer to 2.30b >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 Feb 05 10:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 2.30b - Add WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/lang/Gofer/Makefile lang/Gofer/Makefile --- /usr/ports/lang/Gofer/Makefile Tue Jan 30 21:08:02 2001 +++ lang/Gofer/Makefile Wed Jan 31 21:46:38 2001 @@ -6,10 +6,10 @@ # PORTNAME= gofer -PORTVERSION= 2.30a +PORTVERSION= 2.30b CATEGORIES= lang -MASTER_SITES= ftp://cs.nott.ac.uk/nott-fp/languages/haskell/gofer/ -DISTNAME= gofer230a +MASTER_SITES= http://www.cse.ogi.edu/~mpj/goferarc/ +DISTNAME= ${PORTNAME}${PORTVERSION:S/.//} MAINTAINER= ports@FreeBSD.org @@ -18,18 +18,20 @@ MAN1= gofer.1 do-install: - ${MKDIR} ${LIBDIR} + @${MKDIR} ${LIBDIR} ${INSTALL_DATA} ${WRKDIR}/*.prelude ${LIBDIR} ${INSTALL_DATA} ${WRKDIR}/src/prelude.h ${LIBDIR} ${INSTALL_DATA} ${WRKDIR}/src/gofc.h ${LIBDIR} - /usr/bin/perl -pi -e "s|#include \"prelude.h\"|#include \"${LIBDIR}/prelude.h\"|" ${LIBDIR}/gofc.h + ${PERL} -pi -e "s|#include \"prelude.h\"|#include \"${LIBDIR}/prelude.h\"|" ${LIBDIR}/gofc.h ${INSTALL_DATA} ${WRKDIR}/src/runtime.o ${LIBDIR} ${INSTALL_SCRIPT} ${WRKDIR}/scripts/gofer ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKDIR}/scripts/goferc ${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKDIR}/src/gofer ${LIBDIR} ${INSTALL_PROGRAM} ${WRKDIR}/src/gofc ${LIBDIR} ${INSTALL_MAN} ${WRKDIR}/docs/gofer.1 ${PREFIX}/man/man1 - ${MKDIR} ${LIBDIR}/docs - ${INSTALL_DATA} ${WRKDIR}/docs/* ${LIBDIR}/docs +.if !defined(NOPORTDOCS) + @${MKDIR} ${PREFIX}/share/doc/Gofer + ${INSTALL_DATA} ${WRKDIR}/docs/* ${PREFIX}/share/doc/Gofer +.endif .include diff -urN /usr/ports/lang/Gofer/distinfo lang/Gofer/distinfo --- /usr/ports/lang/Gofer/distinfo Wed Feb 8 18:41:12 1995 +++ lang/Gofer/distinfo Wed Jan 31 01:32:49 2001 @@ -1 +1 @@ -MD5 (gofer230a.tar.gz) = a020b6a9c446701f169e06eb535b76dc +MD5 (gofer230b.tar.gz) = 6914ba677359e860a869073fb0f02eac diff -urN /usr/ports/lang/Gofer/files/patch-aa lang/Gofer/files/patch-aa --- /usr/ports/lang/Gofer/files/patch-aa Wed Feb 8 18:41:11 1995 +++ lang/Gofer/files/patch-aa Wed Jan 31 01:39:31 2001 @@ -1,22 +1,18 @@ -*** Makefile.0 Thu Jun 23 09:00:00 1994 ---- Makefile Wed Feb 1 01:42:58 1995 -*************** -*** 24,32 **** - # below). - - CC = cc -! #CFLAGS = -DUSE_READLINE=1 -! CFLAGS = -! LDFLAGS = -lm - OPTFLAGS = -O - OPT1 = - #OPT1 = -O1 ---- 24,31 ---- - # below). - - CC = cc -! CFLAGS = -DUSE_READLINE=1 -! LDFLAGS = -lm -lreadline - OPTFLAGS = -O - OPT1 = - #OPT1 = -O1 +--- Makefile.orig Fri Mar 31 01:02:20 1995 ++++ Makefile Wed Jan 31 01:39:22 2001 +@@ -23,11 +23,10 @@ + # as you use to build the file runtime.o (as specified by the CC macro + # below). + +-CC = cc +-#CFLAGS = -DUSE_READLINE=1 +-CFLAGS = +-LDFLAGS = -lm +-OPTFLAGS = -O ++CC ?= cc ++CFLAGS += -DUSE_READLINE=1 ++LDFLAGS = -lm -lreadline ++#OPTFLAGS = -O + OPT1 = + #OPT1 = -O1 + diff -urN /usr/ports/lang/Gofer/files/patch-ab lang/Gofer/files/patch-ab --- /usr/ports/lang/Gofer/files/patch-ab Wed Feb 8 18:41:11 1995 +++ lang/Gofer/files/patch-ab Wed Jan 31 01:41:40 2001 @@ -1,79 +1,46 @@ -*** prelude.h.0 Thu Jun 23 09:00:00 1994 ---- prelude.h Tue Jan 31 16:17:47 1995 -*************** -*** 30,40 **** - #define OS2 0 /* For IBM OS/2 2.0 using EMX GCC */ - #define SUNOS 0 /* For Sun 3/Sun 4 running SunOs 4.x */ - #define MIPS 0 /* For MIPS RC6280/Sony machine NWS-3870 UN */ -! #define NEXTSTEP 1 /* For NeXTstep 3.0 using NeXT cc */ - #define NEXTGCC 0 /* For NeXTstep with gcc 2.x, doesn't work w/ NS3.2*/ - #define MINIX68K 0 /* For Minix68k with gcc UN */ - #define AMIGA 0 /* For Amiga using gcc 2.2.2 UN */ - #define HPUX 0 /* For HPUX using gcc */ - #define LINUX 0 /* For Linux using gcc UN */ - #define RISCOS 0 /* For Acorn DesktopC and RISCOS2 or 3 */ - #define ALPHA 0 /* For DEC Alpha with OSF/1 (32 bit ints, no gofc) */ ---- 30,41 ---- - #define OS2 0 /* For IBM OS/2 2.0 using EMX GCC */ - #define SUNOS 0 /* For Sun 3/Sun 4 running SunOs 4.x */ - #define MIPS 0 /* For MIPS RC6280/Sony machine NWS-3870 UN */ -! #define NEXTSTEP 0 /* For NeXTstep 3.0 using NeXT cc */ - #define NEXTGCC 0 /* For NeXTstep with gcc 2.x, doesn't work w/ NS3.2*/ - #define MINIX68K 0 /* For Minix68k with gcc UN */ - #define AMIGA 0 /* For Amiga using gcc 2.2.2 UN */ - #define HPUX 0 /* For HPUX using gcc */ -+ #define FREEBSD 1 /* For FreeBSD using gcc */ - #define LINUX 0 /* For Linux using gcc UN */ - #define RISCOS 0 /* For Acorn DesktopC and RISCOS2 or 3 */ - #define ALPHA 0 /* For DEC Alpha with OSF/1 (32 bit ints, no gofc) */ -*************** -*** 82,88 **** - - #define UNIX (SUNOS | NEXTSTEP | HPUX | NEXTGCC | LINUX | AMIGA | \ - MINIX68K | ALPHA | OS2 | SVR4 | ULTRIX | AIX | MIPS |\ -! SGI4 | NETBSD) - #define SMALL_GOFER (TURBOC | BCC) - #define REGULAR_GOFER (RISCOS | DJGPP | ZTC | ATARI) - #define LARGE_GOFER (UNIX | WATCOM) ---- 83,89 ---- - - #define UNIX (SUNOS | NEXTSTEP | HPUX | NEXTGCC | LINUX | AMIGA | \ - MINIX68K | ALPHA | OS2 | SVR4 | ULTRIX | AIX | MIPS |\ -! SGI4 | NETBSD | FREEBSD) - #define SMALL_GOFER (TURBOC | BCC) - #define REGULAR_GOFER (RISCOS | DJGPP | ZTC | ATARI) - #define LARGE_GOFER (UNIX | WATCOM) -*************** -*** 91,97 **** - #define TERMIO_IO (LINUX | HPUX | OS2 | SVR4 | SGI4) - #define SGTTY_IO (SUNOS | NEXTSTEP | NEXTGCC | AMIGA | MINIX68K | \ - ALPHA | ULTRIX | AIX | MIPS) -! #define TERMIOS_IO (NETBSD) - #define BREAK_FLOATS (TURBOC | BCC) - #define HAS_FLOATS (REGULAR_GOFER | LARGE_GOFER | BREAK_FLOATS) - ---- 92,98 ---- - #define TERMIO_IO (LINUX | HPUX | OS2 | SVR4 | SGI4) - #define SGTTY_IO (SUNOS | NEXTSTEP | NEXTGCC | AMIGA | MINIX68K | \ - ALPHA | ULTRIX | AIX | MIPS) -! #define TERMIOS_IO (NETBSD | FREEBSD) - #define BREAK_FLOATS (TURBOC | BCC) - #define HAS_FLOATS (REGULAR_GOFER | LARGE_GOFER | BREAK_FLOATS) - -*************** -*** 202,208 **** - #define farCalloc(n,s) (Void *)valloc(((unsigned)n)*((unsigned)s)) - #endif - -! #if (HPUX | DJGPP | ZTC | LINUX | ALPHA | OS2 | SVR4 | AIX | SGI4 | NETBSD) - #include - #define far - #endif ---- 203,209 ---- - #define farCalloc(n,s) (Void *)valloc(((unsigned)n)*((unsigned)s)) - #endif - -! #if (HPUX | DJGPP | ZTC | LINUX | ALPHA | OS2 | SVR4 | AIX | SGI4 | NETBSD | FREEBSD) - #include - #define far - #endif +--- prelude.h.orig Fri Mar 31 19:13:52 1995 ++++ prelude.h Wed Jan 31 01:41:35 2001 +@@ -28,7 +28,7 @@ + #define ZTC 0 /* For IBM PC (>= 386) Zortech C++ v3.0 (-mx) */ + #define DJGPP 0 /* For DJGPP version 1.09 (gcc2.2.2) and DOS 5.0 */ + #define OS2 0 /* For IBM OS/2 2.0 using EMX GCC */ +-#define SUNOS 1 /* For Sun 3/Sun 4 running SunOs 4.x */ ++#define SUNOS 0 /* For Sun 3/Sun 4 running SunOs 4.x */ + #define MIPS 0 /* For MIPS RC6280/Sony machine NWS-3870 UN */ + #define NEXTSTEP 0 /* For NeXTstep 3.0 using NeXT cc */ + #define NEXTGCC 0 /* For NeXTstep with gcc 2.x, doesn't work w/ NS3.2*/ +@@ -36,6 +36,7 @@ + #define AMIGA 0 /* For Amiga using gcc 2.2.2 UN */ + #define HPUX 0 /* For HPUX using gcc */ + #define LINUX 0 /* For Linux using gcc UN */ ++#define FREEBSD 1 /* For FreeBSD using gcc UN */ + #define RISCOS 0 /* For Acorn DesktopC and RISCOS2 or 3 */ + #define ALPHA 0 /* For DEC Alpha with OSF/1 (32 bit ints, no gofc) */ + #define SVR4 0 /* For SVR4 using GCC2.2 */ +@@ -82,7 +83,7 @@ + + #define UNIX (SUNOS | NEXTSTEP | HPUX | NEXTGCC | LINUX | AMIGA | \ + MINIX68K | ALPHA | OS2 | SVR4 | ULTRIX | AIX | MIPS |\ +- SGI4 | NETBSD) ++ SGI4 | NETBSD | FREEBSD) + #define SMALL_GOFER (TURBOC | BCC) + #define REGULAR_GOFER (RISCOS | DJGPP | ZTC | ATARI) + #define LARGE_GOFER (UNIX | WATCOM) +@@ -91,7 +92,7 @@ + #define TERMIO_IO (LINUX | HPUX | OS2 | SVR4 | SGI4) + #define SGTTY_IO (SUNOS | NEXTSTEP | NEXTGCC | AMIGA | MINIX68K | \ + ALPHA | ULTRIX | AIX | MIPS) +-#define TERMIOS_IO (NETBSD) ++#define TERMIOS_IO (NETBSD | FREEBSD) + #define BREAK_FLOATS (TURBOC | BCC) + #define HAS_FLOATS (REGULAR_GOFER | LARGE_GOFER | BREAK_FLOATS) + +@@ -202,7 +203,7 @@ + #define farCalloc(n,s) (Void *)valloc(((unsigned)n)*((unsigned)s)) + #endif + +-#if (HPUX | DJGPP | ZTC | LINUX | ALPHA | OS2 | SVR4 | AIX | SGI4 | NETBSD) ++#if (HPUX | DJGPP | ZTC | LINUX | ALPHA | OS2 | SVR4 | AIX | SGI4 | NETBSD | FREEBSD) + #include + #define far + #endif diff -urN /usr/ports/lang/Gofer/files/patch-ac lang/Gofer/files/patch-ac --- /usr/ports/lang/Gofer/files/patch-ac Sun Feb 12 11:56:22 1995 +++ lang/Gofer/files/patch-ac Wed Jan 31 01:45:32 2001 @@ -1,36 +1,23 @@ -*** ../scripts/gofer.0 Thu Jun 23 16:00:00 1994 ---- ../scripts/gofer Wed Feb 8 01:16:55 1995 -*************** -*** 9,18 **** - # Edited by Jonathan Bowen, Oxford University, August 1993 - - # Location of gofer files - site specific -! ROOT=/usr/local/gofer - - # first, the location of your prelude file: -! GOFER=${GOFER-$ROOT/lib/standard.prelude} - export GOFER - - # next, command line argument settings. One example might be: ---- 9,18 ---- - # Edited by Jonathan Bowen, Oxford University, August 1993 - - # Location of gofer files - site specific -! ROOT=/usr/local/lib/Gofer - - # first, the location of your prelude file: -! GOFER=${GOFER-$ROOT/standard.prelude} - export GOFER - - # next, command line argument settings. One example might be: -*************** -*** 34,37 **** - - # Finally, start the interpreter running: - # exec /usr/local/lib/Gofer/gofer $GOFERARGS $* -! exec $ROOT/bin/Gofer $GOFERARGS $* ---- 34,37 ---- - - # Finally, start the interpreter running: - # exec /usr/local/lib/Gofer/gofer $GOFERARGS $* -! exec $ROOT/gofer $GOFERARGS $* +--- ../scripts/gofer.orig Fri Jun 24 01:00:00 1994 ++++ ../scripts/gofer Wed Jan 31 01:45:21 2001 +@@ -9,10 +9,10 @@ + # Edited by Jonathan Bowen, Oxford University, August 1993 + + # Location of gofer files - site specific +-ROOT=/usr/local/gofer ++ROOT=%%PREFIX%%/lib/Gofer + + # first, the location of your prelude file: +-GOFER=${GOFER-$ROOT/lib/standard.prelude} ++GOFER=${GOFER-$ROOT/standard.prelude} + export GOFER + + # next, command line argument settings. One example might be: +@@ -33,5 +33,5 @@ + esac + + # Finally, start the interpreter running: +-# exec /usr/local/lib/Gofer/gofer $GOFERARGS $* +-exec $ROOT/bin/Gofer $GOFERARGS $* ++# exec %%PREFIX%%/lib/Gofer/gofer $GOFERARGS $* ++exec $ROOT/gofer $GOFERARGS $* diff -urN /usr/ports/lang/Gofer/files/patch-ad lang/Gofer/files/patch-ad --- /usr/ports/lang/Gofer/files/patch-ad Sun Feb 12 11:56:23 1995 +++ lang/Gofer/files/patch-ad Wed Jan 31 01:44:37 2001 @@ -1,26 +1,17 @@ -*** ../scripts/goferc.0 Thu Jun 23 16:00:00 1994 ---- ../scripts/goferc Wed Feb 8 01:12:53 1995 -*************** -*** 29,39 **** - ;; - esac - -! GOFER=/home/staff/ian/gofer/lib/standard.prelude - export GOFER - /usr/local/lib/Gofer/gofc $args - echo '[Compiling with gcc]' - gcc -o $prog -O $prog.c /usr/local/lib/Gofer/runtime.o -lm - strip $prog - rm $prog.c -- ---- 29,38 ---- - ;; - esac - -! GOFER=/usr/local/lib/Gofer/standard.prelude - export GOFER - /usr/local/lib/Gofer/gofc $args - echo '[Compiling with gcc]' - gcc -o $prog -O $prog.c /usr/local/lib/Gofer/runtime.o -lm - strip $prog - rm $prog.c +--- ../scripts/goferc.orig Fri Jun 24 01:00:00 1994 ++++ ../scripts/goferc Wed Jan 31 01:44:26 2001 +@@ -29,11 +29,10 @@ + ;; + esac + +-GOFER=/home/staff/ian/gofer/lib/standard.prelude ++GOFER=%%PREFIX%%/lib/Gofer/standard.prelude + export GOFER +-/usr/local/lib/Gofer/gofc $args ++%%PREFIX%%/lib/Gofer/gofc $args + echo '[Compiling with gcc]' +-gcc -o $prog -O $prog.c /usr/local/lib/Gofer/runtime.o -lm ++%%CC%% -o $prog %%CFLAGS%% $prog.c %%PREFIX%%/lib/Gofer/runtime.o -lm + strip $prog + rm $prog.c +- diff -urN /usr/ports/lang/Gofer/pkg-descr lang/Gofer/pkg-descr --- /usr/ports/lang/Gofer/pkg-descr Wed Feb 8 18:41:13 1995 +++ lang/Gofer/pkg-descr Wed Jan 31 01:32:35 2001 @@ -1,52 +1,10 @@ ------------------------------------------------------------------------------ -Gofer 2.28 is an interactive functional programming environment (i.e. an +Gofer is an interactive functional programming environment (i.e. an interpreter) supporting a language based on the draft report for Haskell -version 1.2, including the following features: - - o Lazy evaluation, higher order functions, pattern matching etc... - - o Wide range of built-in types with provision for defining new free - datatypes and type synonyms. - - o Polymorphic type system with provision for overloading based on - a system of type classes. - - o Full Haskell 1.2 expression and pattern syntax including lambda, - case, conditional and let expressions, list comprehensions, operator - sections, and wildcard, as and irrefutable patterns. - - o Partial implementation of Haskell 1.2 facilities for I/O, enabling - the use of simple interactive programs and programs reading and writing - text files. - - o User documentation, sample programs and source code freely available. - - o Supports constructor classes and overloaded monad comprehensions. - - o Simple minded compiler/translator Gofer -> C with runtime system for - generation of standalone applications. - - o Runs (and originally developed) on PC compatible computers, but - also works on Sun workstations. Code should be portable to many - other kinds of machine. +version 1.2. Gofer is intended as an experimental language, particularly where type classes -are involved. Gofer extends the Haskell type class system in several ways: - - o Type classes with multiple parameters are supported. - - o Instances of type classes may be defined non-overlapping, but otherwise - arbitrary types. - - o Predicates in contexts may involve arbitrary type expressions, not just - type variables as in Haskell. - - o Basic approach to dictionary construction is different, based on the - approach I described in a posting to the Haskell mailing list early in - Feburary 1991. The resulting system ensures that all dictionaries are - constructed before evaluation begins, avoiding repeated construction - and enabling the shared evaluation of overloaded constants in - dictionaries. +are involved. Gofer extends the Haskell type class system in several ways. The most significant features of Haskell not currently supported are: modules, arrays, overloaded numeric constants, default declarations, derived @@ -59,3 +17,5 @@ private correspondence, or other documents without restriction or obligation. ------------------------------------------------------------------------------ + +WWW: http://www.cse.ogi.edu/~mpj/goferarc/ diff -urN /usr/ports/lang/Gofer/pkg-plist lang/Gofer/pkg-plist --- /usr/ports/lang/Gofer/pkg-plist Wed Aug 19 03:33:10 1998 +++ lang/Gofer/pkg-plist Wed Jan 31 21:32:38 2001 @@ -10,39 +10,39 @@ lib/Gofer/runtime.o lib/Gofer/gofer lib/Gofer/gofc -lib/Gofer/docs/Readme -lib/Gofer/docs/appx_a -lib/Gofer/docs/appx_b -lib/Gofer/docs/appx_c -lib/Gofer/docs/appx_d -lib/Gofer/docs/appx_e -lib/Gofer/docs/appx_f -lib/Gofer/docs/appx_g -lib/Gofer/docs/bowen.1 -lib/Gofer/docs/ch00 -lib/Gofer/docs/ch01 -lib/Gofer/docs/ch02 -lib/Gofer/docs/ch03 -lib/Gofer/docs/ch04 -lib/Gofer/docs/ch05 -lib/Gofer/docs/ch06 -lib/Gofer/docs/ch07 -lib/Gofer/docs/ch08 -lib/Gofer/docs/ch09 -lib/Gofer/docs/ch10 -lib/Gofer/docs/ch11 -lib/Gofer/docs/ch12 -lib/Gofer/docs/ch13 -lib/Gofer/docs/ch14 -lib/Gofer/docs/gofer.1 -lib/Gofer/docs/gofer.c -lib/Gofer/docs/goferdoc.tex -lib/Gofer/docs/hype -lib/Gofer/docs/jeroen.1 -lib/Gofer/docs/rel221.tex -lib/Gofer/docs/rel228.tex -lib/Gofer/docs/release.221 -lib/Gofer/docs/release.228 -lib/Gofer/docs/release.230 -@dirrm lib/Gofer/docs +%%PORTDOCS%%share/doc/Gofer/Readme +%%PORTDOCS%%share/doc/Gofer/appx_a +%%PORTDOCS%%share/doc/Gofer/appx_b +%%PORTDOCS%%share/doc/Gofer/appx_c +%%PORTDOCS%%share/doc/Gofer/appx_d +%%PORTDOCS%%share/doc/Gofer/appx_e +%%PORTDOCS%%share/doc/Gofer/appx_f +%%PORTDOCS%%share/doc/Gofer/appx_g +%%PORTDOCS%%share/doc/Gofer/bowen.1 +%%PORTDOCS%%share/doc/Gofer/ch00 +%%PORTDOCS%%share/doc/Gofer/ch01 +%%PORTDOCS%%share/doc/Gofer/ch02 +%%PORTDOCS%%share/doc/Gofer/ch03 +%%PORTDOCS%%share/doc/Gofer/ch04 +%%PORTDOCS%%share/doc/Gofer/ch05 +%%PORTDOCS%%share/doc/Gofer/ch06 +%%PORTDOCS%%share/doc/Gofer/ch07 +%%PORTDOCS%%share/doc/Gofer/ch08 +%%PORTDOCS%%share/doc/Gofer/ch09 +%%PORTDOCS%%share/doc/Gofer/ch10 +%%PORTDOCS%%share/doc/Gofer/ch11 +%%PORTDOCS%%share/doc/Gofer/ch12 +%%PORTDOCS%%share/doc/Gofer/ch13 +%%PORTDOCS%%share/doc/Gofer/ch14 +%%PORTDOCS%%share/doc/Gofer/gofer.1 +%%PORTDOCS%%share/doc/Gofer/gofer.c +%%PORTDOCS%%share/doc/Gofer/goferdoc.tex +%%PORTDOCS%%share/doc/Gofer/hype +%%PORTDOCS%%share/doc/Gofer/jeroen.1 +%%PORTDOCS%%share/doc/Gofer/rel221.tex +%%PORTDOCS%%share/doc/Gofer/rel228.tex +%%PORTDOCS%%share/doc/Gofer/release.221 +%%PORTDOCS%%share/doc/Gofer/release.228 +%%PORTDOCS%%share/doc/Gofer/release.230 +%%PORTDOCS%%@dirrm share/doc/Gofer @dirrm lib/Gofer >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 Feb 5 10:31:31 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5EDC037B4EC for ; Mon, 5 Feb 2001 10:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IU2r52747; Mon, 5 Feb 2001 10:30:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2169737B6F4 for ; Mon, 5 Feb 2001 10:28:01 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IS0D52486; Mon, 5 Feb 2001 10:28:00 -0800 (PST) (envelope-from nobody) Message-Id: <200102051828.f15IS0D52486@freefall.freebsd.org> Date: Mon, 5 Feb 2001 10:28:00 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24876: Update port: mail/nail to 9.25 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24876 >Category: ports >Synopsis: Update port: mail/nail to 9.25 >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 Feb 05 10:30:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 9.25 - Add WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/mail/nail/Makefile mail/nail/Makefile --- /usr/ports/mail/nail/Makefile Mon Jan 15 21:23:21 2001 +++ mail/nail/Makefile Thu Feb 1 01:45:45 2001 @@ -6,7 +6,7 @@ # PORTNAME= nail -PORTVERSION= 9.23 +PORTVERSION= 9.25 CATEGORIES= mail MASTER_SITES= http://omnibus.ruf.uni-freiburg.de/~gritter/archive/nail/ diff -urN /usr/ports/mail/nail/distinfo mail/nail/distinfo --- /usr/ports/mail/nail/distinfo Mon Jan 15 21:23:26 2001 +++ mail/nail/distinfo Thu Feb 1 01:47:31 2001 @@ -1 +1 @@ -MD5 (nail-9.23.tar.gz) = 275573f67597632d14c36001a5e3345e +MD5 (nail-9.25.tar.gz) = 82127b577bc66298085181499250d93c diff -urN /usr/ports/mail/nail/files/patch-aa mail/nail/files/patch-aa --- /usr/ports/mail/nail/files/patch-aa Sun Jan 14 17:02:36 2001 +++ mail/nail/files/patch-aa Thu Feb 1 01:51:34 2001 @@ -1,9 +1,9 @@ ---- mime.c.orig Fri Dec 29 14:32:43 2000 -+++ mime.c Fri Dec 29 14:32:57 2000 -@@ -150,7 +150,7 @@ - if ((wl = mbstowcs(w, t, LINESIZE)) == -1) +--- mime.c.orig Thu Jan 25 08:36:11 2001 ++++ mime.c Thu Feb 1 01:50:57 2001 +@@ -179,7 +179,7 @@ + if ((sz = xmbstowcs(w, t, LINESIZE)) == -1) return; - for (p = w, i = 0; *p && i < wl; p++, i++) { + for (p = w, i = 0; *p && i < sz; p++, i++) { - if (!iswprint(*p) && *p != '\n' && *p != '\r' + if (!isprint(*p) && *p != '\n' && *p != '\r' && *p != '\b' && *p != '\t') diff -urN /usr/ports/mail/nail/pkg-descr mail/nail/pkg-descr --- /usr/ports/mail/nail/pkg-descr Sat Oct 21 08:00:58 2000 +++ mail/nail/pkg-descr Thu Feb 1 01:46:17 2001 @@ -1 +1,3 @@ BSD mail utility with MIME extensions + +WWW: http://omnibus.ruf.uni-freiburg.de/~gritter/ >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 Feb 5 10:31:47 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8EF9037B491 for ; Mon, 5 Feb 2001 10:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IU2V52756; Mon, 5 Feb 2001 10:30:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B67C937B401 for ; Mon, 5 Feb 2001 10:28:41 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15ISfw52551; Mon, 5 Feb 2001 10:28:41 -0800 (PST) (envelope-from nobody) Message-Id: <200102051828.f15ISfw52551@freefall.freebsd.org> Date: Mon, 5 Feb 2001 10:28:41 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24877: Update port: net/ksamba to 0.3.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24877 >Category: ports >Synopsis: Update port: net/ksamba to 0.3.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 Feb 05 10:30:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.3.4 - Add WWW: line New file: files/patch-ac files/patch-ad >How-To-Repeat: >Fix: diff -urN /usr/ports/net/ksamba/Makefile net/ksamba/Makefile --- /usr/ports/net/ksamba/Makefile Mon Jan 22 20:29:23 2001 +++ net/ksamba/Makefile Thu Feb 1 22:11:17 2001 @@ -6,20 +6,27 @@ # PORTNAME= ksamba -PORTVERSION= 0.3.3 +PORTVERSION= 0.3.4 CATEGORIES= net kde -MASTER_SITES= $(MASTER_SITE_KDE) -MASTER_SITE_SUBDIR= unstable/apps/network +MASTER_SITES= ${MASTER_SITE_KDE} \ + http://www.kneschke.de/projekte/ksamba/download/ +MASTER_SITE_SUBDIR= unstable/apps/network -LIB_DEPENDS= kdecore.3:${PORTSDIR}/x11/kdelibs11 \ - kdeui.3:${PORTSDIR}/x11/kdelibs11 \ - kfm.3:${PORTSDIR}/x11/kdelibs11 \ - kfile.3:${PORTSDIR}/x11/kdelibs11 +BUILD_DEPENDS= msgfmt:${PORTSDIR}/devel/gettext +LIB_DEPENDS= kdecore.3:${PORTSDIR}/x11/kdelibs11 USE_QT= yes -GNU_CONFIGURE= yes USE_GMAKE= yes -CONFIGURE_ENV= CXXFLAGS="$(CFLAGS)" \ - INSTALL_SCRIPT="install -c -m 555" +USE_AUTOMAKE= yes +CONFIGURE_ENV= QTDIR="${X11BASE}" KDEDIR="${LOCALBASE}" \ + MOC="${X11BASE}/bin/moc" +CONFIGURE_ARGS= --with-qt-includes=${X11BASE}/include/X11/qt + +post-extract: + @${RM} -f ${WRKSRC}/config.cache + @${RM} -f ${WRKSRC}/ksamba/*.moc + +post-patch: + @cd ${WRKSRC} && aclocal .include diff -urN /usr/ports/net/ksamba/distinfo net/ksamba/distinfo --- /usr/ports/net/ksamba/distinfo Fri Jun 12 17:36:22 1998 +++ net/ksamba/distinfo Wed Jan 31 22:32:41 2001 @@ -1 +1 @@ -MD5 (ksamba-0.3.3.tar.gz) = b831c0932cf6e88ded6944c9284f80fa +MD5 (ksamba-0.3.4.tar.gz) = 370ee880e7ea043536ef297cf3943e1f diff -urN /usr/ports/net/ksamba/files/patch-ac net/ksamba/files/patch-ac --- /usr/ports/net/ksamba/files/patch-ac Thu Jan 1 09:00:00 1970 +++ net/ksamba/files/patch-ac Thu Feb 1 21:41:51 2001 @@ -0,0 +1,20 @@ +--- configure.in.orig Tue Oct 19 17:06:17 1999 ++++ configure.in Thu Feb 1 21:41:32 2001 +@@ -44,7 +44,6 @@ + AC_PATH_KDE dnl check X, Qt and KDE + AC_CHECK_LIB(compat, main, [LIBCOMPAT="-lcompat"]) dnl for FreeBSD + AC_SUBST(LIBCOMPAT) +-AC_FIND_GIF dnl only needed, if you need gif, but doesn't hurt + AC_FIND_JPEG dnl only needed, if you need jpeg, but doesn't hurt + + AC_CHECK_RPATH +@@ -74,4 +73,9 @@ + dnl add here all your Makefiles + AC_OUTPUT(Makefile \ + ksamba/Makefile \ ++ ksamba/doc/Makefile \ ++ ksamba/doc/de/Makefile \ ++ ksamba/doc/en/Makefile \ ++ ksamba/pics/Makefile \ ++ ksamba/pics/icons/Makefile \ + po/Makefile) diff -urN /usr/ports/net/ksamba/files/patch-ad net/ksamba/files/patch-ad --- /usr/ports/net/ksamba/files/patch-ad Thu Jan 1 09:00:00 1970 +++ net/ksamba/files/patch-ad Thu Feb 1 22:16:13 2001 @@ -0,0 +1,13 @@ +--- ksamba/Makefile.am.orig Tue Oct 19 16:53:55 1999 ++++ ksamba/Makefile.am Thu Feb 1 22:16:01 2001 +@@ -208,10 +208,6 @@ + newserviceData.moc:newserviceData.h + $(MOC) newserviceData.h -o newserviceData.moc + +-install-data-local: +- $(mkinstalldirs) $(APPSDIR) +- $(INSTALL_DATA) ksamba.kdelnk $(APPSDIR) +- + + + diff -urN /usr/ports/net/ksamba/pkg-descr net/ksamba/pkg-descr --- /usr/ports/net/ksamba/pkg-descr Fri Jun 12 17:36:22 1998 +++ net/ksamba/pkg-descr Wed Jan 31 22:30:05 2001 @@ -1 +1,3 @@ KDE/Q program to setup/configure samba + +WWW: http://www.kneschke.de/projekte/ksamba/ diff -urN /usr/ports/net/ksamba/pkg-plist net/ksamba/pkg-plist --- /usr/ports/net/ksamba/pkg-plist Fri Jun 12 17:36:22 1998 +++ net/ksamba/pkg-plist Thu Feb 1 01:01:38 2001 @@ -1,16 +1,17 @@ bin/ksamba -share/apps/ksamba/pics/pageadd.xpm -share/apps/ksamba/pics/pageremove.xpm +share/applnk/Utilities/ksamba.kdelnk share/apps/ksamba/pics/folder.xpm share/apps/ksamba/pics/folder_inactive.xpm +share/apps/ksamba/pics/pageadd.xpm +share/apps/ksamba/pics/pageremove.xpm share/apps/ksamba/pics/printer.xpm share/apps/ksamba/pics/printer_inactive.xpm -share/doc/HTML/en/ksamba/index.html share/doc/HTML/de/ksamba/index.html -share/locale/de/LC_MESSAGES/ksamba.mo +share/doc/HTML/en/ksamba/index.html share/icons/ksamba.xpm -share/applnk/Network/ksamba.kdelnk -@dirrm share/apps/ksamba/pics -@dirrm share/apps/ksamba +share/locale/de/LC_MESSAGES/ksamba.mo +share/locale/hr/LC_MESSAGES/ksamba.mo @dirrm share/doc/HTML/en/ksamba @dirrm share/doc/HTML/de/ksamba +@dirrm share/apps/ksamba/pics +@dirrm share/apps/ksamba >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 Feb 5 10:32: 6 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AA8CC37B69B for ; Mon, 5 Feb 2001 10:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IU2252765; Mon, 5 Feb 2001 10:30:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EDDE337B401 for ; Mon, 5 Feb 2001 10:29:24 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15ITOD52626; Mon, 5 Feb 2001 10:29:24 -0800 (PST) (envelope-from nobody) Message-Id: <200102051829.f15ITOD52626@freefall.freebsd.org> Date: Mon, 5 Feb 2001 10:29:24 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24878: Update port: net/mrt to 2.2.2a Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24878 >Category: ports >Synopsis: Update port: net/mrt to 2.2.2a >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 Feb 05 10:30:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 2.2.2a >How-To-Repeat: >Fix: diff -urN /usr/ports/net/mrt/Makefile net/mrt/Makefile --- /usr/ports/net/mrt/Makefile Wed Jan 10 05:29:31 2001 +++ net/mrt/Makefile Fri Feb 2 00:12:21 2001 @@ -6,32 +6,29 @@ # PORTNAME= mrt -PORTVERSION= 2.1.2a +PORTVERSION= 2.2.2a CATEGORIES= net ipv6 -MASTER_SITES= ftp://ftp.merit.edu/net-research/mrt/ \ - ftp://ftp.merit.edu/net-research/mrt/old_versions/ -DISTNAME= mrt-${PORTVERSION}-src +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} + ftp://ftp.merit.edu/net-research/mrt/ +MASTER_SITE_SUBDIR= ${PORTNAME} +DISTNAME= ${PORTNAME}-${PORTVERSION}-src -MAINTAINER= ports@freebsd.org +MAINTAINER= ports@FreeBSD.org + +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/src -WRKSRC= ${WRKDIR}/mrt-${VERBASE}/src -GNU_CONFIGURE= yes USE_AUTOCONF= yes -VERBASE= 2.1.2a +MAN8= mrtd.8 -MAN8= mrtd.8 EXAMPLES= programs/bgpsim/bgpsim.conf programs/bgpsim/bgpsim6.conf \ - programs/mrtd/mrtd.conf programs/mrtd/mrtd.ripng.conf \ - programs/mrtd/solaris.ripng.conf - -#post-extract: -# (${CHDIR} ${WRKSRC}/..; ./make-sym-links kame) + programs/mrtd/mrtd.conf programs/mrtd/mrtd.pim.conf \ + programs/mrtd/mrtd.ripng.conf programs/mrtd/solaris.ripng.conf post-install: - ${MKDIR} ${PREFIX}/share/examples/mrt - for i in ${EXAMPLES}; do \ - ${INSTALL_DATA} ${WRKSRC}/$$i ${PREFIX}/share/examples/mrt; \ - done + @${MKDIR} ${PREFIX}/share/examples/mrt +.for file in ${EXAMPLES} + ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/examples/mrt +.endfor .include diff -urN /usr/ports/net/mrt/distinfo net/mrt/distinfo --- /usr/ports/net/mrt/distinfo Wed Jan 12 04:53:24 2000 +++ net/mrt/distinfo Thu Feb 1 05:08:19 2001 @@ -1 +1 @@ -MD5 (mrt-2.1.2a-src.tar.gz) = 7973eb65900107b2b79bf7428be39344 +MD5 (mrt-2.2.2a-src.tar.gz) = 58387903e592cab68b703edddb6b418c diff -urN /usr/ports/net/mrt/files/patch-ae net/mrt/files/patch-ae --- /usr/ports/net/mrt/files/patch-ae Wed Jan 12 04:53:25 2000 +++ net/mrt/files/patch-ae Thu Feb 1 06:01:33 2001 @@ -1,17 +1,17 @@ ---- configure.in- Tue Jan 11 10:30:49 2000 -+++ configure.in Tue Jan 11 14:38:08 2000 -@@ -549,10 +549,12 @@ +--- configure.in.orig Sat Jan 15 23:11:53 2000 ++++ configure.in Thu Feb 1 05:16:05 2001 +@@ -555,10 +555,12 @@ #ifdef __KAME__ yes #endif -], [ LIBS="$LIBS -L/usr/local/v6/lib -linet6" -+], [ AC_FILE_EXIST(/usr/local/v6/lib/libinet6.a, [ ++], [ AC_FILE_EXIST(/usr/local/v6/lib/libinet6.a, [ + LIBS="$LIBS -L/usr/local/v6/lib -linet6"]); + AC_FILE_EXIST(/usr/include/netinet6/ip6_mroute.h, [ + AC_DEFINE(HAVE_MROUTING6)]); AC_DEFINE(WIDE_IPV6) AC_DEFINE(RFC2292) - AC_DEFINE(HAVE_MROUTING6) + dnl KAME's netinet/ip6.h can not be detected due to error + AC_DEFINE(HAVE_NETINET_IP6_H) AC_MSG_RESULT(yes... KAME IPv6)], - AC_MSG_RESULT(*unknown*)))) - ;; diff -urN /usr/ports/net/mrt/pkg-descr net/mrt/pkg-descr --- /usr/ports/net/mrt/pkg-descr Mon Aug 30 23:23:19 1999 +++ net/mrt/pkg-descr Fri Feb 2 00:10:18 2001 @@ -8,7 +8,8 @@ (NCR-9710176 and NCR-9318902), and a gift from Intel Corporation. Documentation and an installation guide for the MRT toolkit is -available online at -WWW: http://www.merit.edu/~mrt/mrt_doc +available online at http://www.merit.edu/~mrt/mrt_doc/ Send email to mrt-support@merit.edu for assistence/bugs/comments. + +WWW: http://www.merit.edu/~mrt/ diff -urN /usr/ports/net/mrt/pkg-plist net/mrt/pkg-plist --- /usr/ports/net/mrt/pkg-plist Tue Jan 5 18:45:25 1999 +++ net/mrt/pkg-plist Thu Feb 1 05:24:02 2001 @@ -6,6 +6,7 @@ share/examples/mrt/bgpsim.conf share/examples/mrt/bgpsim6.conf share/examples/mrt/mrtd.conf +share/examples/mrt/mrtd.pim.conf share/examples/mrt/mrtd.ripng.conf share/examples/mrt/solaris.ripng.conf @dirrm share/examples/mrt >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 Feb 5 10:40:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B42137B698 for ; Mon, 5 Feb 2001 10:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15Ie0S53791; Mon, 5 Feb 2001 10:40:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FE1737B503 for ; Mon, 5 Feb 2001 10:30:05 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IU5Y52770; Mon, 5 Feb 2001 10:30:05 -0800 (PST) (envelope-from nobody) Message-Id: <200102051830.f15IU5Y52770@freefall.freebsd.org> Date: Mon, 5 Feb 2001 10:30:05 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24879: Update port: print/dvi2tty Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24879 >Category: ports >Synopsis: Update port: print/dvi2tty >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 Feb 05 10:40:00 PST 2001 >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/dvi2tty/Makefile print/dvi2tty/Makefile --- /usr/ports/print/dvi2tty/Makefile Mon Oct 30 23:49:50 2000 +++ print/dvi2tty/Makefile Fri Feb 2 05:24:42 2001 @@ -8,10 +8,11 @@ PORTNAME= dvi2tty PORTVERSION= 1.0 CATEGORIES= print -MASTER_SITES= ftp://ctan.unsw.edu.au/ctan/tex-archive/dviware/ -DISTNAME= dvi2tty +MASTER_SITES= ${MASTER_SITE_TEX_CTAN} +MASTER_SITE_SUBDIR= nonfree/dviware +DISTNAME= ${PORTNAME} -MAINTAINER= ports@freebsd.org +MAINTAINER= ports@FreeBSD.org IGNOREFILES= ${DISTFILES} MAN1= dvi2tty.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 Mon Feb 5 10:40:59 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 54A1737B69C for ; Mon, 5 Feb 2001 10:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15Ie1T53809; Mon, 5 Feb 2001 10:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 59FCF37B65D for ; Mon, 5 Feb 2001 10:31:28 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IVS252901; Mon, 5 Feb 2001 10:31:28 -0800 (PST) (envelope-from nobody) Message-Id: <200102051831.f15IVS252901@freefall.freebsd.org> Date: Mon, 5 Feb 2001 10:31:28 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24881: Update port: www/kwebsearch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24881 >Category: ports >Synopsis: Update port: www/kwebsearch >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 Feb 05 10:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update MASTER_SITES and WWW: line - Sort pkg-plist >How-To-Repeat: >Fix: diff -urN /usr/ports/www/kwebsearch/Makefile www/kwebsearch/Makefile --- /usr/ports/www/kwebsearch/Makefile Wed Jan 17 20:39:49 2001 +++ www/kwebsearch/Makefile Wed Jan 31 21:03:31 2001 @@ -8,15 +8,19 @@ PORTNAME= kwebsearch PORTVERSION= 1.2 CATEGORIES= www kde -MASTER_SITES= http://www.bawue.de/~rgoetz/ +MASTER_SITES= http://www.guruz.de/ MAINTAINER= ports@FreeBSD.org +BUILD_DEPENDS= msgfmt:${PORTSDIR}/devel/gettext LIB_DEPENDS= kdecore.3:${PORTSDIR}/x11/kdelibs11 -BUILD_DEPENDS= ${LOCALBASE}/bin/gettext:${PORTSDIR}/devel/gettext -GNU_CONFIGURE= yes -USE_GMAKE= yes USE_QT= yes +USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ENV= QTDIR="${X11BASE}" KDEDIR="${LOCALBASE}" +CONFIGURE_ARGS= --with-qt-includes=${X11BASE}/include/X11/qt \ + --with-extra-includes=${LOCALBASE}/include \ + --with-extra-libs=${LOCALBASE}/lib .include diff -urN /usr/ports/www/kwebsearch/pkg-descr www/kwebsearch/pkg-descr --- /usr/ports/www/kwebsearch/pkg-descr Tue Apr 4 07:08:24 2000 +++ www/kwebsearch/pkg-descr Wed Jan 31 21:01:38 2001 @@ -15,7 +15,7 @@ who are not running KDE should be careful to select a browser other than KFM, or else KWebSearch won't work. -WWW: http://www.bawue.de/~rgoetz/kwebsearch.html +WWW: http://www.guruz.de/kwebsearch.html Author: Markus Goetz --Will diff -urN /usr/ports/www/kwebsearch/pkg-plist www/kwebsearch/pkg-plist --- /usr/ports/www/kwebsearch/pkg-plist Tue Apr 4 07:08:25 2000 +++ www/kwebsearch/pkg-plist Wed Jan 31 22:55:44 2001 @@ -1,13 +1,13 @@ bin/kwebsearch share/applnk/Internet/kwebsearch.kdelnk -share/icons/kwebsearch.xpm -share/icons/mini/kwebsearch.xpm -share/apps/kwebsearch/searchengines/system_wide_standard -share/apps/kwebsearch/searchengines/lang_specific_de -share/apps/kwebsearch/searchengines/lang_specific_fr share/apps/kwebsearch/searchengines/lang_specific_da +share/apps/kwebsearch/searchengines/lang_specific_de share/apps/kwebsearch/searchengines/lang_specific_es +share/apps/kwebsearch/searchengines/lang_specific_fr share/apps/kwebsearch/searchengines/lang_specific_pt +share/apps/kwebsearch/searchengines/system_wide_standard +share/icons/kwebsearch.xpm +share/icons/mini/kwebsearch.xpm share/locale/da/LC_MESSAGES/kwebsearch.mo share/locale/de/LC_MESSAGES/kwebsearch.mo @dirrm share/apps/kwebsearch/searchengines >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 Feb 5 10:41: 5 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2E2B237B69B for ; Mon, 5 Feb 2001 10:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15Ie1553800; Mon, 5 Feb 2001 10:40:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E610837B401 for ; Mon, 5 Feb 2001 10:30:47 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15IUla52836; Mon, 5 Feb 2001 10:30:47 -0800 (PST) (envelope-from nobody) Message-Id: <200102051830.f15IUla52836@freefall.freebsd.org> Date: Mon, 5 Feb 2001 10:30:47 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24880: Update port: print/pbm2ppa to pnm2ppa-1.04 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24880 >Category: ports >Synopsis: Update port: print/pbm2ppa to pnm2ppa-1.04 >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 Feb 05 10:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.04 - Add WWW: line New file: files/patch-ac files/patch-ad files/patch-ae files/patch-af pkg-message >How-To-Repeat: >Fix: diff -urN /usr/ports/print/pbm2ppa/Makefile print/pnm2ppa/Makefile --- /usr/ports/print/pbm2ppa/Makefile Tue Jan 30 21:11:47 2001 +++ print/pnm2ppa/Makefile Tue Jan 30 22:28:18 2001 @@ -1,75 +1,46 @@ -# New ports collection makefile for: pbm2ppa +# New ports collection makefile for: pnm2ppa # Date created: 18 November 1998 # Whom: smace@freebsd.org # # $FreeBSD: ports/print/pbm2ppa/Makefile,v 1.13 2001/01/27 05:43:30 will Exp $ # -PORTNAME= pbm2ppa -PORTVERSION= 0.8.6 +PORTNAME= pnm2ppa +PORTVERSION= 1.04 CATEGORIES= print -MASTER_SITES= http://www.httptech.com/ppa/files/ -DISTFILES= ppa-${PORTVERSION}.tar.gz +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= ports@FreeBSD.org +LIB_DEPENDS= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt RUN_DEPENDS= gs:${PORTSDIR}/print/ghostscript55 \ enscript:${PORTSDIR}/print/enscript-letter -USE_GMAKE= yes +MAN1= pnm2ppa.1 -HPMODEL?= 720 -ALL_TARGET= ${HPMODEL} - -pre-configure: -.if ${HPMODEL} != 720 && ${HPMODEL} != 820 && ${HPMODEL} != 1000 - @${ECHO} "HPMODEL is invalid: ${HPMODEL}." - @${ECHO} "You must specify the model of your printer:" - @${ECHO} "720 -- HP720 family (HP 722C, etc.)" - @${ECHO} "820 -- HP820 family" - @${ECHO} "1000 -- HP820 family" - @${FALSE} -.endif -.if !defined(PAPERSIZE) - @${ECHO} - @${ECHO} "No PAPERSIZE environment variable found, will default to enscript-letter" - @${ECHO} -.endif +post-patch: + @${SED} -e "s:%%PREFIX%%:${PREFIX}:g" \ + ${WRKSRC}/pnm2ppa.conf > ${WRKSRC}/pnm2ppa.conf.sample + @${SED} -e "s:%%PREFIX%%:${PREFIX}:g" \ + ${WRKSRC}/docs/en/pnm2ppa.1 > ${WRKSRC}/pnm2ppa.1 + @${SED} -e "s:%%PREFIX%%:${PREFIX}:g" \ + -e "s:%%LOCALBASE%%:${LOCALBASE}:g" \ + ${FILESDIR}/asciippafilter.SH > ${WRKSRC}/asciippafilter + @${SED} -e "s:%%PREFIX%%:${PREFIX}:g" \ + -e "s:%%LOCALBASE%%:${LOCALBASE}:g" \ + ${FILESDIR}/ppafilter.SH > ${WRKSRC}/ppafilter do-install: - ${SED} s#CHANGETHIS#${PREFIX}# < ${FILESDIR}/ppafilter.SH > ${WRKSRC}/ppafilter - ${SED} s#CHANGETHIS#${PREFIX}# < ${FILESDIR}/asciippafilter.SH > ${WRKSRC}/asciippafilter - cd ${WRKSRC} && \ - (${INSTALL_PROGRAM} pbm2ppa pbmtpg \ - ${PREFIX}/bin; \ - ${INSTALL_DATA} pbm2ppa.conf.hp${HPMODEL} \ - ${PREFIX}/etc/pbm2ppa.conf; \ - ${INSTALL_SCRIPT} ppafilter asciippafilter \ - ${PREFIX}/bin ) - -post-install: - @${ECHO} - @${ECHO} "To configure your printcap to print either ascii" - @${ECHO} "or Postscript files, add the following lines to your" - @${ECHO} "/etc/printcap file" - @${ECHO} - @${ECHO} " lp|ascii|unix:\\" - @${ECHO} " :lp=/dev/lpt0:\\" - @${ECHO} " :sd=/var/spool/lpd:\\" - @${ECHO} " :if=/usr/local/bin/asciippafilter:\\" - @${ECHO} " :mx#0:\\" - @${ECHO} " :sh:" - @${ECHO} - @${ECHO} " ps:\\" - @${ECHO} " :lp=/dev/lpt0:\\" - @${ECHO} " :sd=/var/spool/ps:\\" - @${ECHO} " :if=/usr/local/bin/ppafilter:\\" - @${ECHO} " :mx#0:\\" - @${ECHO} " :sh:" - @${ECHO} - @${ECHO} "Please be sure that you install the proper flavor of" - @${ECHO} "enscript, either A4 or Letter, by setting the PAPERSIZE" - @${ECHO} "environment variable." - @${ECHO} + ${INSTALL_PROGRAM} ${WRKSRC}/calibrate_ppa ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/pnm2ppa ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/asciippafilter ${PREFIX}/bin + ${INSTALL_SCRIPT} ${WRKSRC}/ppafilter ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/pnm2ppa.1 ${MANPREFIX}/man/man1 + ${INSTALL_DATA} ${WRKSRC}/pnm2ppa.conf.sample ${PREFIX}/etc +.if !exists(${PREFIX}/etc/pnm2ppa.conf) + ${CP} ${PREFIX}/etc/pnm2ppa.conf.sample ${PREFIX}/etc/pnm2ppa.conf +.endif + @${CAT} ${PKGMESSAGE} .include diff -urN /usr/ports/print/pbm2ppa/distinfo print/pnm2ppa/distinfo --- /usr/ports/print/pbm2ppa/distinfo Thu Nov 19 00:50:24 1998 +++ print/pnm2ppa/distinfo Tue Jan 30 21:16:55 2001 @@ -1 +1 @@ -MD5 (ppa-0.8.6.tar.gz) = fb40576435d5979db64fbea305ec224b +MD5 (pnm2ppa-1.04.tar.gz) = 8db1f0dcdb3cf86d8ccb9a34007b9e21 diff -urN /usr/ports/print/pbm2ppa/files/asciippafilter.SH print/pnm2ppa/files/asciippafilter.SH --- /usr/ports/print/pbm2ppa/files/asciippafilter.SH Thu Nov 19 00:50:24 1998 +++ print/pnm2ppa/files/asciippafilter.SH Tue Jan 30 22:31:07 2001 @@ -1,5 +1,5 @@ #!/bin/sh -CHANGETHIS/bin/enscript -B -q -p - | \ -CHANGETHIS/bin/gs -sDEVICE=pbm -q -dNOPAUSE -r600 -sOutputFile=- - | \ -CHANGETHIS/bin/pbm2ppa - - +%%LOCALBASE%%/bin/enscript -B -q -p - | \ +%%LOCALBASE%%/bin/gs -sDEVICE=ppmraw -q -dNOPAUSE -r600 -sOutputFile=- - | \ +%%PREFIX%%/bin/pnm2ppa -i - -o - diff -urN /usr/ports/print/pbm2ppa/files/patch-aa print/pnm2ppa/files/patch-aa --- /usr/ports/print/pbm2ppa/files/patch-aa Thu Nov 19 00:50:24 1998 +++ print/pnm2ppa/files/patch-aa Tue Jan 30 21:50:21 2001 @@ -1,9 +1,25 @@ ---- Makefile.orig Tue Sep 22 22:47:02 1998 -+++ Makefile Tue Sep 22 22:47:23 1998 -@@ -1,5 +1,5 @@ - CC=gcc --CFLAGS=-Wall -O2 -+CFLAGS=-Wall -O2 -DPPA_CONF=\"${PREFIX}/etc/pbm2ppa.conf\" - LDFLAGS= +--- Makefile.orig Fri Nov 3 03:33:08 2000 ++++ Makefile Tue Jan 30 21:25:55 2001 +@@ -2,16 +2,16 @@ + # Makefile for pnm2ppa + # + +-INSTALLDIR=/usr/local/bin +-CONFDIR=/etc +-MANDIR=/usr/local/man/man1 ++INSTALLDIR=${PREFIX}/bin ++CONFDIR=${PREFIX}/etc ++MANDIR=${PREFIX}/man/man1 + +-CC=gcc ++CC?=gcc + INSTALL=install + + # production build +-CFLAGS=-Wall -pedantic -O2 -g -DNDEBUG +-LDFLAGS=-lm ++CFLAGS+=-DCONFDIR=\"$(CONFDIR)\" -DNDEBUG -I${LOCALBASE}/include ++LDFLAGS=-lm -L${LOCALBASE}/lib -lgnugetopt + OBJS = pnm2ppa.o syslog.o ppa.o image.o dither.o cutswath.o hash_ink.o gamma.o + SRC = pnm2ppa.c syslog.c ppa.c image.c dither.c cutswath.c hash_ink.c gamma.c - default: diff -urN /usr/ports/print/pbm2ppa/files/patch-ab print/pnm2ppa/files/patch-ab --- /usr/ports/print/pbm2ppa/files/patch-ab Thu Nov 19 00:50:24 1998 +++ print/pnm2ppa/files/patch-ab Tue Jan 30 21:30:13 2001 @@ -1,11 +1,11 @@ ---- pbm2ppa.c.orig Mon Apr 6 23:20:07 1998 -+++ pbm2ppa.c Tue Sep 22 22:37:45 1998 -@@ -268,7 +268,7 @@ - exit(1); - } - --char* defaultcfgfile="/etc/pbm2ppa.conf"; -+char* defaultcfgfile=PPA_CONF; - int main (int argc, char *argv[]) - { - int argn; +--- pnm2ppa.c.orig Sun Nov 12 04:53:03 2000 ++++ pnm2ppa.c Tue Jan 30 21:27:52 2001 +@@ -279,7 +279,7 @@ + printf + (" The order in which parameters are specified is important:\n"); + printf +- (" the file /etc/pnm2ppa.conf, if it exists, is processed as a configuration\n"); ++ (" the file " CONFDIR "/pnm2ppa.conf, if it exists, is processed as a configuration\n"); + printf + (" file before any command-line parameters are processed.\n"); + printf diff -urN /usr/ports/print/pbm2ppa/files/patch-ac print/pnm2ppa/files/patch-ac --- /usr/ports/print/pbm2ppa/files/patch-ac Thu Jan 1 09:00:00 1970 +++ print/pnm2ppa/files/patch-ac Tue Jan 30 22:03:55 2001 @@ -0,0 +1,45 @@ +--- docs/en/pnm2ppa.1.orig Mon Nov 6 10:16:38 2000 ++++ docs/en/pnm2ppa.1 Tue Jan 30 22:02:49 2001 +@@ -51,13 +51,13 @@ + .\"{{{ -f configFile + .IP "\fB\-f \fIconfigFile\fR\fP" + Re-reads configuration from \fIconfigFile\fR (after +-initially reading it from /etc/pnm2ppa.conf). ++initially reading it from %%PREFIX%%/etc/pnm2ppa.conf). + .\"}}} + + .\"{{{ -F GammaFile + .IP "\fB\-F \fIGammaFile\fR\fP" + Overrides reading the color-correction table (Gamma curve) from the default +-file /etc/pnm2ppa.gamma, and uses \fIGammaFile\fR instead. ++file %%PREFIX%%/etc/pnm2ppa.gamma, and uses \fIGammaFile\fR instead. + .\"}}} + + .\"{{{ --fd +@@ -161,7 +161,7 @@ + + + .SH NOTES +-The default configuration file \fI/etc/pnm2ppa.conf\fR is read in first. Command line arguments then modify the resulting definitions. ++The default configuration file \fI%%PREFIX%%/etc/pnm2ppa.conf\fR is read in first. Command line arguments then modify the resulting definitions. + .PP + The \fB-v\fP option resets all definitions (margins, offsets, etc.) back to + the inbuilt defaults for that printer and should be used before subsequent +@@ -171,13 +171,13 @@ + + .SH FILES + +-.\"{{{ /etc/pnm2ppa.conf +-.IP "\fB\fI/etc/pnm2ppa.conf\fR\fP" ++.\"{{{ %%PREFIX%%/etc/pnm2ppa.conf ++.IP "\fB\fI%%PREFIX%%/etc/pnm2ppa.conf\fR\fP" + Default configuration file. + .\"}}} + +-.\"{{{ /etc/pnm2ppa.gamma +-.IP "\fB\fI/etc/pnm2ppa.gamma\fR\fP" ++.\"{{{ %%PREFIX%%/etc/pnm2ppa.gamma ++.IP "\fB\fI%%PREFIX%%/etc/pnm2ppa.gamma\fR\fP" + Default Gamma (color-correction) file. + .\"}}} + diff -urN /usr/ports/print/pbm2ppa/files/patch-ad print/pnm2ppa/files/patch-ad --- /usr/ports/print/pbm2ppa/files/patch-ad Thu Jan 1 09:00:00 1970 +++ print/pnm2ppa/files/patch-ad Tue Jan 30 22:07:47 2001 @@ -0,0 +1,29 @@ +--- pnm2ppa.conf.orig Sun Oct 29 00:02:57 2000 ++++ pnm2ppa.conf Tue Jan 30 22:07:29 2001 +@@ -1,7 +1,7 @@ + # Sample configuration file + # + # This file will be automatically read upon startup if it is placed in +-# /etc/pnm2ppa.conf ++# %%PREFIX%%/etc/pnm2ppa.conf + # + # uncomment entries by removing "#" to activate them. + # +@@ -26,7 +26,7 @@ + # in addition to the syslog. (Note: on BeOS, syslog messages are + # diverted to stderr; use "silent 1" to suppress them.) + # Note: the "silent 1" keyword is only accepted from the system +-# configuration file (/etc/pnm2ppa.conf), and not from configuration files ++# configuration file (%%PREFIX%%/etc/pnm2ppa.conf), and not from configuration files + # specified with the pnm2ppa option "-f". + + #silent 1 +@@ -105,7 +105,7 @@ + #------------Color correct curve Gamma parameters------------------------- + # Gamma color correction values for Red, Green and Blue: + # (Note: a more effective method of color correction is to use +-# a calibration file /etc/pnm2ppa.gamma, in which case these ++# a calibration file %%PREFIX%%/etc/pnm2ppa.gamma, in which case these + # Gamma values will not be used. See COLOR.html or COLOR.txt) + # The pnm2ppa option --noGamma suppresses color correction. + diff -urN /usr/ports/print/pbm2ppa/files/patch-ae print/pnm2ppa/files/patch-ae --- /usr/ports/print/pbm2ppa/files/patch-ae Thu Jan 1 09:00:00 1970 +++ print/pnm2ppa/files/patch-ae Tue Jan 30 21:29:40 2001 @@ -0,0 +1,13 @@ +--- pnm2ppa.h.orig Mon Oct 23 11:40:36 2000 ++++ pnm2ppa.h Tue Jan 30 21:28:49 2001 +@@ -20,8 +20,8 @@ + + #ifdef __PNM2PPA_C__ + +-static char *defaultcfgfile = "/etc/pnm2ppa.conf"; +-static char *defaultgammafile = "/etc/pnm2ppa.gamma"; ++static char *defaultcfgfile = CONFDIR "/pnm2ppa.conf"; ++static char *defaultgammafile = CONFDIR "/pnm2ppa.gamma"; + + static ppaPrinter_t printer; + diff -urN /usr/ports/print/pbm2ppa/files/patch-af print/pnm2ppa/files/patch-af --- /usr/ports/print/pbm2ppa/files/patch-af Thu Jan 1 09:00:00 1970 +++ print/pnm2ppa/files/patch-af Tue Jan 30 21:43:00 2001 @@ -0,0 +1,11 @@ +--- text-en.h.orig Sat Oct 14 17:35:25 2000 ++++ text-en.h Tue Jan 30 21:42:43 2001 +@@ -73,7 +73,7 @@ + + /* 24 */ "Verbose logging to console\n", + +- /* 25 */ "Please configure your printer in /etc/pnm2ppa.conf\n", ++ /* 25 */ "Please configure your printer in " CONFDIR "/pnm2ppa.conf\n", + + /* 26 */ "couldn't open config file \n", + diff -urN /usr/ports/print/pbm2ppa/files/ppafilter.SH print/pnm2ppa/files/ppafilter.SH --- /usr/ports/print/pbm2ppa/files/ppafilter.SH Thu Nov 19 00:50:24 1998 +++ print/pnm2ppa/files/ppafilter.SH Tue Jan 30 22:31:26 2001 @@ -1,4 +1,4 @@ #!/bin/sh -CHANGETHIS/bin/gs -sDEVICE=pbm -q -dNOPAUSE -r600 -sOutputFile=- - | \ -CHANGETHIS/bin/pbm2ppa - - +%%LOCALBASE%%/bin/gs -sDEVICE=ppmraw -q -dNOPAUSE -r600 -sOutputFile=- - | \ +%%PREFIX%%/bin/pnm2ppa -i - -o - diff -urN /usr/ports/print/pbm2ppa/pkg-comment print/pnm2ppa/pkg-comment --- /usr/ports/print/pbm2ppa/pkg-comment Thu Nov 19 00:50:24 1998 +++ print/pnm2ppa/pkg-comment Tue Jan 30 21:16:05 2001 @@ -1 +1 @@ -Convert PBM images to PPA for some HP printers +Convert PNM images to PPA for some HP printers diff -urN /usr/ports/print/pbm2ppa/pkg-descr print/pnm2ppa/pkg-descr --- /usr/ports/print/pbm2ppa/pkg-descr Thu Nov 19 00:50:24 1998 +++ print/pnm2ppa/pkg-descr Tue Jan 30 21:11:58 2001 @@ -3,3 +3,5 @@ printers, including the HP Deskjet 820C series, the HP DeskJet 720 series, and the HP DeskJet 1000 series. It has been tested on all three printers, but your personal experience (positive or negative) is very much appreciated! + +WWW: http://ppm2ppa.sourceforge.net/ diff -urN /usr/ports/print/pbm2ppa/pkg-message print/pnm2ppa/pkg-message --- /usr/ports/print/pbm2ppa/pkg-message Thu Jan 1 09:00:00 1970 +++ print/pnm2ppa/pkg-message Tue Jan 30 22:19:00 2001 @@ -0,0 +1,21 @@ +To configure your printcap to print either ascii" +or Postscript files, add the following lines to your" +/etc/printcap file" + + lp|ascii|unix:\\" + :lp=/dev/lpt0:\\" + :sd=/var/spool/lpd:\\" + :if=/usr/local/bin/asciippafilter:\\" + :mx#0:\\" + :sh:" + + ps:\\" + :lp=/dev/lpt0:\\" + :sd=/var/spool/ps:\\" + :if=/usr/local/bin/ppafilter:\\" + :mx#0:\\" + :sh:" + +Please be sure that you install the proper flavor of" +enscript, either A4 or Letter, by setting the PAPERSIZE" +environment variable." diff -urN /usr/ports/print/pbm2ppa/pkg-plist print/pnm2ppa/pkg-plist --- /usr/ports/print/pbm2ppa/pkg-plist Thu Nov 19 00:50:24 1998 +++ print/pnm2ppa/pkg-plist Tue Jan 30 22:28:35 2001 @@ -1,5 +1,7 @@ -bin/pbm2ppa -bin/pbmtpg -bin/ppafilter bin/asciippafilter -etc/pbm2ppa.conf +bin/calibrate_ppa +bin/pnm2ppa +bin/ppafilter +@unexec if cmp -s %D/etc/pnm2ppa.conf %D/etc/pnm2ppa.conf.sample; then rm -f %D/etc/pnm2ppa.conf; fi +etc/pnm2ppa.conf.sample +@exec test -f %B/pnm2ppa.conf || cp %B/%f %B/pnm2ppa.conf >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 Feb 5 12: 5:54 2001 Delivered-To: freebsd-ports@freebsd.org Received: from kleopatra.acc.umu.se (kleopatra.acc.umu.se [130.239.18.150]) by hub.freebsd.org (Postfix) with ESMTP id 3B43237B401; Mon, 5 Feb 2001 12:05:33 -0800 (PST) Received: from mao.acc.umu.se (root@mao.acc.umu.se [130.239.18.154]) by kleopatra.acc.umu.se (8.11.2/8.11.2) with ESMTP id f15K50v25676; Mon, 5 Feb 2001 21:05:16 +0100 Received: (from markush@localhost) by mao.acc.umu.se (8.9.3/8.9.3/Debian 8.9.3-21) id VAA03847; Mon, 5 Feb 2001 21:05:00 +0100 Date: Mon, 5 Feb 2001 21:05:00 +0100 From: Markus Holmberg To: freebsd-security@freebsd.org Cc: freebsd-ports@freebsd.org Subject: Package integrity check? Message-ID: <20010205210459.A2479@acc.umu.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3-current-20000511i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello. Is there any way to perform an integrity check on packages that are fetched with "pkg_add -r "? (Similarly to building a package manually with a trusted /usr/ports and checksumming downloaded files) I assume there is no way to do integrity checking on packages, which leads me to the question if the general opinion among the security conscious is that packages (from untrusted parties, like any ftp site on the mirror list) should not be used at all? Markus -- Markus Holmberg | Give me Unix or give me a typewriter. markush@acc.umu.se | 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 Feb 5 13: 1:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BE98837B401; Mon, 5 Feb 2001 13:00:53 -0800 (PST) Received: (from sf@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15L0rX77739; Mon, 5 Feb 2001 13:00:53 -0800 (PST) (envelope-from sf) Date: Mon, 5 Feb 2001 13:00:53 -0800 (PST) From: Message-Id: <200102052100.f15L0rX77739@freefall.freebsd.org> To: sf@FreeBSD.org, freebsd-ports@FreeBSD.org, sf@FreeBSD.org Subject: Re: ports/23577: New port biology/gaussian98 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port biology/gaussian98 Responsible-Changed-From-To: freebsd-ports->sf Responsible-Changed-By: sf Responsible-Changed-When: Mon Feb 5 13:00:37 PST 2001 Responsible-Changed-Why: I'll handle this one. http://www.freebsd.org/cgi/query-pr.cgi?pr=23577 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 13:54:56 2001 Delivered-To: freebsd-ports@freebsd.org Received: from heechee.tobez.org (254.adsl0.ryv.worldonline.dk [213.237.10.254]) by hub.freebsd.org (Postfix) with ESMTP id 4D71237B401; Mon, 5 Feb 2001 13:54:37 -0800 (PST) Received: by heechee.tobez.org (Postfix, from userid 1001) id 2F1CC54ED; Mon, 5 Feb 2001 22:54:26 +0100 (CET) Date: Mon, 5 Feb 2001 22:54:26 +0100 From: Anton Berezin To: freebsd-ports@freebsd.org Cc: Josef Karthauser , Will Andrews , Mike Meyer , Dmitry Sivachenko , Mark Murray Subject: Re: Request for comments: BSDPAN, p5-ports polisher (and more) Message-ID: <20010205225426.A8666@heechee.tobez.org> Mail-Followup-To: Anton Berezin , freebsd-ports@freebsd.org, Josef Karthauser , Will Andrews , Mike Meyer , Dmitry Sivachenko , Mark Murray References: <20010204032302.C49456@heechee.tobez.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010204032302.C49456@heechee.tobez.org>; from tobez@tobez.org on Sun, Feb 04, 2001 at 03:23:02AM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Feb 04, 2001 at 03:23:02AM +0100, Anton Berezin wrote: > I present to your attention the initial version of BSDPAN, a tool, which > currently does two things: > > 1. Makes p5- FreeBSD ports PREFIX-clean. > > 2. Makes Perl modules installed in a classical Perl way (by use of > CPAN.pm, or by manual downloading and perl Makefile.PL && make && > make test && make install sequence) register themselves with FreeBSD > PKG_DB (commonly found in /var/db/pkg). > The code is located at > http://www.tobez.org/download/bsdpan-2001020401.tgz > For now, in order to test BSDPAN, you will only need to set the > environment variable PERL5LIB to point to a directory you unpacked the > tarball to (including the first BSDPAN subdirectory). The newer version is at http://www.tobez.org/download/bsdpan-2001020502.tgz Changes were: - fixes a bugs that manifested itself when BSDPAN was unpacked in a tree with strange directory permissions (thanks to Josef Karthauser). - changes the generated package prefix (bsdpan- instead of p5-), in order to distinguish artificial package entries it generates from the `proper' p5- packages. - makes overriding more reliable (dirty @INC tricks replaced with clean @INC tricks). - respects PKG_DB environment variable (as bsd.port.mk does). +Anton. -- May the tuna salad be with you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 14:10:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 80B2437B491 for ; Mon, 5 Feb 2001 14:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15MA3M91759; Mon, 5 Feb 2001 14:10:03 -0800 (PST) (envelope-from gnats) Received: from andrew.nonstop.net.il (webedge.nonstop.net.il [213.57.71.5]) by hub.freebsd.org (Postfix) with ESMTP id 9B03D37B401 for ; Mon, 5 Feb 2001 14:07:22 -0800 (PST) Received: from alchemy.oven.org ([62.0.102.78]) by andrew.nonstop.net.il with ESMTP id <20010205220723.LCF19042.andrew@alchemy.oven.org> for ; Tue, 6 Feb 2001 00:07:23 +0200 Received: (from mapc@localhost) by alchemy.oven.org (8.11.2/8.11.2) id f15M79x81295; Tue, 6 Feb 2001 00:07:09 +0200 (IST) (envelope-from mapc) Message-Id: <200102052207.f15M79x81295@alchemy.oven.org> Date: Tue, 6 Feb 2001 00:07:09 +0200 (IST) From: roman@xpert.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24883: [MAINTAINER UPDATE] graphics/xine 0.3.6->0.3.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24883 >Category: ports >Synopsis: [MAINTAINER UPDATE] graphics/xine 0.3.6->0.3.7 >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 Feb 05 14:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/xine/Makefile xine/Makefile --- /usr/ports/graphics/xine/Makefile Mon Jan 29 00:01:12 2001 +++ xine/Makefile Mon Feb 5 23:34:39 2001 @@ -6,8 +6,7 @@ # PORTNAME= xine -PORTVERSION= 0.3.6 -PORTREVISION= 3 +PORTVERSION= 0.3.7 CATEGORIES= graphics MASTER_SITES= http://xine.sourceforge.net/files/ DISTNAME= ${PORTNAME}_${PORTVERSION} diff -urN /usr/ports/graphics/xine/distinfo xine/distinfo --- /usr/ports/graphics/xine/distinfo Tue Jan 23 22:18:39 2001 +++ xine/distinfo Mon Feb 5 23:34:42 2001 @@ -1 +1 @@ -MD5 (xine_0.3.6.tar.gz) = 04387fe2ba977c473e19b116e85a7c33 +MD5 (xine_0.3.7.tar.gz) = 3fe2e0ba47e9baf72a115c928392a328 diff -urN /usr/ports/graphics/xine/pkg-plist xine/pkg-plist --- /usr/ports/graphics/xine/pkg-plist Tue Jan 23 22:18:39 2001 +++ xine/pkg-plist Mon Feb 5 23:53:08 2001 @@ -10,7 +10,9 @@ share/doc/xine/README.syncfb share/doc/xine/bug_report_form share/xine/skins/default/arrowdn.png +share/xine/skins/default/arrowdn2.png share/xine/skins/default/arrowup.png +share/xine/skins/default/arrowup2.png share/xine/skins/default/bg.png share/xine/skins/default/button.png share/xine/skins/default/close.png @@ -65,7 +67,9 @@ share/xine/skins/lcd/smallbtn.png share/xine/skins/lcd/stop.png share/xine/skins/metal/arrowdn.png +share/xine/skins/metal/arrowdn2.png share/xine/skins/metal/arrowup.png +share/xine/skins/metal/arrowup2.png share/xine/skins/metal/bg.png share/xine/skins/metal/button.png share/xine/skins/metal/close.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 Mon Feb 5 14:20:22 2001 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 328B837B491 for ; Mon, 5 Feb 2001 14:19:57 -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 <20010205221954.OROH19464.mail.rdc1.kt.home.ne.jp@daemon.local.idaemons.org> for ; Mon, 5 Feb 2001 14:19:54 -0800 Received: by daemon.local.idaemons.org (8.11.1/3.7W) id f15MJsv13536; Tue, 6 Feb 2001 07:19:54 +0900 (JST) Date: Tue, 06 Feb 2001 07:19:54 +0900 Message-ID: <86k874g4c5.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: ports@FreeBSD.org Subject: new tool: portupgrade User-Agent: Wanderlust/2.5.4 (Smooth) SEMI/1.14.2 (=?ISO-8859-1?Q?Daish=F2?= =?ISO-8859-1?Q?ji?=) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (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.2 - =?ISO-8859-1?Q?=22Daish=F2ji=22?=) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, ports folks, I wrote a handy tool to upgrade already installed packages with the latest ports, called . It's still far from finished (error handling, recursive upgrades, etc.), but it has achieved my primary goal. Grab the following tarball and use with care at your own risk: http://people.FreeBSD.org/~knu/misc/portupgrade.tar.gz Of course :P it's written in Ruby, so please install lang/ruby in advance and run "./install.rb" to install. I haven't yet written any docs, but a brief help is shown as below: Usage: portupgrade [-hcdfiu] [-o origin] [-m make_args] pkgname_glob [[-o origin] [-m make_args] pkgname_glob ...] -h, --help show this message -c, --cleanbuild clean before each port build -d, --clean clean after each port installation -f, --force force upgrade (even if equal or older) -i, --interactive turn on interactive mode -u, --uninstall uninstall before each port installation -o, --origin=ORIGIN specify the port to upgrade the following pkg with -m, --make-args=ARGS specify the arguments to pass to make(1) pkgname_glob is one of a full pkgname, a pkgname w/o version, or a glob. In a glob, you can use the wildcards *, ?, and [class]. For example, you can upgrade all GNOME packages by typing as follows: portupgrade 'gnome*' If you want to wipe out the installed files before installation, add -u to the command line. By default, it doesn't uninstall the old package and just overwrites it with the new one, keeping the package database consistent. In any case, portupgrade only builds and installs the specified port(s), but does not for the dependent/depending ports. It surely sounds bruteforce, but it works. :) So you will no longer bother with updating a fundamental library package, because you don't need to deinstall, rebuild and reinstall the dependent ports for nothing. Even if the shared library version is bumped, portupgrade will not kill the old version unless you specify -u on the command line. (And you can update the dependent ports any time you want later) Try: portupgrade freetype portupgrade 'qt-2*' portupgrade librep rep-gtk sawfish-gnome and so on. (As for the last case, I'm going to add -r and -R to recurse the dependency up and down to make it easier) One more thing, portupgrade uses "origin" info to find which port to upgrade a package with, so you'll have to specify an "-o " by hand for each package that had been installed before "origin" was introduced. Perhaps I'll write a tool to add the "origin" info for those packages that lack it, though. Thanks to the new attribute, portupgrade doesn't need to look up /usr/ports/INDEX at all for now, which often goes stale. Any comments, suggestions, patches would be appreciated. Have fun, and be careful. You are warned. :-> -- / /__ __ 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 Mon Feb 5 14:36:47 2001 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 7391937B67D; Mon, 5 Feb 2001 14:36:29 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.2/8.11.1) with ESMTP id f15MaOV07918; Mon, 5 Feb 2001 14:36:25 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Maxim Sobolev Cc: ports@FreeBSD.org, jkh@FreeBSD.org, Peter Pentchev , Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] In-Reply-To: Message from Maxim Sobolev of "Mon, 05 Feb 2001 16:34:53 +0200." <3A7EBA0D.A293FF21@FreeBSD.org> Date: Mon, 05 Feb 2001 14:36:24 -0800 Message-ID: <7914.981412584@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24695 > > What do ppl think about proposed feature? I personally think that at least > prefix part could be solved easily with appropriate autocompletion rule, > however if there is enough interest I could go on and add this feature. Well, I've always wished that pkg_info and pkg_delete could take regexp style wildcards as arguments. Then you could do ``pkg_info emacs*'' or ``pkg_delete *gtk*'' to do the expected thing on them, and I think that would obey the POLA to such an extent that you wouldn't even need new special arguments like -P or -F. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 14:40:32 2001 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 AD67137B684 for ; Mon, 5 Feb 2001 14:40:08 -0800 (PST) Received: (qmail 24277 invoked by uid 1000); 5 Feb 2001 22:38:28 -0000 Date: Tue, 6 Feb 2001 00:38:28 +0200 From: Peter Pentchev To: Jordan Hubbard Cc: Maxim Sobolev , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] Message-ID: <20010206003828.A17885@ringworld.oblivion.bg> Mail-Followup-To: Jordan Hubbard , Maxim Sobolev , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis References: <7914.981412584@winston.osd.bsdi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <7914.981412584@winston.osd.bsdi.com>; from jkh@winston.osd.bsdi.com on Mon, Feb 05, 2001 at 02:36:24PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Feb 05, 2001 at 02:36:24PM -0800, Jordan Hubbard wrote: > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24695 > > > > What do ppl think about proposed feature? I personally think that at least > > prefix part could be solved easily with appropriate autocompletion rule, > > however if there is enough interest I could go on and add this feature. > > Well, I've always wished that pkg_info and pkg_delete could take > regexp style wildcards as arguments. Then you could do ``pkg_info > emacs*'' or ``pkg_delete *gtk*'' to do the expected thing on them, and > I think that would obey the POLA to such an extent that you wouldn't > even need new special arguments like -P or -F. Hmm actually this is even nicer.. But do you really mean regexp-style wildcards, or merely shell-globbing wildcards? If it's just shell globbing, that's much easier to do - just an additional fnmatch() call. G'luck, Peter -- This inert sentence is my body, but my soul is alive, dancing in the sparks of your brain. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 14:50:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 41CAB37B67D for ; Mon, 5 Feb 2001 14:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15Mo2s96395; Mon, 5 Feb 2001 14:50:02 -0800 (PST) (envelope-from gnats) Received: from mx.databus.com (p101-44.acedsl.com [160.79.101.44]) by hub.freebsd.org (Postfix) with ESMTP id E5CF437B503 for ; Mon, 5 Feb 2001 14:43:33 -0800 (PST) Received: (from barney@localhost) by mx.databus.com (8.11.1/8.11.1) id f15MhUB28915; Mon, 5 Feb 2001 17:43:30 -0500 (EST) (envelope-from barney) Message-Id: <200102052243.f15MhUB28915@mx.databus.com> Date: Mon, 5 Feb 2001 17:43:30 -0500 (EST) From: Barney Wolff Reply-To: barney@databus.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24884: divide by 0 in healthd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24884 >Category: ports >Synopsis: divide by 0 in healthd >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 Feb 05 14:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Barney Wolff >Release: FreeBSD 4.2-STABLE i386 >Organization: Databus Inc. >Environment: cvsup ports as of 2/4/01, healthd-0.6.4, 4.2-stable as of 2/1/01. >Description: --- getMBinfo.c.orig Mon Feb 5 17:29:58 2001 +++ getMBinfo.c Mon Feb 5 17:18:52 2001 @@ -293,7 +293,7 @@ else *r2 = 1350000 / (n * div2 * FanType2); n=ReadByte(0x2A); - if (n == 255) + if (n == 255 || n == 0) *r3 = 0; else *r3 = 1350000 / (n * div3 * FanType3); >How-To-Repeat: MB is SuperMicro PIIIDRE (dual PIII). healthd run as healthd -S -6 with default healthd.conf, coredumps on startup. Also, I was unable to build the port with make all in /usr/ports/sysutils/healthd - stopped with make: don't know how to make real-build. Stop I had to build it by hand. >Fix: See patch under Description. >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 Feb 5 14:53:55 2001 Delivered-To: freebsd-ports@freebsd.org Received: from clmboh1-smtp3.columbus.rr.com (unknown [65.24.0.112]) by hub.freebsd.org (Postfix) with ESMTP id 93E1C37B67D for ; Mon, 5 Feb 2001 14:53:37 -0800 (PST) Received: from mail.iowna.com (dhcp065-024-023-038.columbus.rr.com [65.24.23.38]) by clmboh1-smtp3.columbus.rr.com (8.11.2/8.11.2) with ESMTP id f15MpBr10637 for ; Mon, 5 Feb 2001 17:51:11 -0500 (EST) Message-ID: <3A7F2E55.1944B5AF@mail.iowna.com> Date: Mon, 05 Feb 2001 17:51:02 -0500 From: Bill Moran X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: netatalk-1.4b2+asun2.1.3_1 problem Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The netatalk-1.4b2+asun2.1.3_1 package has a small problem. The startup script that installs in /usr/local/etc/rc.d doesn't have the "#!/bin/sh" at the beginning of the file an is thus not recognized as a shell script. Pretty minor, but I thought I'd pass it on in case nobody was aware. -Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 14:56:39 2001 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 97C5D37B69B; Mon, 5 Feb 2001 14:56:20 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.2/8.11.1) with ESMTP id f15MuGV08069; Mon, 5 Feb 2001 14:56:16 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Maxim Sobolev , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] In-Reply-To: Message from Peter Pentchev of "Tue, 06 Feb 2001 00:38:28 +0200." <20010206003828.A17885@ringworld.oblivion.bg> Date: Mon, 05 Feb 2001 14:56:16 -0800 Message-ID: <8064.981413776@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > But do you really mean regexp-style wildcards, or merely shell-globbing > wildcards? If it's just shell globbing, that's much easier to do - > just an additional fnmatch() call. Well, I could go both ways. People are generally a lot more familiar with shell globbing syntax and tend to understand "*foo*" over ".*foo.*" (unless they're regexp weenies like me) but regexps are far more powerful and also delight the engineers. Maybe make it an option. ;) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 15: 3:41 2001 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 BE9AB37B69D for ; Mon, 5 Feb 2001 15:03:21 -0800 (PST) Received: (qmail 24659 invoked by uid 1000); 5 Feb 2001 23:01:42 -0000 Date: Tue, 6 Feb 2001 01:01:42 +0200 From: Peter Pentchev To: Jordan Hubbard Cc: Maxim Sobolev , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] Message-ID: <20010206010142.E17885@ringworld.oblivion.bg> Mail-Followup-To: Jordan Hubbard , Maxim Sobolev , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis References: <8064.981413776@winston.osd.bsdi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <8064.981413776@winston.osd.bsdi.com>; from jkh@winston.osd.bsdi.com on Mon, Feb 05, 2001 at 02:56:16PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, Feb 05, 2001 at 02:56:16PM -0800, Jordan Hubbard wrote: > > But do you really mean regexp-style wildcards, or merely shell-globbing > > wildcards? If it's just shell globbing, that's much easier to do - > > just an additional fnmatch() call. > > Well, I could go both ways. People are generally a lot more familiar > with shell globbing syntax and tend to understand "*foo*" over > ".*foo.*" (unless they're regexp weenies like me) but regexps are far > more powerful and also delight the engineers. Maybe make it an > option. ;) Don't get me wrong, I *love* regexps too :) Just.. maybe shell globbing shall be a bit more POLA-friendly, don't you think? And then, regexp globbing activated by a cmdline option.. mmmmmmm! :) (and possibly a shell alias which sets that option by default...) G'luck, Peter -- I am the thought you are now thinking. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 15:40:26 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BA7B437B6A3 for ; Mon, 5 Feb 2001 15:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f15Ne2A04368; Mon, 5 Feb 2001 15:40:02 -0800 (PST) (envelope-from gnats) Received: from pabst.bendnet.com (pabst.bendnet.com [199.2.205.10]) by hub.freebsd.org (Postfix) with ESMTP id A6A2B37B6A0 for ; Mon, 5 Feb 2001 15:39:25 -0800 (PST) Received: (from root@localhost) by pabst.bendnet.com (8.9.3/8.9.3) id PAA62183; Mon, 5 Feb 2001 15:39:20 -0800 (PST) (envelope-from zach) Message-Id: <200102052339.PAA62183@pabst.bendnet.com> Date: Mon, 5 Feb 2001 15:39:20 -0800 (PST) From: Zach Zurflu Reply-To: zach@pabst.bendnet.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24885: Update Port: audio/icecast Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24885 >Category: ports >Synopsis: Update Port: audio/icecast >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 Feb 05 15:40:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Zach Zurflu >Release: FreeBSD 3.5-STABLE i386 >Organization: >Environment: >Description: Update icecast port to current version (icecast-1.3.8beta2). Include patch to fix remotely exploitable buffer overflow described on bugtraq on Jan 21 2001 by cyrax of the packet knights crew. >How-To-Repeat: >Fix: diff -urN /usr/ports/audio/icecast/Makefile icecast/Makefile --- /usr/ports/audio/icecast/Makefile Mon Feb 5 15:04:15 2001 +++ icecast/Makefile Mon Feb 5 15:06:42 2001 @@ -6,12 +6,11 @@ # PORTNAME= icecast -PORTVERSION= 1.3.7 +PORTVERSION= 1.3.8.beta2 CATEGORIES= audio net MASTER_SITES= http://www.icecast.org/releases/ -FORBIDDEN= "Remotely exploitable buffer overflow" -MAINTAINER= chip@eboai.org +MAINTAINER= zach@pabst.bendnet.com HAS_CONFIGURE= yes CONFIGURE_ARGS=--with-libwrap diff -urN /usr/ports/audio/icecast/distinfo icecast/distinfo --- /usr/ports/audio/icecast/distinfo Tue Sep 5 01:47:45 2000 +++ icecast/distinfo Mon Feb 5 14:24:46 2001 @@ -1 +1 @@ -MD5 (icecast-1.3.7.tar.gz) = 74f78ca33bea3cfd562530bc90d0d214 +MD5 (icecast-1.3.8.beta2.tar.gz) = 640f750af1ff8d95bce949ed32a03685 diff -urN /usr/ports/audio/icecast/files/patch-aa icecast/files/patch-aa --- /usr/ports/audio/icecast/files/patch-aa Thu Jan 1 00:00:00 1970 +++ icecast/files/patch-aa Mon Feb 5 14:42:22 2001 @@ -0,0 +1,62 @@ +--- src/utility.c.orig Wed Jan 24 12:01:23 2001 ++++ src/utility.c Wed Jan 24 12:04:52 2001 +@@ -161,7 +161,7 @@ + con_host (con), nice_time (get_time () - con->connect_time, timebuf), admin->commands); + + if (!param) { +- fd_write (info.statsfile, ++ fd_write (info.statsfile, "%s", + buf); + flags2string (admin, NULL); + fd_write (info.statsfile, "\n"); +@@ -198,7 +198,7 @@ + nice_time (get_time () - con->connect_time, timebuf), type); + + if (!param) +- fd_write (info.statsfile, buf); ++ fd_write (info.statsfile, "%s", buf); + else + sock_write (*sock, "%s", buf); + } +@@ -223,7 +223,7 @@ + source->num_clients); + + if (!param) +- fd_write (info.statsfile, buf); ++ fd_write (info.statsfile, "%s", buf); + else + sock_write (*sock, "%s", buf); + } +@@ -257,7 +257,7 @@ + } + + if (!param) +- fd_write (info.statsfile, buf); ++ fd_write (info.statsfile, "%s", buf); + else + sock_write (*sock, "%s", buf); + +@@ -267,7 +267,7 @@ + source->audiocast.mount, source->audiocast.description, source->audiocast.public); + + if (!param) +- fd_write (info.statsfile, buf); ++ fd_write (info.statsfile, "%s", buf); + else + sock_write (*sock, "%s", buf); + +@@ -325,12 +325,12 @@ + + client = con->food.client; + +- sprintf (buf, "Client %ld\t[%s] connected for %s, %lu bytes transfered. %d errors. User agent: [%s]. Type: %s\r\n", ++ snprintf (buf, BUFSIZE, "Client %ld\t[%s] connected for %s, %lu bytes transfered. %d errors. User agent: [%s]. Type: %s\r\n", + con->id, con_host (con), nice_time (get_time () - con->connect_time, timebuf), client->write_bytes, client_errors (client), + get_user_agent (con), client->type == listener_e ? "listener" : "relay"); + + if (!param) +- fd_write(info.statsfile, buf); ++ fd_write(info.statsfile, "%s", buf); + else + sock_write (*sock, "%s", buf); + } >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 Feb 5 16:49: 8 2001 Delivered-To: freebsd-ports@freebsd.org Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (Postfix) with ESMTP id 2420737B491 for ; Mon, 5 Feb 2001 16:48:49 -0800 (PST) Received: from v-ger.we.lc.ehu.es (lxpx174.lx.ehu.es [158.227.26.74]) by polaris.we.lc.ehu.es (8.11.1/8.11.1) with ESMTP id f160mjb03081 for ; Tue, 6 Feb 2001 01:48:45 +0100 (MET) Received: from we.lc.ehu.es (localhost [127.0.0.1]) by v-ger.we.lc.ehu.es (8.11.1/8.11.1) with ESMTP id f160kSk01296 for ; Tue, 6 Feb 2001 01:46:28 +0100 (CET) (envelope-from jose@we.lc.ehu.es) Message-ID: <3A7F4964.6422FF5C@we.lc.ehu.es> Date: Tue, 06 Feb 2001 01:46:28 +0100 From: "Jose M. Alcaide" Organization: Universidad del Pais Vasco - Dpto. de Electricidad y Electronica X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: es-ES, es, en-US, en MIME-Version: 1.0 To: ports@FreeBSD.org Subject: SIGSEGV while installing kdebase2 port? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, I am trying to build KDE 2.0.1 on a system running a pretty recent FreeBSD 5.0-CURRENT (two days old). I wiped out all installed packages, except XFree86-3.3.6_4, and also updated the ports tree before beginning the KDE build. However, I am getting a SIGSEGV while installing kdebase2: ..... Installing non-KDE applications pwd=`pwd`; \ (cd . && $pwd/kappfinder_install "/usr/local/share/applnk") Creating link /root/.kde/socket-defiant.we.lc.ehu.es. Created link from "/root/.kde/socket-defiant.we.lc.ehu.es" to "/tmp/ksocket-root" Segmentation fault - core dumped gmake[3]: *** [runkappfinder_yes] Error 139 ..... Indeed, kappfinder_install dumps core every time. I tried to recompile it without any "-On" options to no avail. Then, I used gdb and this is what I found: Program received signal SIGSEGV, Segmentation fault. 0x28475f1b in QCString::resize () from /usr/X11R6/lib/libqt2.so Could this be a problem with qt-2.2.4? I built KDE 2.0 about two months ago with no problems, but then qt-2.2.3 was used. Is anybody experiencing the same problem? I didn't find any reference to it in the archives. Cheers, -- JMA ****** Jose M. Alcaide // jose@we.lc.ehu.es // jmas@FreeBSD.org ****** ** "Beware of Programmers who carry screwdrivers" -- Leonard Brandwein ** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 17: 7:49 2001 Delivered-To: freebsd-ports@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id A80BD37B6A1; Mon, 5 Feb 2001 17:07:30 -0800 (PST) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.11.1/8.11.1) with ESMTP id f1617T299347; Mon, 5 Feb 2001 17:07:29 -0800 (PST) (envelope-from jdp@wall.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.11.1/8.11.0) id f1617SU05421; Mon, 5 Feb 2001 17:07:28 -0800 (PST) (envelope-from jdp) Date: Mon, 5 Feb 2001 17:07:28 -0800 (PST) Message-Id: <200102060107.f1617SU05421@vashon.polstra.com> To: ports@freebsd.org From: John Polstra Reply-To: ports@freebsd.org Cc: sobomax@freebsd.org Subject: Re: HEADS UP: some attics coming back... In-Reply-To: <200102041942.f14Jg6325245@vic.sabbo.net> References: <200102041942.f14Jg6325245@vic.sabbo.net> Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <200102041942.f14Jg6325245@vic.sabbo.net>, Maxim Sobolev wrote: > > > > For those who didn't follow the procedures above and who think they > > might have some orphaned files in their trees, the standard CVSup > > distribution contains a script called "cvsupchk" which will clean > > things up. It is in the directory "contrib/cvsupchk". Maybe one of > > you should make a port out of it (*hint hint, nudge nudge*). :-) > > Maybe it's better to add some option into cvsup, which would instruct it > to delete all orphaned files and dirs? Maybe. It would slow down updates by quite a bit. I'll try to think of something reasonable that it could do. John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 18: 4:50 2001 Delivered-To: freebsd-ports@freebsd.org Received: from vcnet.com (mail.vcnet.com [209.239.239.15]) by hub.freebsd.org (Postfix) with SMTP id D7AFB37B69D for ; Mon, 5 Feb 2001 18:04:33 -0800 (PST) Received: (qmail 94626 invoked by uid 1001); 6 Feb 2001 02:04:31 -0000 Date: Mon, 5 Feb 2001 18:04:31 -0800 From: Jon Rust To: ports@freebsd.org Subject: Apache mod_ ports Message-ID: <20010205180431.D17025@mail.vcnet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: http://www.freebsd.org/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Are port maintainers making progress here? I notice that Frontpage and SSL are still absent from the list of mod_* ports. Any hope of getting either of them? I'm still using Scot Hetzel's first attempt[1] at this, and feel myself falling a bit behind, apache-wise. Just wondering what the latest news is, not trying to ruffle any feathers. Thanks, jon [1] Scot was kind enough to take a stab at breaking it all up into modules, and made the work available. It works great... install the base apache port, then mod_frontpage, mod_ssl, mod_php3, mod_php4, etc etc. And it all works seemlessly. AFAIK, this has been the only ports solution for those of us who want SSL and FP in one server. http://www.westbend.net/~hetzels/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 18:46:59 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A83737B69C; Mon, 5 Feb 2001 18:46:42 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f162kgf32400; Mon, 5 Feb 2001 18:46:42 -0800 (PST) (envelope-from jeh) Date: Mon, 5 Feb 2001 18:46:42 -0800 (PST) From: Message-Id: <200102060246.f162kgf32400@freefall.freebsd.org> To: barney@databus.com, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24884: divide by 0 in healthd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: divide by 0 in healthd State-Changed-From-To: open->feedback State-Changed-By: jeh State-Changed-When: Mon Feb 5 18:46:22 PST 2001 State-Changed-Why: Can't duplicate build problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=24884 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 18:50:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 11ED537B491 for ; Mon, 5 Feb 2001 18:50:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f162o4f32660; Mon, 5 Feb 2001 18:50:04 -0800 (PST) (envelope-from gnats) Date: Mon, 5 Feb 2001 18:50:04 -0800 (PST) Message-Id: <200102060250.f162o4f32660@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "James E. Housley" Subject: Re: ports/24884: divide by 0 in healthd Reply-To: "James E. Housley" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24884; it has been noted by GNATS. From: "James E. Housley" To: freebsd-gnats-submit@FreeBSD.org, barney@databus.com Cc: Subject: Re: ports/24884: divide by 0 in healthd Date: Mon, 05 Feb 2001 21:45:56 -0500 Divide by zero fixed. I can't duplicate the build problem however. My system is also FBSD 4.2-STABLE of 2/1/01. Jim -- /"\ ASCII Ribbon Campaign . \ / - NO HTML/RTF in e-mail . X - NO Word docs in e-mail . / \ ----------------------------------------------------------------- jeh@FreeBSD.org http://www.FreeBSD.org The Power to Serve jim@TheHousleys.Net http://www.TheHousleys.net --------------------------------------------------------------------- Nothing is fool proof, because fools are too ingenious. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 19:38:16 2001 Delivered-To: freebsd-ports@freebsd.org Received: from cartier.cirx.org (cartier.cirx.org [211.72.15.243]) by hub.freebsd.org (Postfix) with ESMTP id AF1E337B4EC for ; Mon, 5 Feb 2001 19:37:57 -0800 (PST) Received: from cartier.cirx.org (nullmail@localhost [127.0.0.1]) by cartier.cirx.org (8.11.2/8.11.2) with SMTP id f163bpl42073; Tue, 6 Feb 2001 11:37:51 +0800 (CST) (envelope-from clive@CirX.ORG) Received: (nullmailer pid 42069 invoked by uid 1000); Tue, 06 Feb 2001 03:37:50 -0000 Date: Tue, 6 Feb 2001 11:37:50 +0800 From: Clive Lin To: Jon Rust Cc: ports@FreeBSD.ORG Subject: Re: Apache mod_ ports Message-ID: <20010206113750.A41637@cartier.cirx.org> References: <20010205180431.D17025@mail.vcnet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010205180431.D17025@mail.vcnet.com>; from jpr@vcnet.com on Mon, Feb 05, 2001 at 06:04:31PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Frontpage and and mod_ssl need to patch apache itself. This means they 2 can't be treated as any www/mod_*. You can install www/apache13-fp OR www/apache13-modssl instead of www/apache13, and feel happy to use other www/mod_*. Apache-SSL will install a new httpsd. Personally I will install it into a different ${PREFIX} and run both httpd and httpsd. On Mon, Feb 05, 2001 at 06:04:31PM -0800, Jon Rust wrote: > Are port maintainers making progress here? I notice that Frontpage and > SSL are still absent from the list of mod_* ports. Any hope of getting > either of them? I'm still using Scot Hetzel's first attempt[1] at this, > and feel myself falling a bit behind, apache-wise. > > Just wondering what the latest news is, not trying to ruffle any > feathers. > > Thanks, > jon > > [1] Scot was kind enough to take a stab at breaking it all up into > modules, and made the work available. It works great... install the base > apache port, then mod_frontpage, mod_ssl, mod_php3, mod_php4, etc etc. > And it all works seemlessly. AFAIK, this has been the only ports > solution for those of us who want SSL and FP in one server. > > http://www.westbend.net/~hetzels/ -- pub 1024D/F8D2B472 2000-08-05 Clive Lin Key fingerprint = 7F9D 57A8 55C7 AA18 49B5 3820 570B 27F6 F8D2 B472 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 20:50:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 06F5137B4EC for ; Mon, 5 Feb 2001 20:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f164o2G47267; Mon, 5 Feb 2001 20:50:02 -0800 (PST) (envelope-from gnats) Date: Mon, 5 Feb 2001 20:50:02 -0800 (PST) Message-Id: <200102060450.f164o2G47267@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Barney Wolff Subject: Re: ports/24884: divide by 0 in healthd Reply-To: Barney Wolff Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24884; it has been noted by GNATS. From: Barney Wolff To: "James E. Housley" Cc: freebsd-gnats-submit@FreeBSD.org, barney@databus.com Subject: Re: ports/24884: divide by 0 in healthd Date: Mon, 5 Feb 2001 23:49:12 -0500 Build problem was unrelated to healthd. Turns out that setting WRKDIRPREFIX= /usr/obj in /etc/make.conf causes most or all port builds to fail, in odd ways. Setting it to /usr/obj/xyz avoids the problem. Thanks! Barney On Mon, Feb 05, 2001 at 09:45:56PM -0500, James E. Housley wrote: > Divide by zero fixed. > > I can't duplicate the build problem however. My system is also FBSD > 4.2-STABLE of 2/1/01. > > Jim > -- > /"\ ASCII Ribbon Campaign . > \ / - NO HTML/RTF in e-mail . > X - NO Word docs in e-mail . > / \ ----------------------------------------------------------------- > jeh@FreeBSD.org http://www.FreeBSD.org The Power to Serve > jim@TheHousleys.Net http://www.TheHousleys.net > --------------------------------------------------------------------- > Nothing is fool proof, because fools are too ingenious. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 21:13:20 2001 Delivered-To: freebsd-ports@freebsd.org Received: from balzac.cybercable.fr (balzac.cybercable.fr [212.198.0.198]) by hub.freebsd.org (Postfix) with SMTP id 2C61B37B401 for ; Mon, 5 Feb 2001 21:13:01 -0800 (PST) Received: (qmail 10761608 invoked from network); 6 Feb 2001 05:12:59 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by balzac.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 6 Feb 2001 05:12:59 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f165CvF16292; Tue, 6 Feb 2001 06:12:58 +0100 (CET) (envelope-from clefevre@citeweb.net) To: "David W. Chapman Jr." Cc: , "Trevin Chow" Subject: Re: /usr/ports/net/isc-dhcp3 problem References: <5.0.2.1.2.20010204231749.00b0b298@mail.brightmail.com> <009601c08f86$b6352620$931576d8@inethouston.net> X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C In-Reply-To: "David W. Chapman Jr."'s message of "Mon, 5 Feb 2001 09:17:11 -0600" From: Cyrille Lefevre Reply-To: clefevre@noos.fr Mail-Copies-To: never Date: 06 Feb 2001 06:12:55 +0100 Message-ID: <7l348kdk.fsf@gits.dyndns.org> Lines: 14 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "David W. Chapman Jr." writes: > It does one mine, although you have to edit it manually to set the > interface. anybody to close http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24542 and to commit http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24686 ? thanks by advance. Cyrille. -- home: mailto:clefevre@citeweb.net UNIX is user-friendly; it's just particular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 21:16:36 2001 Delivered-To: freebsd-ports@freebsd.org Received: from lafontaine.cybercable.fr (lafontaine.cybercable.fr [212.198.0.202]) by hub.freebsd.org (Postfix) with SMTP id 606D737B401 for ; Mon, 5 Feb 2001 21:16:19 -0800 (PST) Received: (qmail 38416637 invoked from network); 6 Feb 2001 05:16:17 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by lafontaine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 6 Feb 2001 05:16:17 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f165GGd16334; Tue, 6 Feb 2001 06:16:16 +0100 (CET) (envelope-from clefevre@citeweb.net) To: "David W. Chapman Jr." Cc: , "Trevin Chow" Subject: Re: /usr/ports/net/isc-dhcp3 problem References: <5.0.2.1.2.20010204231749.00b0b298@mail.brightmail.com> <009601c08f86$b6352620$931576d8@inethouston.net> X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C In-Reply-To: "David W. Chapman Jr."'s message of "Mon, 5 Feb 2001 09:17:11 -0600" From: Cyrille Lefevre Reply-To: clefevre@noos.fr Mail-Copies-To: never Date: 06 Feb 2001 06:16:14 +0100 Message-ID: <1ytc8k81.fsf@gits.dyndns.org> Lines: 15 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "David W. Chapman Jr." writes: > It does one mine, although you have to edit it manually to set the > interface. the alternative, as I do, is to do things from /etc/rc.conf, such as : ifconfig_ep0="DHCP" dhcp_program="/usr/local/sbin/dhclient" dhcp_flags="-q" Cyrille. -- home: mailto:clefevre@citeweb.net UNIX is user-friendly; it's just particular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 22:24:48 2001 Delivered-To: freebsd-ports@freebsd.org Received: from homer.softweyr.com (bsdconspiracy.net [208.187.122.220]) by hub.freebsd.org (Postfix) with ESMTP id 120CB37B503; Mon, 5 Feb 2001 22:24:26 -0800 (PST) Received: from [127.0.0.1] (helo=softweyr.com ident=Fools trust ident!) by homer.softweyr.com with esmtp (Exim 3.16 #1) id 14Q1gs-0000aE-00; Mon, 05 Feb 2001 23:33:26 -0700 Message-ID: <3A7F9AB6.5CAA983B@softweyr.com> Date: Mon, 05 Feb 2001 23:33:26 -0700 From: Wes Peters Organization: Softweyr LLC X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Markus Holmberg Cc: freebsd-security@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Package integrity check? References: <20010205210459.A2479@acc.umu.se> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Markus Holmberg wrote: > > Hello. > > Is there any way to perform an integrity check on packages that are fetched > with "pkg_add -r "? > > (Similarly to building a package manually with a trusted /usr/ports and > checksumming downloaded files) > > I assume there is no way to do integrity checking on packages, which > leads me to the question if the general opinion among the security > conscious is that packages (from untrusted parties, like any ftp site on > the mirror list) should not be used at all? I have package signing tools, integrated into the pkg_ commands, sitting on Freefall waiting to be committed. They let you sign a package with an MD5 checksum (this mechanism is a little weird, inherited from the OpenBSD code), a PGP signature (this code is also inherited from OpenBSD, uses PGP 2.xx command line tools, and kinda sucks in my opinion) and X.509 signatures. If you need it, I'll go ahead and commit what I have. I opened a discussion about this on the -ports mailing list a while ago, which immediately veered off into outer space. I haven't commited these bits since then, but am willing to do so now. We could discuss some of the sensible things people asked for and add them after the fact. For instance, somebody mentioned that pkg_info should report if the package is signed or not; pkg_add should (perhaps optionally) refuse to install a signed package whose signature does not match. What is not clear is whether it is OK to force pkg_add and pkg_info to link against the crypto libraries, or if they should call the pkg_check executable (if it is installed) to do the work. -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 5 22:48:12 2001 Delivered-To: freebsd-ports@freebsd.org Received: from homer.softweyr.com (bsdconspiracy.net [208.187.122.220]) by hub.freebsd.org (Postfix) with ESMTP id 0233D37B491; Mon, 5 Feb 2001 22:47:51 -0800 (PST) Received: from [127.0.0.1] (helo=softweyr.com ident=Fools trust ident!) by homer.softweyr.com with esmtp (Exim 3.16 #1) id 14Q23f-0000aj-00; Mon, 05 Feb 2001 23:56:59 -0700 Message-ID: <3A7FA03B.D74270AD@softweyr.com> Date: Mon, 05 Feb 2001 23:56:59 -0700 From: Wes Peters Organization: Softweyr LLC X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Markus Holmberg Cc: freebsd-security@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Package integrity check? References: <20010205210459.A2479@acc.umu.se> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Markus Holmberg wrote: > > Hello. > > Is there any way to perform an integrity check on packages that are fetched > with "pkg_add -r "? OK, I committed it. Take a look, ask questions, let me know what you think. If nobody has a fit, I can actually wire this up in the pkg_install/Makefile later this week. -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 0:50:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8F70537B4EC for ; Tue, 6 Feb 2001 00:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f168o1T82093; Tue, 6 Feb 2001 00:50:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 50DAA37B401 for ; Tue, 6 Feb 2001 00:42:47 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f168glJ81274; Tue, 6 Feb 2001 00:42:47 -0800 (PST) (envelope-from nobody) Message-Id: <200102060842.f168glJ81274@freefall.freebsd.org> Date: Tue, 6 Feb 2001 00:42:47 -0800 (PST) From: avn@any.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24893: mail/solidpop3d installation problems Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24893 >Category: ports >Synopsis: mail/solidpop3d installation problems >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 Feb 06 00:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alexey V. Neyman >Release: 4.2-STABLE i386 >Organization: ANY.RU >Environment: FreeBSD srv1.any 4.2-STABLE FreeBSD 4.2-STABLE #7: Tue Jan 30 16:30:25 MSK 2001 root@srv1.any:/usr/src/sys/compile/AMD i386 >Description: make install in /usr/ports/mail/solidpop3d makes some erroneous steps first, it does not install pop_auth(1) utility, as it does 'make install' in word/solid-pop3d-0.15 second, if configured with --enable-apop, it cannot be made (unresolved externals like MD5Init and such - -lmd needs to be included to linker) third, 'make install' in mail/solidpop3d and in mail/solidpop3d/work/solid-pop3d-0.15 place main executable, spop3d, in different places (into /usr/local/libexec and /usr/local/bin, respectively) >How-To-Repeat: srv1> cd /usr/ports/mail/solidpop3d srv1> make extract srv1> cd work/solid-pop3d-0.15 srv1> ./configure --enable-apop [.. skipped ..] srv1> make all [.. skipped ..] gcc -g -O2 -o spop3d authenticate.o cmds.o log.o fdfgets.o maildrop.o main.o memops.o options.o response.o vsnprintf.o apop.o mailbox.o maildir.o userconfig.o configfile.o -lcrypt apop.o: In function `apop_authenticate': /usr/ports/mail/solidpop3d/work/solid-pop3d-0.15/src/apop.c(.text+0x97): undefined reference to `MD5Init' [ more undefined references follow ] manually including -lmd in linker option in makefile solves this problem so configure.in should contain check where MD5* routines are contained >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 Feb 6 0:57:34 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (smtp.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 3F8AD37B684; Tue, 6 Feb 2001 00:56:50 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f168u0824639; Tue, 6 Feb 2001 10:56:00 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.9.3) with ESMTP id f168Un936352; Tue, 6 Feb 2001 10:30:49 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A7FB637.792D33D8@FreeBSD.org> Date: Tue, 06 Feb 2001 10:30: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: Peter Pentchev Cc: Jordan Hubbard , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] References: <8064.981413776@winston.osd.bsdi.com> <20010206010142.E17885@ringworld.oblivion.bg> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Peter Pentchev wrote: > On Mon, Feb 05, 2001 at 02:56:16PM -0800, Jordan Hubbard wrote: > > > But do you really mean regexp-style wildcards, or merely shell-globbing > > > wildcards? If it's just shell globbing, that's much easier to do - > > > just an additional fnmatch() call. > > > > Well, I could go both ways. People are generally a lot more familiar > > with shell globbing syntax and tend to understand "*foo*" over > > ".*foo.*" (unless they're regexp weenies like me) but regexps are far > > more powerful and also delight the engineers. Maybe make it an > > option. ;) > > Don't get me wrong, I *love* regexps too :) Just.. maybe shell globbing > shall be a bit more POLA-friendly, don't you think? And then, regexp > globbing activated by a cmdline option.. mmmmmmm! :) > > (and possibly a shell alias which sets that option by default...) Hehe folks, you are probably reading my brain (I pondered something like that, but was away from e-mail) ;). What do you think if I reimplement 'fuzzy' and 'prefix' options from original proposal into `glob' and `regex' options? So regex kidz would be able say "-x .*foo.*", while glob-lovers "-g *foo*". -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 1: 8:34 2001 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 902E237B684; Tue, 6 Feb 2001 01:08:16 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.2/8.11.1) with ESMTP id f1698BV10202; Tue, 6 Feb 2001 01:08:11 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Maxim Sobolev Cc: Peter Pentchev , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] In-Reply-To: Message from Maxim Sobolev of "Tue, 06 Feb 2001 10:30:47 +0200." <3A7FB637.792D33D8@FreeBSD.org> Date: Tue, 06 Feb 2001 01:08:11 -0800 Message-ID: <10197.981450491@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > but was away from e-mail) ;). What do you think if I reimplement 'fuzzy' and > 'prefix' options from original proposal into `glob' and `regex' options? So > regex kidz would be able say "-x .*foo.*", while glob-lovers "-g *foo*". I love it. You could even make -g "implicit", e.g. I don't see any reason why "pkg_info emacs*" shouldn't just work, right? The only time you really need to pass a flag is to indicate a particular type of globbing, e.g. regex. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 1:28:57 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (pop3.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 5F5F737B401; Tue, 6 Feb 2001 01:28:10 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f169R6825381; Tue, 6 Feb 2001 11:27:08 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.9.3) with ESMTP id f169R8936858; Tue, 6 Feb 2001 11:27:08 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A7FC36A.1434D2CC@FreeBSD.org> Date: Tue, 06 Feb 2001 11:27: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: Jordan Hubbard Cc: Peter Pentchev , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] References: <10197.981450491@winston.osd.bsdi.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jordan Hubbard wrote: > > but was away from e-mail) ;). What do you think if I reimplement 'fuzzy' and > > 'prefix' options from original proposal into `glob' and `regex' options? So > > regex kidz would be able say "-x .*foo.*", while glob-lovers "-g *foo*". > > I love it. You could even make -g "implicit", e.g. I don't see any > reason why "pkg_info emacs*" shouldn't just work, right? The only > time you really need to pass a flag is to indicate a particular type > of globbing, e.g. regex. Agreed. I already have globbing in place, so expect patches soon ;). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 2:14:36 2001 Delivered-To: freebsd-ports@freebsd.org Received: from jamus.xpert.com (helpful.xpert.com [199.203.132.17]) by hub.freebsd.org (Postfix) with ESMTP id 62C5D37B491; Tue, 6 Feb 2001 02:14:15 -0800 (PST) Received: from roman (helo=localhost) by jamus.xpert.com with local-esmtp (Exim 3.12 #5) id 14Q58H-0002WI-00; Tue, 06 Feb 2001 12:13:57 +0200 Date: Tue, 6 Feb 2001 12:13:57 +0200 (IST) From: Roman Shterenzon To: Wes Peters Cc: Markus Holmberg , , Subject: Re: Package integrity check? In-Reply-To: <3A7F9AB6.5CAA983B@softweyr.com> Message-ID: Organization: Xpert UNIX Systems Ltd. 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, 5 Feb 2001, Wes Peters wrote: > Markus Holmberg wrote: > > > > Hello. > > > > Is there any way to perform an integrity check on packages that are fetched > > with "pkg_add -r "? > > > > (Similarly to building a package manually with a trusted /usr/ports and > > checksumming downloaded files) > > > > I assume there is no way to do integrity checking on packages, which > > leads me to the question if the general opinion among the security > > conscious is that packages (from untrusted parties, like any ftp site on > > the mirror list) should not be used at all? > > I have package signing tools, integrated into the pkg_ commands, sitting > on Freefall waiting to be committed. They let you sign a package with > an MD5 checksum (this mechanism is a little weird, inherited from the > OpenBSD code), a PGP signature (this code is also inherited from OpenBSD, > uses PGP 2.xx command line tools, and kinda sucks in my opinion) and Hmm.. GnuPG flags suppport would be nice. --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 Feb 6 2:23:37 2001 Delivered-To: freebsd-ports@freebsd.org Received: from agraf.sk (unknown [62.168.105.150]) by hub.freebsd.org (Postfix) with SMTP id 05C5537B491 for ; Tue, 6 Feb 2001 02:23:19 -0800 (PST) Received: (qmail 4120 invoked from network); 6 Feb 2001 10:24:08 -0000 Received: from unknown (HELO agraf.sk) (192.168.1.47) by 62.168.105.150 with SMTP; 6 Feb 2001 10:24:08 -0000 Message-ID: <3A7FD140.A71513A@agraf.sk> Date: Tue, 06 Feb 2001 11:26:08 +0100 From: Radovan Gibala X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.16 i586) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: Qmail + MySQL Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi ! There is qmail in the ports tree (which is fine, although not ported qmail seems to work fine), but is there a chance to get ported Qmail with MySQL support as well ? I know about the vpopmail alternative, but I love MySQL and there are more aplications on my systems using MySQL for some purposes. Does anybody ported Qmail with MySQL support ? ( http://iain.cx/unix/qmail/mysql.php ) Thanks Radovan Gibala ALFANET Slovakia Network Operator To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 3: 0:33 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4471837B65D for ; Tue, 6 Feb 2001 03:00:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16B08901584; Tue, 6 Feb 2001 03:00:08 -0800 (PST) (envelope-from gnats) Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by hub.freebsd.org (Postfix) with ESMTP id EB5A237B401 for ; Tue, 6 Feb 2001 02:53:51 -0800 (PST) Received: by freebsd.org.ru (Postfix, from userid 1000) id 86E8113F; Tue, 6 Feb 2001 13:53:43 +0300 (MSK) Message-Id: <20010206105343.86E8113F@freebsd.org.ru> Date: Tue, 6 Feb 2001 13:53:43 +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/24894: update databases/db3: sominor version fixed (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24894 >Category: ports >Synopsis: update databases/db3: sominor version fixed (by maintainer) >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: Tue Feb 06 03:00:01 PST 2001 >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: update databases/db3: sominor version fixed (by maintainer) >How-To-Repeat: >Fix: diff -ruN db3.old/files/patch-aa db3/files/patch-aa --- db3.old/files/patch-aa Tue Feb 6 12:58:43 2001 +++ db3/files/patch-aa Tue Feb 6 12:41:44 2001 @@ -12,7 +12,7 @@ +libso_target= $(libso_base)$(SOMAJOR).la libso_default= $(libso_base).@SOSUFFIX@ -libso_major= $(libso_base)-$(SOMAJOR).@SOSUFFIX@ -+libso_major= $(libso_base)$(SOMAJOR).@SOSUFFIX@.1 ++libso_major= $(libso_base)$(SOMAJOR).@SOSUFFIX@.2 ################################################## # C++ @@ -26,7 +26,7 @@ +libxso_target= $(libxso_base)$(SOMAJOR).la libxso_default= $(libxso_base).@SOSUFFIX@ -libxso_major= $(libxso_base)-$(SOMAJOR).@SOSUFFIX@ -+libxso_major= $(libxso_base)$(SOMAJOR).@SOSUFFIX@.1 ++libxso_major= $(libxso_base)$(SOMAJOR).@SOSUFFIX@.2 ################################################## # JAVA diff -ruN db3.old/pkg-plist db3/pkg-plist --- db3.old/pkg-plist Tue Feb 6 12:58:43 2001 +++ db3/pkg-plist Tue Feb 6 12:58:21 2001 @@ -14,10 +14,10 @@ bin/db_verify lib/libdb.so lib/libdb3.so -lib/libdb3.so.1 +lib/libdb3.so.2 lib/libdb_cxx.so lib/libdb_cxx3.so -lib/libdb_cxx3.so.1 +lib/libdb_cxx3.so.2 share/doc/db3/api_c/c_pindex.html share/doc/db3/api_c/pindex.src share/doc/db3/api_c/db_cursor.html >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 Feb 6 3: 2:13 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1C8D737B491; Tue, 6 Feb 2001 03:01:57 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16B1vt02094; Tue, 6 Feb 2001 03:01:57 -0800 (PST) (envelope-from jeh) Date: Tue, 6 Feb 2001 03:01:57 -0800 (PST) From: Message-Id: <200102061101.f16B1vt02094@freefall.freebsd.org> To: barney@databus.com, jeh@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24884: divide by 0 in healthd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: divide by 0 in healthd State-Changed-From-To: feedback->closed State-Changed-By: jeh State-Changed-When: Tue Feb 6 03:00:48 PST 2001 State-Changed-Why: Build problem was unrelated to healthd. Turns out that setting WRKDIRPREFIX= /usr/obj in /etc/make.conf causes most or all port builds to fail, in odd ways. Setting it to /usr/obj/xyz avoids the problem. Thanks! Barney -- Closed. Thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24884 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 3:30:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E0E937B4EC for ; Tue, 6 Feb 2001 03:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16BU2o08006; Tue, 6 Feb 2001 03:30:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1062D37B401 for ; Tue, 6 Feb 2001 03:20:51 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16BKo707086; Tue, 6 Feb 2001 03:20:50 -0800 (PST) (envelope-from nobody) Message-Id: <200102061120.f16BKo707086@freefall.freebsd.org> Date: Tue, 6 Feb 2001 03:20:50 -0800 (PST) From: odip@bionet.nsc.ru To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24895: New port: www/sqmgrlog Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24895 >Category: ports >Synopsis: New port: www/sqmgrlog >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 06 03:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Dmitry Grigorovich >Release: FreeBSD 4.2-RELEASE >Organization: ICiG >Environment: FreeBSD ork.bionet.nsc.ru 4.2-RELEASE FreeBSD 4.2-RELEASE #1: Mon Jan 29 18:04:1 6 NOVT 2001 root@ork.bionet.nsc.ru:/usr/src/sys/compile/ODIP i386 >Description: There are nice log analizer for squid. It is sqmgrlog. Sqmgrlog is a Squid Analisys Report Generator that allow you to view "where" your users are going to on the Internet. Sqmgrlog generate reports in html, with many fields, like: users, IP Addresses, bytes, sites and times. WWW: http://web.onda.com.br/orso/sqmgrlog.html >How-To-Repeat: >Fix: Unpack follow uuencoded file into ports/www/ Build and install port of sqmgrlog begin 644 sqmgrlog.tar.gz M'XL(`.+K_A7])%\F!08;(/MA-ELA4D(82N!'#"3_7!5 ME+&%<<6VO+(=DKF[_WXMF_ MX?]\_@^@2V8049;$8%/?)W;BT1""^6J`"66-PF*12`=P824$;$:P"BD8M5G?P9L^MOJ#3J][6M`JJB:=-X>M=J_?:0U. M"SB>=-,<#%O]T:`SY"W3)(D:U>J,C"LT=*R*38/*F%4IBVE50MI.=XA_K?YI MP7*89X5G$_R"<>Q4*',EJ=W],#KO=2\[[0]]E.*)Q-*R.FKVVSB`+)/0&OM$ MCAA^W>/IX;]O^ZW+SN__K8Z]$&1YYB53V;5M2:IXH>VG#H%?.'^NH$IP_ZOT MW?._5*SCQ8D73N@+KJT%]MD_F,;<_I6:4>/^7S,T8?^O@IL+'=XN%H',;:&" M^JBXGX[@%'1B&;9-,'R?&!/;.K95QSD>3Y3:^&1<(VKM^Y>=P%\$2_N/[ET9 M_5I`PN2EQ]AK__HB_BOUFJ9B-_[JPOY?`X/Y_(,7@P6#/U+/@69H^5[\%$.? M\``#;1(29B64583!_]VP8?\.B6WV\F/LS?_UVM+^ZTH6_W$;(.S_-3#XYTV[ M?]UK@R1]DRN`9&HE8/D^G<$332&A\.#A3D*"XFQ*&"GR5@9I3!AR8P1U]>&D M`6'CC,,`&61R#5-VCP\X87=W=PWXTMYD8=P5KL7=OGO#_B/\\A>/_E\1_VOS M^&^8BJ%E^W]3%?G_JP#WE\ME(I'$7JT9FX83$>__[EC:/S]4B7_,*?!7G_^B M_9NU.K=_M::(\]_7P-;\1Q:&-=FR7G2,??Z_9M07Y[^*89A\_VL]-&:E0YKF%.^+`;ZD/F@'J<4-7&SAWFJ(H4JE46M%N'?W6M8::G\9* M9V<@Z[I6-J&4%V=G$ECV:/GJZ2'6K/1QY'BLNFR%`QA.,?6,IS3U'1@3.']R MPS1>$T_"]%*2KR\NKYOMP6E1=HM2:5DK9KW(A1\10\PYS@C85@@L#>=,*G$Z M%IO8=>RV__&+CK'7_E?W/TH]/__13578_VM@T_Z]\%M<`))O>8':2:-NKKQ` MY@,6'J!Y/NIT.\.W66YYE-7S:Y!1\\/OHXM._ZT]<=$K'.VS7[$AZ)!'+%W<8J/[Q*+/TKJ>G6!J#IK:J*D-?2T";-!O9("8_F&PJ*UBP(G)4\#L ME_NP@_F4W_$K`G[/P$_A%Z?],\_W(<2M6T(9<2HKZJ61H:=&)X<=DGQ`TR1* M$[Z%A&H:LZI/;3Z$5/K,:_Q?C!PKL;;(88-\ M2@.R9![XF[0H;)\X5U8"#X3%'@WSO>BPV6X`S+EDT2)/C)4\-5:TI6(R2DXP MXD''2YZRRG_XS^-2%3=8`WY+G]UJ4'[_P8N88'4AR(-GP>!F>)NKZ1G'1U3" ML\8U83&X91="E#Y"=Y35T_B^=*[^?T6W[>[.A MJ6LYOZERQY87W+%Q]YTP.WIZ>T4LA[#W[CGU*2L7Q[X5VE/B6'Y`0Z=X]&Z= M]I*&R<#[1,I%6=WJ&I(@NO"0034)(MXGK_IZF9_->[\V)G`6I7TL=L>'+(3 MV9:EC[L*YL1W7C+%X,-YEXM>5'PVY#F/)0N)US3)`\V'/$"4BUG8V-+3,X+G MGSS@T:&;!N4B.H#G0[-.M%M56519J:*(J7&W=3[DA'^VM0@("`@("`@("`@( ?"`@("`@("`@("`@("`@("`@("/PU\3^[J41B`%```'^V ` 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 Tue Feb 6 4: 0:29 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8A1E337B4EC for ; Tue, 6 Feb 2001 04:00:09 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16C09411693; Tue, 6 Feb 2001 04:00:09 -0800 (PST) (envelope-from gnats) Received: from relay2.agava.net.ru (2.oivt.mipt.ru [193.125.142.2]) by hub.freebsd.org (Postfix) with ESMTP id D230037B491 for ; Tue, 6 Feb 2001 03:53:25 -0800 (PST) Received: from gw.office.agava.ru (2.oivt.mipt.ru [193.125.142.2]) by relay2.agava.net.ru (Postfix) with ESMTP id 8F25743802 for ; Tue, 6 Feb 2001 14:53:18 +0300 (MSK) Received: from juil.domain (juil.domain [192.168.1.50]) by gw.office.agava.ru (Postfix) with ESMTP id 5E59C5EA2 for ; Tue, 6 Feb 2001 14:53:18 +0300 (MSK) Received: by juil.domain (Postfix, from userid 1001) id 06D971B8; Tue, 6 Feb 2001 14:53:27 +0300 (MSK) Message-Id: <20010206115327.06D971B8@juil.domain> Date: Tue, 6 Feb 2001 14:53:27 +0300 (MSK) From: ilya@martynov.org Reply-To: ilya@martynov.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24896: Problem installing xaos-3.0 port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24896 >Category: ports >Synopsis: Problem installing xaos-3.0 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 Feb 06 04:00:05 PST 2001 >Closed-Date: >Last-Modified: >Originator: Ilya Martynov >Release: FreeBSD 4.2-STABLE i386 >Organization: AGAVA Software >Environment: N/A >Description: On installation if xaos-3.0 port was compiled with SVGAlib driver support (which happens by defualt if configure script finds required libs) it tries to make installed file xaos suid and chgrp it to group 'root' which doesn't exists on standart FreeBSD system. >How-To-Repeat: cd /usr/ports/graphics/xaos make all install On installation it dies with message 'chgrp: root: illegal group name' >Fix: Either put add this patch to /usr/ports/graphics/xaos/files: --- configure~ Thu Mar 5 00:49:12 1998 +++ configure Tue Feb 6 14:40:30 2001 @@ -5522,7 +5522,7 @@ #define SVGA_DRIVER 1 EOF - STICKY='chmod +s $(bindir)/xaos; chown root $(bindir)/xaos; chgrp root $(bindir)/xaos' + STICKY='chmod +s $(bindir)/xaos; chown root $(bindir)/xaos; chgrp wheel $(bindir)/xaos' DRIVERDIRS="$DRIVERDIRS ui/ui-drv/svga" DRIVERLIBS="$DRIVERLIBS lib/libuisvga.a" if test "x$ac_cv_func_pthread_sighandler" = xyes; then Or disable compiling of Xaos with SVGAlib driver support. In this case it will not try to make xaos binary suid and will not try to chgrp it to root. Or even better add my patch but disable by default compiling of Xaos with SVGAlib driver support - many users will not like to install suid binary becouse they have XFree86 and they don't need SVGAlib support. >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 Feb 6 4:10:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E9D2B37B65D for ; Tue, 6 Feb 2001 04:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16CA2v20765; Tue, 6 Feb 2001 04:10:02 -0800 (PST) (envelope-from gnats) Received: from penguin.egd.igd.fhg.de (penguin.egd.igd.fhg.de [192.102.170.145]) by hub.freebsd.org (Postfix) with ESMTP id 5C66037B401 for ; Tue, 6 Feb 2001 04:08:22 -0800 (PST) Received: (from root@localhost) by penguin.egd.igd.fhg.de (8.11.1/8.11.1) id f16C9vN88540; Tue, 6 Feb 2001 13:09:57 +0100 (CET) (envelope-from runge) Message-Id: <200102061209.f16C9vN88540@penguin.egd.igd.fhg.de> Date: Tue, 6 Feb 2001 13:09:57 +0100 (CET) From: Thomas Runge Reply-To: runge@penguin.egd.igd.fhg.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24898: ports/x11-clocks/xtu homepage changed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24898 >Category: ports >Synopsis: ports/x11-clocks/xtu homepage changed >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 Feb 06 04:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Thomas Runge >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: ports/x11-clocks/xtu Homepage and address of author/port maintainer changed. >How-To-Repeat: >Fix: diff -r1.5 Makefile 11c11 < MASTER_SITES= http://www.rostock.zgdv.de/~runge/xtu/ --- > MASTER_SITES= http://core.de/~coto/xtu/ 13c13 < MAINTAINER= runge@rostock.zgdv.de --- > MAINTAINER= runge@core.de >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 Feb 6 4:10:25 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D68A437B503 for ; Tue, 6 Feb 2001 04:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16CA2v20749; Tue, 6 Feb 2001 04:10:02 -0800 (PST) (envelope-from gnats) Received: from penguin.egd.igd.fhg.de (penguin.egd.igd.fhg.de [192.102.170.145]) by hub.freebsd.org (Postfix) with ESMTP id E75BE37B67D for ; Tue, 6 Feb 2001 04:05:22 -0800 (PST) Received: (from root@localhost) by penguin.egd.igd.fhg.de (8.11.1/8.11.1) id f16C6tM87939; Tue, 6 Feb 2001 13:06:55 +0100 (CET) (envelope-from runge) Message-Id: <200102061206.f16C6tM87939@penguin.egd.igd.fhg.de> Date: Tue, 6 Feb 2001 13:06:55 +0100 (CET) From: runge@rostock.zgdv.de Reply-To: runge@core.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24897: xmradio's homepage moved and authors/port maintainers address Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24897 >Category: ports >Synopsis: xmradio's homepage moved and authors/port maintainers address >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 Feb 06 04:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Thomas Runge >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: ports/audio/xmradio. Homepage and address of author and port maintainer changed. >How-To-Repeat: >Fix: diff -r1.11 Makefile 11c11 < MASTER_SITES= http://www.rostock.zgdv.de/~runge/radio/ --- > MASTER_SITES= http://core.de/~coto/radio/ 13c13 < MAINTAINER= runge@rostock.zgdv.de --- > MAINTAINER= runge@core.de >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 Feb 6 4:26:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8D03637B4EC; Tue, 6 Feb 2001 04:26:25 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16CQPk22772; Tue, 6 Feb 2001 04:26:25 -0800 (PST) (envelope-from olgeni) Date: Tue, 6 Feb 2001 04:26:25 -0800 (PST) From: Message-Id: <200102061226.f16CQPk22772@freefall.freebsd.org> To: runge@penguin.egd.igd.fhg.de, olgeni@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24898: ports/x11-clocks/xtu homepage changed Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/x11-clocks/xtu homepage changed State-Changed-From-To: open->closed State-Changed-By: olgeni State-Changed-When: Tue Feb 6 04:25:46 PST 2001 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=24898 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 5:18:53 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7B0CF37B401; Tue, 6 Feb 2001 05:18:36 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16DIZa31296; Tue, 6 Feb 2001 05:18:35 -0800 (PST) (envelope-from olgeni) Date: Tue, 6 Feb 2001 05:18:35 -0800 (PST) From: Message-Id: <200102061318.f16DIZa31296@freefall.freebsd.org> To: olgeni@uli.it, olgeni@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/20997: [PATCH] Man page, install enhancements for AIDE port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] Man page, install enhancements for AIDE port State-Changed-From-To: feedback->closed State-Changed-By: olgeni State-Changed-When: Tue Feb 6 05:17:42 PST 2001 State-Changed-Why: A new set of changes has been approved by maintainer, and committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=20997 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 6:10: 6 2001 Delivered-To: freebsd-ports@freebsd.org Received: from m08.alpha-net.ne.jp (m08.alpha-net.ne.jp [210.229.64.38]) by hub.freebsd.org (Postfix) with ESMTP id 385C637B69F; Tue, 6 Feb 2001 06:09:42 -0800 (PST) Received: from kyoto-tc012-p61.alpha-net.ne.jp (kyoto-tc012-p61.alpha-net.ne.jp [210.237.119.189]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id XAA15739; Tue, 6 Feb 2001 23:09:34 +0900 (JST) Received: from souffle.bogus-local.net (localhost [127.0.0.1]) by kyoto-tc012-p61.alpha-net.ne.jp (Postfix) with ESMTP id 54C6C16B3C; Tue, 6 Feb 2001 23:09:36 +0900 (JST) Date: Tue, 06 Feb 2001 23:09:35 +0900 Message-ID: <86vgqn7vj4.wl@cheerful.com> From: FUJISHIMA Satsuki To: Maxim Sobolev Cc: John Polstra , ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: Strange problems with dynamic linking of libGL.so.1 from XFree86-4.0.2_5 In-Reply-To: <3A755D84.266A80E7@FreeBSD.org> References: <3A6C3D19.E1F56291@FreeBSD.org> <3A6FE52B.AC9970C2@FreeBSD.org> <200101251842.f0PIgTL32394@vashon.polstra.com> <3A70756F.D8A7ED75@FreeBSD.org> <200101251903.f0PJ3qF32488@vashon.polstra.com> <3A755D84.266A80E7@FreeBSD.org> User-Agent: Wanderlust/2.4.0 (Rio) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.1 (AOI) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Mon, 29 Jan 2001 14:09:41 +0200, Maxim Sobolev wrote: > Also I've noted > that some ports linking with libGL now need -pthread linker flag for link to succeed > (x11-toolkits/gtkglarea for example), which is strange because libGL.so.1 is already > linked with -pthread and thus should have libc_r recorded as dependency in it, You missed here, libGL.so.1 doesn't have dependency on libc_r. cc -shared -pthread -o libGL.so.1 does nothing related -lc_r. (try cc -v) ==== LD_LIBRARY_PATH=../../exports/lib cc -v -o ./libGL.so.1.2~ -shared -rpath /usr/X11R6/lib -Wl,-soname,libGL.so.1 glx/clientattrib.o glx/compsize.o glx/dispatch.o glx/eval.o glx/g_render.o glx/g_single.o glx/g_vendpriv.o glx/glapi.o glx/glapi_x86.o glx/glapinoop.o glx/glthread.o glx/glxcmds.o glx/glxext.o glx/indirect_init.o glx/pixel.o glx/pixelstore.o glx/render2.o glx/renderpix.o glx/single2.o glx/singlepix.o glx/vertarr.o glx/xfont.o dri/XF86dri.o dri/dri_glx.o -pthread Using builtin specs. gcc version 2.95.3 20010101 (prerelease) /usr/libexec/elf/ld -m elf_i386 -rpath /usr/X11R6/lib -Bshareable -o ./libGL.so.1.2~ /usr/lib/crti.o /usr/lib/crtbeginS.o -L/usr/libexec/elf -L/usr/libexec -L/usr/lib -soname libGL.so.1 glx/clientattrib.o glx/compsize.o glx/dispatch.o glx/eval.o glx/g_render.o glx/g_single.o glx/g_vendpriv.o glx/glapi.o glx/glapi_x86.o glx/glapinoop.o glx/glthread.o glx/glxcmds.o glx/glxext.o glx/indirect_init.o glx/pixel.o glx/pixelstore.o glx/render2.o glx/renderpix.o glx/single2.o glx/singlepix.o glx/vertarr.o glx/xfont.o dri/XF86dri.o dri/dri_glx.o -lgcc -lgcc /usr/lib/crtendS.o /usr/lib/crtn.o ==== As libc_r does not have libc feature now, there's no reason to avoid linking -lc_r against shared libraries, I think. -- FUJISHIMA Satsuki Index: contrib/gcc.295/config/freebsd.h =================================================================== RCS file: /home/ncvs/src/contrib/gcc.295/config/freebsd.h,v retrieving revision 1.31 diff -u -r1.31 freebsd.h --- contrib/gcc.295/config/freebsd.h 2001/01/25 18:57:13 1.31 +++ contrib/gcc.295/config/freebsd.h 2001/02/06 08:54:23 @@ -76,10 +76,8 @@ (like the default, except no -lg, and no -p). */ #undef LIB_SPEC #define LIB_SPEC "\ - %{!shared: \ - %{!pg: %{pthread:-lc_r} -lc} \ - %{pg: %{pthread:-lc_r_p} -lc_p} \ - }" + %{!pg: %{pthread:-lc_r} %{!shared:-lc}} \ + %{pg: %{pthread:-lc_r_p} %{!shared:-lc_p}}" /************************[ Target stuff ]***********************************/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 6:29: 5 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hydra.pop-hannover.de (magnum.asys-h.de [193.98.1.190]) by hub.freebsd.org (Postfix) with SMTP id 37CB337B69C for ; Tue, 6 Feb 2001 06:28:48 -0800 (PST) Received: (qmail 18984 invoked from network); 6 Feb 2001 14:28:45 -0000 Received: from unknown (HELO ccgnt03.ccg.intern) (213.73.10.5) by hydra.pop-hannover.de with SMTP; 6 Feb 2001 14:28:45 -0000 Received: by CCGNT03 with Internet Mail Service (5.5.2650.21) id ; Tue, 6 Feb 2001 15:30:10 +0100 Message-ID: <39F27E3F569FD4119EF200508BAF85B9AC6D0C@CCGNT30> From: "Ennis, Colm" To: "'freebsd-ports@freebsd.org'" Subject: wheris is the djbdns port distfile? Date: Tue, 6 Feb 2001 15:30:25 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org hi, sorry for the lameness of this question but im a little stuck. does anyone know where i can get the djbdns 1.04 distfile? ...i've followed instructions from both the hanbook and my "complete freebsd" book but all i find is broken links. im not on this list so please send responses directly to me, thanks, colm ennis To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 6:30:55 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 29B8237B69C for ; Tue, 6 Feb 2001 06:30:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16EU6R43226; Tue, 6 Feb 2001 06:30:06 -0800 (PST) (envelope-from gnats) Received: from concorde.firebird.com.tw (concorde.firebird.com.tw [211.72.53.91]) by hub.freebsd.org (Postfix) with ESMTP id 8194637B698 for ; Tue, 6 Feb 2001 06:26:37 -0800 (PST) Received: (from edwardc@localhost) by concorde.firebird.com.tw (8.11.2/8.11.1) id f16EQZx45493; Tue, 6 Feb 2001 22:26:35 +0800 (CST) (envelope-from edwardc) Message-Id: <200102061426.f16EQZx45493@concorde.firebird.com.tw> Date: Tue, 6 Feb 2001 22:26:35 +0800 (CST) From: Edward Ping-Da Chuang Reply-To: edwardc@firebird.com.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/24899: NEW Port: Firebird BBS 3.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24899 >Category: ports >Synopsis: NEW Port: Firebird BBS 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 Feb 06 06:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Edward Ping-Da Chuang >Release: FreeBSD 5.0-CURRENT i386 >Organization: Firebird BBS Project >Environment: System: FreeBSD concorde.firebird.com.tw 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Tue Jan 30 18:21:57 CST 2001 root@concorde.upma.net:/usr/src/sys/compile/Concorde i386 >Description: Firebird BBS is widely used telnet based Bulletin Board System in Chinese Internet Community. In Taiwan, there're over 300 BBS sites using Firebird, about 50 sites in China, and about 20 worldwide (USA, UK, Canada, Austrailla and many countries can be find Firebird) and over thousands of users on-line at the same time in biggest BBS site. For more information, ref: http://www.firebird.org.tw/ >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: # # firebird # firebird/Makefile # firebird/pkg-descr # firebird/distinfo # firebird/pkg-comment # firebird/files # firebird/files/bbs.sh.example # firebird/files/patch-configure # firebird/files/patch-src_Install.sh.in # firebird/pkg-plist # firebird/pkg-install # echo c - firebird mkdir -p firebird > /dev/null 2>&1 echo x - firebird/Makefile sed 's/^X//' >firebird/Makefile << 'END-of-firebird/Makefile' X# ports collection makefile for: Firebird BBS X# Date created: Sun Feb 4 22:48:06 CST 2001 X# Whom: Edward Chuang X# $FreeBSD: $ X XPORTNAME= firebird XPORTVERSION= 3.0R XCATEGORIES= chinese net XMASTER_SITES= http://www.firebird.org.tw/download/ \ X ftp://ftp.firebird.org.tw/pub/Firebird/ \ X ftp://ftp4.firebird.org.tw/network/BBS/Firebird/ XDISTNAME= 3.0-RELEASE X XMAINTAINER= edwardc@firebird.org.tw X XWRKSRC= ${WRKDIR}/bbs/bbssrc XGNU_CONFIGURE= yes XUSE_BZIP2= yes XIS_INTERACTIVE= yes X Xpre-install: X ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL X Xpost-install: X @if [ ! -f ${PREFIX}/etc/rc.d/bbs.sh.example ]; then \ X ${ECHO} "Installing ${PREFIX}/etc/rc.d/bbs.sh.example startup file."; \ X ${INSTALL_SCRIPT} -m 751 ${FILESDIR}/bbs.sh.example ${PREFIX}/etc/rc.d/bbs.sh.example; \ X fi X @echo "=======================================================================" X @echo "Installnation Complete." X @echo "=======================================================================" X @echo "please review ${PREFIX}/etc/rc.d/bbs.sh.example change bbsd port you want" X @echo "then rename to ${PREFIX}/etc/rc.d/bbs.sh then:" X @echo "use ${PREFIX}/etc/rc.d/bbs.sh { start | stop } to start the BBS service" X @echo "full and complete document in ${PREFIX}/bbs/bbssrc/doc read before ask." X X.include END-of-firebird/Makefile echo x - firebird/pkg-descr sed 's/^X//' >firebird/pkg-descr << 'END-of-firebird/pkg-descr' XFirebird BBS is a BBS server with news capability and many other functions. XIt does mail/news/talk/irc over telnet. X XIt's widely used in Chinese internet community, it's also has GB code Xversion for Simpified-Chinese, but not yet avaliable. X Xhttp://www.firebird.org.tw END-of-firebird/pkg-descr echo x - firebird/distinfo sed 's/^X//' >firebird/distinfo << 'END-of-firebird/distinfo' XMD5 (3.0-RELEASE.tar.bz2) = c350f7457d1e44ab369e5c122bafb6ae END-of-firebird/distinfo echo x - firebird/pkg-comment sed 's/^X//' >firebird/pkg-comment << 'END-of-firebird/pkg-comment' XA Common BBS Server with its own customized INN News Server. END-of-firebird/pkg-comment echo c - firebird/files mkdir -p firebird/files > /dev/null 2>&1 echo x - firebird/files/bbs.sh.example sed 's/^X//' >firebird/files/bbs.sh.example << 'END-of-firebird/files/bbs.sh.example' X#!/bin/sh X# X# bbs.sh X# X# $Id$ X Xbbsd_port=23 X Xcase "$1" in X start) X if [ -x /usr/local/bbs/bin/bbsd ]; then X /usr/local/bbs/bin/bbsd $bbsd_port && echo -n ' bbsd' X fi X if [ -x /usr/local/bbs/innd/innbbsd ]; then X su bbs -c '/usr/local/bbs/innd/innbbsd' && echo -n ' bbs.innbbsd' X fi X if [ -f /usr/local/bbs/etc/cron.bbs ]; then X su bbs -c 'crontab /usr/local/bbs/etc/cron.bbs' && echo -n ' bbs.cron' X fi X ;; X stop) X if [ -f /usr/local/bbs/log/bbsd.pid ]; then X /bin/kill `cat /usr/local/bbs/log/bbsd.pid` X /usr/bin/killall bbsd 2> /dev/null X rm -fr /usr/local/bbs/log/bbsd.pid X echo -n " -bbsd" X else X echo "bbsd does not start yet. (pid file not found.)" X fi X ;; X *) X echo "" X echo "usage: `basename $0` { start | stop }" X echo "" X exit 64 X ;; XesacEND-of-firebird/files/bbs.sh.example echo x - firebird/files/patch-configure sed 's/^X//' >firebird/files/patch-configure << 'END-of-firebird/files/patch-configure' X--- configure.ok Sun Feb 4 23:17:24 2001 X+++ configure Mon Feb 5 10:07:21 2001 X@@ -1,6 +1,6 @@ X #! /bin/sh X X-# From configure.in Revision: 1.14 X+# From configure.in Revision: 1.15 X # Guess values for system-dependent variables and create Makefiles. X # Generated automatically using autoconf version 2.13 X # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. X@@ -529,7 +529,7 @@ X color_r=`awk 'BEGIN { printf("%c%c%c", 27, 91, 109); }' /dev/null` X X echo "${color_f}Firebird BBS 3.0${color_r} series configure $1" X-echo "\$Id: configure,v 1.12 2001/02/02 15:15:28 edwardc Exp $" X+echo "\$Id: configure.in,v 1.15 2001/02/02 15:15:28 edwardc Exp $" X X X echo " " X@@ -1540,40 +1540,43 @@ X echo "${color_f}Please fill data for your BBS${color_r}" X echo " " X X-bbshome=`cd .. ; pwd` X-echo -n "Home directory of BBS --> [$bbshome] " X-read BBS_HOME X+if test -z $prefix; then X+ bbshome="/usr/local/bbs" X+else X+ if test $prefix = "NONE"; then X+ bbshome="/usr/local/bbs" X+ else X+ bbshome="${prefix}/bbs" X+ fi X+fi X+ X+echo "Home directory of BBS --> [$bbshome] " X BBS_HOME=${BBS_HOME:-$bbshome} X X bbssrc=`pwd` X-echo -n "BBS Source Code directory --> [$bbssrc] " X-read BBSSRC X+echo "BBS Source Code directory --> [$bbssrc] " X BBSSRC=${BBSSRC:-$bbssrc} X X-echo -n "UID of BBS --> [9999] " X-read BBS_UID X+echo "UID of BBS --> [9999] " X BBS_UID=${BBS_UID:-9999} X X-echo -n "GID of BBS --> [99] " X-read BBS_GID X+echo "GID of BBS --> [99] " X BBS_GID=${BBS_GID:-99} X X-#echo -n "UID of BBS admin --> [9990] " X-#read BBS_ADM X-#BBS_ADM=${BBS_ADM:-9990} X- X-echo -n "The ID of your site --> [NoName] " X+hname=`hostname -s` X+echo -n "The ID of your site --> [${hname}] " X read BBS_ID X-BBS_ID=${BBS_ID:-NoName} X+BBS_ID=${BBS_ID:-"${hname}"} X X echo -n "The name of your site --> [¤õ³¾¨t²Î 3.0] " X read BBS_CNAME X X BBS_CNAME=${BBS_CNAME:-"¤õ³¾¨t²Î 3.0"} X X-echo -n "The domain name of your site --> [some.where.on.earth] " X+hostname=`hostname` X+echo -n "The domain name of your site --> [${hostname}] " X read DOMAIN X-DOMAIN=${DOMAIN:-"some.where.on.earth"} X+DOMAIN=${DOMAIN:-"${hostname}"} X X echo -n "The ip address of your site --> [127.0.0.1] " X read BBS_IP X@@ -1955,8 +1958,9 @@ X `rm -fr configure.inf` X cat > configure.inf << EOF X ###################################################### X-This file is generate by configure \$Revision: 1.12 $ X+This file is generate by configure \$Revision: 1.15 $ X ###################################################### X+BUILDER=_FreeBSD_ports_ X PERL=$perl X BBS_ID=$BBS_ID X DOMAIN=$DOMAIN END-of-firebird/files/patch-configure echo x - firebird/files/patch-src_Install.sh.in sed 's/^X//' >firebird/files/patch-src_Install.sh.in << 'END-of-firebird/files/patch-src_Install.sh.in' X--- src/Install.sh.in.ok Sun Feb 4 22:26:28 2001 X+++ src/Install.sh.in Mon Feb 5 08:34:33 2001 X@@ -3,34 +3,41 @@ X # CVS: $Id: Install.sh.in,v 1.14 2000/12/11 11:28:28 edwardc Exp $ X X BBS_HOME=@BBS_HOME@ X+OLD_HOME="../.." X BBSUID=@BBS_UID@ X BBSGRP=@BBS_GID@ X INSTALL="@INSTALL@" X TARGET=@BBS_HOME@/bin X X-if [ -f "${BBS_HOME}/BOARDS" ] ; then X- echo "This script will setting up the BBS directory for you on ${BBS_HOME} .." X- echo -n "Press to continue ..." X- read ans X-else X- if [ ".${FORCE_INSTALL}" = ".YES" ] ; then X- echo "force install ........ that might be many error, be aware!" X- echo "Press to continue ..." X- read ans X- else X- echo "WARNING: You have \"make install\" before, so you wont be install again." X- echo "To install the new binary, please try \"make update\"." X- echo " " X- echo "If you want to force the install, please try " X- echo "% make install FORCE_INSTALL=YES" X- exit X- fi X-fi X- X+echo "" X echo "Setup bbs directory tree ....." X-mv ${BBS_HOME}/BOARDS ${BBS_HOME}/.BOARDS X+mkdir -p ${BBS_HOME} X+mv ${OLD_HOME}/BOARDS ${BBS_HOME}/.BOARDS X touch ${BBS_HOME}/.hushlogin X X+mdirs="0Announce bbssrc bin etc help innd table" X+mfiles="CONTRIB COPYING Version.Info Welcome Welcome2" X+ X+echo "" X+ X+echo "copying dirs .." X+echo -n " " X+for x in $mdirs; \ X+do \ X+ echo -n " $x" X+ cp -R ${OLD_HOME}/$x ${BBS_HOME} X+done X+echo " done." X+ X+echo "copying files .." X+echo -n " " X+for x in $mfiles; \ X+do \ X+ echo -n " $x" X+ cp -R ${OLD_HOME}/$x ${BBS_HOME} X+done X+echo " done." X+echo "" X echo "creating necessary empty directory (user mail, user home)" X X alphabet="A B C D E F G H I J K L M N O P Q R S T U V W X Y Z" X@@ -84,6 +91,8 @@ X mv ${BBS_HOME}/table/movie.3 ${BBS_HOME}/boards/notepad/G.960994672.A X cp ${BBS_HOME}/boards/notepad/G.960994672.A ${BBS_HOME}/boards/notepad/M.960994672.A X X+echo " done." X+ X cat > ${BBS_HOME}/etc/sysconf.ini << EOF X #--------------------------------------------------------------- X # Here is where you adjust the BBS System Configuration X@@ -174,11 +183,7 @@ X ${INSTALL} -m 550 -s -g ${BBSGRP} -o ${BBSUID} SO/paging.so ${TARGET} X ${INSTALL} -m 550 -s -g ${BBSGRP} -o ${BBSUID} SO/thread.so ${TARGET} X X-#if test -f ../.reldate; then X-# echo "cleanning CVS directories in bbshome ...." X-# find ${BBS_HOME} -name "CVS" -print | xargs rm -fr X-#fi X+echo "cleanning .o files in bbshome ...." X+find ${BBS_HOME}"/bbssrc/src" -name "*.o" -print | xargs rm -fr X X echo "Install is over...." X-echo "Check the configuration in ${BBS_HOME}/etc/sysconf.ini" X-echo "Then login your BBS and create an account called SYSOP (case-sensitive)" END-of-firebird/files/patch-src_Install.sh.in echo x - firebird/pkg-plist sed 's/^X//' >firebird/pkg-plist << 'END-of-firebird/pkg-plist' Xbbs/.BOARDS Xbbs/.hushlogin Xbbs/0Announce/bms/deleted/.cvsignore Xbbs/0Announce/bms/deleted/.Names Xbbs/0Announce/bms/.cvsignore Xbbs/0Announce/bms/.Names Xbbs/0Announce/sysops/groups/junk/.cvsignore Xbbs/0Announce/sysops/groups/junk/.Names Xbbs/0Announce/sysops/groups/syssecurity/.cvsignore Xbbs/0Announce/sysops/groups/syssecurity/.Names Xbbs/0Announce/sysops/groups/.cvsignore Xbbs/0Announce/sysops/groups/.Names Xbbs/0Announce/sysops/.cvsignore Xbbs/0Announce/sysops/.Names Xbbs/0Announce/sysops/Firebird-30 Xbbs/0Announce/sysops/admin-manual Xbbs/0Announce/bbslist/yesterday Xbbs/0Announce/bbslist/.Names Xbbs/0Announce/bbslist/countusr Xbbs/0Announce/bbslist/board1 Xbbs/0Announce/bbslist/board2 Xbbs/0Announce/bbslist/countusr.last Xbbs/0Announce/bbslist/newacct.last Xbbs/0Announce/bbslist/newacct.today Xbbs/0Announce/bbslist/today Xbbs/0Announce/bbslist/topall Xbbs/0Announce/bbslist/toplogin Xbbs/0Announce/bbslist/toppost Xbbs/0Announce/bbslist/topstay Xbbs/0Announce/bbslist/.cvsignore Xbbs/0Announce/groups/GROUP_0/bbslists/.cvsignore Xbbs/0Announce/groups/GROUP_0/bbslists/.Names Xbbs/0Announce/groups/GROUP_0/newcomers/.cvsignore Xbbs/0Announce/groups/GROUP_0/newcomers/.Names Xbbs/0Announce/groups/GROUP_0/sysop/.cvsignore Xbbs/0Announce/groups/GROUP_0/sysop/.Names Xbbs/0Announce/groups/GROUP_0/vote/.cvsignore Xbbs/0Announce/groups/GROUP_0/vote/.Names Xbbs/0Announce/groups/GROUP_0/.cvsignore Xbbs/0Announce/groups/GROUP_0/.Names Xbbs/0Announce/groups/GROUP_7/notepad/.Names Xbbs/0Announce/groups/GROUP_7/.Names Xbbs/0Announce/groups/.cvsignore Xbbs/0Announce/groups/.Names Xbbs/0Announce/usermanual/value Xbbs/0Announce/usermanual/.Names Xbbs/0Announce/usermanual/Goodbye Xbbs/0Announce/usermanual/Boards Xbbs/0Announce/usermanual/Config Xbbs/0Announce/usermanual/Digest Xbbs/0Announce/usermanual/EGroup Xbbs/0Announce/usermanual/InfoEdit Xbbs/0Announce/usermanual/Help Xbbs/0Announce/usermanual/Service Xbbs/0Announce/usermanual/Mail Xbbs/0Announce/usermanual/boardmenu Xbbs/0Announce/usermanual/Talk Xbbs/0Announce/usermanual/advice Xbbs/0Announce/usermanual/enterbbs Xbbs/0Announce/usermanual/register Xbbs/0Announce/usermanual/telix Xbbs/0Announce/usermanual/.cvsignore Xbbs/0Announce/.cvsignore Xbbs/0Announce/.Names Xbbs/0Announce/.Search Xbbs/bbssrc/src/SO/thread.so Xbbs/bbssrc/src/SO/paging.c Xbbs/bbssrc/src/SO/socket.c Xbbs/bbssrc/src/SO/thread.c Xbbs/bbssrc/src/SO/paging.so Xbbs/bbssrc/src/SO/Makefile Xbbs/bbssrc/src/Install.sh.in Xbbs/bbssrc/src/Makefile Xbbs/bbssrc/src/admintool.c Xbbs/bbssrc/src/announce.c Xbbs/bbssrc/src/bbs.c Xbbs/bbssrc/src/bbsd.c Xbbs/bbssrc/src/bbsgopher.c Xbbs/bbssrc/src/bbsrf.c Xbbs/bbssrc/src/bcache.c Xbbs/bbssrc/src/bm.c Xbbs/bbssrc/src/boards.c Xbbs/bbssrc/src/chat.c Xbbs/bbssrc/src/comm_lists.c Xbbs/bbssrc/src/delete.c Xbbs/bbssrc/src/edit.c Xbbs/bbssrc/src/expire.c Xbbs/bbssrc/src/fileshm.c Xbbs/bbssrc/src/goodbye.c Xbbs/bbssrc/src/help.c Xbbs/bbssrc/src/io.c Xbbs/bbssrc/src/list.c Xbbs/bbssrc/src/mail.c Xbbs/bbssrc/src/main.c Xbbs/bbssrc/src/maintain.c Xbbs/bbssrc/src/modetype.c Xbbs/bbssrc/src/more.c Xbbs/bbssrc/src/namecomplete.c Xbbs/bbssrc/src/pass.c Xbbs/bbssrc/src/postheader.c Xbbs/bbssrc/src/read.c Xbbs/bbssrc/src/record.c Xbbs/bbssrc/src/register.c Xbbs/bbssrc/src/screen.c Xbbs/bbssrc/src/sendmsg.c Xbbs/bbssrc/src/station.c Xbbs/bbssrc/src/stuff.c Xbbs/bbssrc/src/talk.c Xbbs/bbssrc/src/term.c Xbbs/bbssrc/src/userinfo.c Xbbs/bbssrc/src/ver.sh Xbbs/bbssrc/src/vote.c Xbbs/bbssrc/src/xyz.c Xbbs/bbssrc/src/Install.sh.in.orig Xbbs/bbssrc/src/Install.sh Xbbs/bbssrc/src/bbsd Xbbs/bbssrc/src/chatd Xbbs/bbssrc/src/expire Xbbs/bbssrc/util/innbbsd/doc/release.0.44 Xbbs/bbssrc/util/innbbsd/doc/bbnnrp-generic-gateway Xbbs/bbssrc/util/innbbsd/doc/bbslink.8 Xbbs/bbssrc/util/innbbsd/doc/bbslink.patch Xbbs/bbssrc/util/innbbsd/doc/bbsnnrp.8 Xbbs/bbssrc/util/innbbsd/doc/ctlinnbbsd.8 Xbbs/bbssrc/util/innbbsd/doc/filter.doc Xbbs/bbssrc/util/innbbsd/doc/gateway.doc Xbbs/bbssrc/util/innbbsd/doc/gateway2.doc Xbbs/bbssrc/util/innbbsd/doc/history-corrupt Xbbs/bbssrc/util/innbbsd/doc/innbbsd.8 Xbbs/bbssrc/util/innbbsd/doc/mailing-list-reply Xbbs/bbssrc/util/innbbsd/doc/makedbz.8 Xbbs/bbssrc/util/innbbsd/doc/mkhistory.8 Xbbs/bbssrc/util/innbbsd/doc/multiple-feeds Xbbs/bbssrc/util/innbbsd/doc/newsfeeds.bbs.5 Xbbs/bbssrc/util/innbbsd/doc/nodelist.bbs.5 Xbbs/bbssrc/util/innbbsd/doc/relaese.0.50beta-5F Xbbs/bbssrc/util/innbbsd/doc/alt-gateways Xbbs/bbssrc/util/innbbsd/innd/timefmt.y Xbbs/bbssrc/util/innbbsd/innd/README Xbbs/bbssrc/util/innbbsd/innd/bbslib.pl.in Xbbs/bbssrc/util/innbbsd/innd/bbspost.c Xbbs/bbssrc/util/innbbsd/innd/bmpost Xbbs/bbssrc/util/innbbsd/innd/bntplink.in Xbbs/bbssrc/util/innbbsd/innd/in.bntpd.in Xbbs/bbssrc/util/innbbsd/innd/innbbslib.pl.in Xbbs/bbssrc/util/innbbsd/innd/inntobbs.in Xbbs/bbssrc/util/innbbsd/innd/mailpost.in Xbbs/bbssrc/util/innbbsd/innd/modify.doc Xbbs/bbssrc/util/innbbsd/innd/parsedate.c Xbbs/bbssrc/util/innbbsd/innd/rfc931.pl.in Xbbs/bbssrc/util/innbbsd/innd/tcp.pl.in Xbbs/bbssrc/util/innbbsd/innd/Makefile Xbbs/bbssrc/util/innbbsd/convert/hztty/tables/Makefile Xbbs/bbssrc/util/innbbsd/convert/hztty/tables/README Xbbs/bbssrc/util/innbbsd/convert/hztty/tables/gen_b2g.sh Xbbs/bbssrc/util/innbbsd/convert/hztty/tables/gen_ctab.c Xbbs/bbssrc/util/innbbsd/convert/hztty/HZ.spec Xbbs/bbssrc/util/innbbsd/convert/hztty/Makefile Xbbs/bbssrc/util/innbbsd/convert/hztty/README Xbbs/bbssrc/util/innbbsd/convert/hztty/b2g.c Xbbs/bbssrc/util/innbbsd/convert/hztty/b2g_tables.c Xbbs/bbssrc/util/innbbsd/convert/hztty/config.h Xbbs/bbssrc/util/innbbsd/convert/hztty/dummy_main.c Xbbs/bbssrc/util/innbbsd/convert/hztty/hz2gb.c Xbbs/bbssrc/util/innbbsd/convert/hztty/hztty.1 Xbbs/bbssrc/util/innbbsd/convert/hztty/io.c Xbbs/bbssrc/util/innbbsd/convert/hztty/io.h Xbbs/bbssrc/util/innbbsd/convert/hztty/log.c Xbbs/bbssrc/util/innbbsd/convert/hztty/main.c Xbbs/bbssrc/util/innbbsd/convert/hztty/tty.c Xbbs/bbssrc/util/innbbsd/convert/jis/sinocojg.cod Xbbs/bbssrc/util/innbbsd/convert/jis/ChangeLog Xbbs/bbssrc/util/innbbsd/convert/jis/Makefile Xbbs/bbssrc/util/innbbsd/convert/jis/README Xbbs/bbssrc/util/innbbsd/convert/jis/b2j Xbbs/bbssrc/util/innbbsd/convert/jis/j2b Xbbs/bbssrc/util/innbbsd/convert/jis/jis.c Xbbs/bbssrc/util/innbbsd/convert/jis/patch.c Xbbs/bbssrc/util/innbbsd/convert/jis/sinocobg.cod Xbbs/bbssrc/util/innbbsd/convert/jis/sinocobj.cod Xbbs/bbssrc/util/innbbsd/convert/jis/sinocode.c Xbbs/bbssrc/util/innbbsd/convert/jis/sinocode.man Xbbs/bbssrc/util/innbbsd/convert/jis/sinocogb.cod Xbbs/bbssrc/util/innbbsd/convert/jis/sinocogj.cod Xbbs/bbssrc/util/innbbsd/convert/jis/sinocojb.cod Xbbs/bbssrc/util/innbbsd/convert/jis/COPYING Xbbs/bbssrc/util/innbbsd/convert/util/b2g Xbbs/bbssrc/util/innbbsd/convert/util/b2j Xbbs/bbssrc/util/innbbsd/convert/util/g2b Xbbs/bbssrc/util/innbbsd/convert/util/j2b Xbbs/bbssrc/util/innbbsd/COPYRIGHT.nocem Xbbs/bbssrc/util/innbbsd/FEATURES Xbbs/bbssrc/util/innbbsd/INSTALL.nocem Xbbs/bbssrc/util/innbbsd/Makefile.in Xbbs/bbssrc/util/innbbsd/NOCEM.1 Xbbs/bbssrc/util/innbbsd/NOCEM.2 Xbbs/bbssrc/util/innbbsd/NOCEM.3 Xbbs/bbssrc/util/innbbsd/README Xbbs/bbssrc/util/innbbsd/README.-0.50beta-5F Xbbs/bbssrc/util/innbbsd/README.PalmBBS Xbbs/bbssrc/util/innbbsd/README.PowerBBS Xbbs/bbssrc/util/innbbsd/README.antispam Xbbs/bbssrc/util/innbbsd/README.nocem Xbbs/bbssrc/util/innbbsd/TODO Xbbs/bbssrc/util/innbbsd/TODO.nocem Xbbs/bbssrc/util/innbbsd/bbslib.c Xbbs/bbssrc/util/innbbsd/bbslib.h Xbbs/bbssrc/util/innbbsd/bbslink.c Xbbs/bbssrc/util/innbbsd/bbsnnrp.c Xbbs/bbssrc/util/innbbsd/clibrary.h Xbbs/bbssrc/util/innbbsd/daemon.c Xbbs/bbssrc/util/innbbsd/closeonexec.c Xbbs/bbssrc/util/innbbsd/connectsock.c Xbbs/bbssrc/util/innbbsd/ctlinnbbsd.c Xbbs/bbssrc/util/innbbsd/daemon.h Xbbs/bbssrc/util/innbbsd/dbz.c Xbbs/bbssrc/util/innbbsd/dbz.h Xbbs/bbssrc/util/innbbsd/dbz_query_sample.c Xbbs/bbssrc/util/innbbsd/dbzinnbbsd.c Xbbs/bbssrc/util/innbbsd/dbzserver.c Xbbs/bbssrc/util/innbbsd/dbztool.c Xbbs/bbssrc/util/innbbsd/echobbslib.c Xbbs/bbssrc/util/innbbsd/externs.h Xbbs/bbssrc/util/innbbsd/file.c Xbbs/bbssrc/util/innbbsd/filter.c Xbbs/bbssrc/util/innbbsd/his.c Xbbs/bbssrc/util/innbbsd/his.h Xbbs/bbssrc/util/innbbsd/hisconvert.in Xbbs/bbssrc/util/innbbsd/innbbsconf.h Xbbs/bbssrc/util/innbbsd/innbbsd.c Xbbs/bbssrc/util/innbbsd/innbbsd.h Xbbs/bbssrc/util/innbbsd/inndchannel.c Xbbs/bbssrc/util/innbbsd/inntobbs.c Xbbs/bbssrc/util/innbbsd/inntobbs.h Xbbs/bbssrc/util/innbbsd/killspam.c Xbbs/bbssrc/util/innbbsd/lang.c Xbbs/bbssrc/util/innbbsd/lang.h Xbbs/bbssrc/util/innbbsd/makedbz.c Xbbs/bbssrc/util/innbbsd/mkhistory.c Xbbs/bbssrc/util/innbbsd/ncmperm.bbs Xbbs/bbssrc/util/innbbsd/newsfeeds.bbs Xbbs/bbssrc/util/innbbsd/nntp.h Xbbs/bbssrc/util/innbbsd/nocem.c Xbbs/bbssrc/util/innbbsd/nocem.h Xbbs/bbssrc/util/innbbsd/nodelist.bbs Xbbs/bbssrc/util/innbbsd/parsdate.y Xbbs/bbssrc/util/innbbsd/pmain.c Xbbs/bbssrc/util/innbbsd/port.c Xbbs/bbssrc/util/innbbsd/qp_conv.c Xbbs/bbssrc/util/innbbsd/r_port.c Xbbs/bbssrc/util/innbbsd/receive_article.c Xbbs/bbssrc/util/innbbsd/rfc931.c Xbbs/bbssrc/util/innbbsd/version.h Xbbs/bbssrc/util/innbbsd/wildmat.c Xbbs/bbssrc/util/innbbsd/Makefile Xbbs/bbssrc/util/innbbsd/CHANGES Xbbs/bbssrc/util/innbbsd/CHANGES.nocem Xbbs/bbssrc/util/fingerd/00README Xbbs/bbssrc/util/fingerd/Makefile Xbbs/bbssrc/util/fingerd/fingerd.c Xbbs/bbssrc/util/fingerd/pathnames.h Xbbs/bbssrc/util/gopherd/00README Xbbs/bbssrc/util/gopherd/Makefile Xbbs/bbssrc/util/gopherd/gopherd.c Xbbs/bbssrc/util/in.zbbsd/00README Xbbs/bbssrc/util/deljunk/Makefile Xbbs/bbssrc/util/deljunk/deljunk.c Xbbs/bbssrc/util/local_utl/Makefile Xbbs/bbssrc/util/local_utl/account.c Xbbs/bbssrc/util/local_utl/averun.c Xbbs/bbssrc/util/local_utl/bbslocalmail.c Xbbs/bbssrc/util/local_utl/bbspop3d.c Xbbs/bbssrc/util/local_utl/bbstop.c Xbbs/bbssrc/util/local_utl/bfinger.c Xbbs/bbssrc/util/local_utl/birthday.c Xbbs/bbssrc/util/local_utl/chboard.c Xbbs/bbssrc/util/local_utl/dumpboardrc.c Xbbs/bbssrc/util/local_utl/horoscope.c Xbbs/bbssrc/util/local_utl/http-finger.c Xbbs/bbssrc/util/local_utl/loadrecord.c Xbbs/bbssrc/util/local_utl/mailreport.c Xbbs/bbssrc/util/local_utl/newacct.c Xbbs/bbssrc/util/local_utl/poststat.c Xbbs/bbssrc/util/local_utl/refriend.c Xbbs/bbssrc/util/local_utl/refriend2.c Xbbs/bbssrc/util/local_utl/rehome.c Xbbs/bbssrc/util/local_utl/remail.c Xbbs/bbssrc/util/local_utl/remake.c Xbbs/bbssrc/util/local_utl/renotepad.c Xbbs/bbssrc/util/local_utl/repass.c Xbbs/bbssrc/util/local_utl/resize.c Xbbs/bbssrc/util/local_utl/restruct.c Xbbs/bbssrc/util/local_utl/showuser.c Xbbs/bbssrc/util/local_utl/usage.c Xbbs/bbssrc/util/local_utl/Makefile.in Xbbs/bbssrc/util/mail2bbs/Makefile Xbbs/bbssrc/util/mail2bbs/bbsmail.in Xbbs/bbssrc/util/mail2bbs/mail-list.c Xbbs/bbssrc/util/mail2bbs/mail2bbs.c Xbbs/bbssrc/util/mail2bbs/mail2bbs.h Xbbs/bbssrc/util/mail2bbs/mailgate.pl.in Xbbs/bbssrc/util/mail2bbs/qp_conv.c Xbbs/bbssrc/util/mail2bbs/rfc931.pl Xbbs/bbssrc/util/mail2bbs/tcp.pl Xbbs/bbssrc/util/mail2bbs/Makefile.in Xbbs/bbssrc/util/telnetd/00README Xbbs/bbssrc/util/upgrade/include/new_struct.h Xbbs/bbssrc/util/upgrade/include/struct.2.5.h Xbbs/bbssrc/util/upgrade/include/struct.2.62M.h Xbbs/bbssrc/util/upgrade/include/struct.2.66M.h Xbbs/bbssrc/util/upgrade/include/struct.M2.h Xbbs/bbssrc/util/upgrade/00README Xbbs/bbssrc/util/upgrade/Makefile Xbbs/bbssrc/util/upgrade/refriend.c Xbbs/bbssrc/util/upgrade/rehome.c Xbbs/bbssrc/util/upgrade/repass.c Xbbs/bbssrc/util/upgrade/chboard.c Xbbs/bbssrc/lib/libBBS/dlm.o Xbbs/bbssrc/lib/libBBS/dlm.c Xbbs/bbssrc/lib/libBBS/fileio.c Xbbs/bbssrc/lib/libBBS/html.c Xbbs/bbssrc/lib/libBBS/mmdecode.c Xbbs/bbssrc/lib/libBBS/string.c Xbbs/bbssrc/lib/libBBS/string.o Xbbs/bbssrc/lib/libBBS/html.o Xbbs/bbssrc/lib/libBBS/mmdecode.o Xbbs/bbssrc/lib/libBBS/fileio.o Xbbs/bbssrc/lib/libBBS/Makefile Xbbs/bbssrc/lib/Makefile Xbbs/bbssrc/lib/libBBS.a Xbbs/bbssrc/include/os_dep.h Xbbs/bbssrc/include/bbs.h Xbbs/bbssrc/include/chat.h.in Xbbs/bbssrc/include/config.h.in Xbbs/bbssrc/include/edit.h Xbbs/bbssrc/include/functions.h Xbbs/bbssrc/include/modes.h Xbbs/bbssrc/include/os_dep.h.in Xbbs/bbssrc/include/permissions.h Xbbs/bbssrc/include/screen.h Xbbs/bbssrc/include/site_conf.h.in Xbbs/bbssrc/include/structs.h Xbbs/bbssrc/include/vote.h Xbbs/bbssrc/include/config.h Xbbs/bbssrc/include/chat.h Xbbs/bbssrc/include/bbsgopher.h Xbbs/bbssrc/doc/example/startbbs.sh Xbbs/bbssrc/doc/example/cron.bbs Xbbs/bbssrc/doc/example/ctm.sh Xbbs/bbssrc/doc/example/expire.ctl Xbbs/bbssrc/doc/example/sendmail-8.10.1-FreeBSD.cf Xbbs/bbssrc/doc/example/sendmail-8.10.1-Linux.cf Xbbs/bbssrc/doc/example/sendmail-8.11.1-FreeBSD.cf Xbbs/bbssrc/doc/example/sendmail-8.9.3-FreeBSD.cf Xbbs/bbssrc/doc/example/00README Xbbs/bbssrc/doc/00README Xbbs/bbssrc/doc/Admin_Manual Xbbs/bbssrc/doc/BBCall Xbbs/bbssrc/doc/Core_Team Xbbs/bbssrc/doc/FAQ Xbbs/bbssrc/doc/Firebird-30 Xbbs/bbssrc/doc/NoCem Xbbs/bbssrc/doc/Quick_Install Xbbs/bbssrc/doc/TW_NewsGroup_List Xbbs/bbssrc/doc/Upgrading Xbbs/bbssrc/TODO_List Xbbs/bbssrc/config.guess Xbbs/bbssrc/config.sub Xbbs/bbssrc/configure Xbbs/bbssrc/configure.in Xbbs/bbssrc/install.sh Xbbs/bbssrc/configure.orig Xbbs/bbssrc/configure.inf Xbbs/bbssrc/Makefile Xbbs/bbssrc/.reldate Xbbs/bbssrc/BUG_REPORT Xbbs/bbssrc/ChangeLog Xbbs/bbssrc/Makefile.in Xbbs/bin/www.sh Xbbs/bin/bbsnet.sh Xbbs/bin/bbstop.sh Xbbs/bin/cdict.sh Xbbs/bin/daily.sh Xbbs/bin/edict.sh Xbbs/bin/game.sh Xbbs/bin/gopher.sh Xbbs/bin/irc.sh Xbbs/bin/mvlogs.sh Xbbs/bin/showuser.sh Xbbs/bin/sysinfo.sh Xbbs/bin/archie.sh Xbbs/bin/bbsd Xbbs/bin/chatd Xbbs/bin/expire Xbbs/bin/paging.so Xbbs/bin/thread.so Xbbs/etc/posts/day Xbbs/etc/posts/month Xbbs/etc/posts/week Xbbs/etc/posts/year Xbbs/etc/autopost Xbbs/etc/bad_email Xbbs/etc/bad_id Xbbs/etc/boardref Xbbs/etc/chatstation Xbbs/etc/checknotepad Xbbs/etc/expire.ctl Xbbs/etc/expired Xbbs/etc/f_fill Xbbs/etc/firstlogin Xbbs/etc/fmail Xbbs/etc/goodbye Xbbs/etc/issue Xbbs/etc/loginfull Xbbs/etc/logout Xbbs/etc/mailcheck Xbbs/etc/mentor Xbbs/etc/menu.ini Xbbs/etc/newregister Xbbs/etc/regexpire Xbbs/etc/register Xbbs/etc/s_fill Xbbs/etc/showuser.msg Xbbs/etc/smail Xbbs/etc/sysops Xbbs/etc/user_full Xbbs/etc/whatdate Xbbs/etc/wmail Xbbs/etc/sysconf.ini Xbbs/help/votehelp Xbbs/help/boardreadhelp Xbbs/help/chathelp Xbbs/help/chatophelp Xbbs/help/edithelp Xbbs/help/friendshelp Xbbs/help/mailerror-explain Xbbs/help/mailreadhelp Xbbs/help/mainreadhelp Xbbs/help/morehelp Xbbs/help/msghelp Xbbs/help/rejectshelp Xbbs/help/userlisthelp Xbbs/help/usershelp Xbbs/help/announcereadhelp Xbbs/innd/black.list.general Xbbs/innd/newsfeeds.bbs Xbbs/innd/nodelist.bbs Xbbs/table/big5.0 Xbbs/table/big5.1 Xbbs/table/big5.2 Xbbs/table/big5.3 Xbbs/table/big5.4 Xbbs/table/big5.5 Xbbs/table/big5.6 Xbbs/table/big5.7 Xbbs/CONTRIB Xbbs/COPYING Xbbs/Version.Info Xbbs/Welcome Xbbs/Welcome2 Xbbs/boards/notepad/.DIR Xbbs/boards/notepad/.DIGEST Xbbs/boards/notepad/G.960994645.A Xbbs/boards/notepad/M.960994645.A Xbbs/boards/notepad/G.960994659.A Xbbs/boards/notepad/M.960994659.A Xbbs/boards/notepad/G.960994672.A Xbbs/boards/notepad/M.960994672.A X@dirrm bbs/vote/vote X@dirrm bbs/vote/syssecurity X@dirrm bbs/vote/sysop X@dirrm bbs/vote/notepad X@dirrm bbs/vote/newcomers X@dirrm bbs/vote/junk X@dirrm bbs/vote/deleted X@dirrm bbs/vote/bbslists X@dirrm bbs/vote X@dirrm bbs/tmp X@dirrm bbs/table X@dirrm bbs/mail/Z X@dirrm bbs/mail/Y X@dirrm bbs/mail/X X@dirrm bbs/mail/W X@dirrm bbs/mail/V X@dirrm bbs/mail/U X@dirrm bbs/mail/T X@dirrm bbs/mail/S X@dirrm bbs/mail/R X@dirrm bbs/mail/Q X@dirrm bbs/mail/P X@dirrm bbs/mail/O X@dirrm bbs/mail/N X@dirrm bbs/mail/M X@dirrm bbs/mail/L X@dirrm bbs/mail/K X@dirrm bbs/mail/J X@dirrm bbs/mail/I X@dirrm bbs/mail/H X@dirrm bbs/mail/G X@dirrm bbs/mail/F X@dirrm bbs/mail/E X@dirrm bbs/mail/D X@dirrm bbs/mail/C X@dirrm bbs/mail/B X@dirrm bbs/mail/A X@dirrm bbs/mail X@dirrm bbs/log X@dirrm bbs/innd X@dirrm bbs/home/Z X@dirrm bbs/home/Y X@dirrm bbs/home/X X@dirrm bbs/home/W X@dirrm bbs/home/V X@dirrm bbs/home/U X@dirrm bbs/home/T X@dirrm bbs/home/S X@dirrm bbs/home/R X@dirrm bbs/home/Q X@dirrm bbs/home/P X@dirrm bbs/home/O X@dirrm bbs/home/N X@dirrm bbs/home/M X@dirrm bbs/home/L X@dirrm bbs/home/K X@dirrm bbs/home/J X@dirrm bbs/home/I X@dirrm bbs/home/H X@dirrm bbs/home/G X@dirrm bbs/home/F X@dirrm bbs/home/E X@dirrm bbs/home/D X@dirrm bbs/home/C X@dirrm bbs/home/B X@dirrm bbs/home/A X@dirrm bbs/home X@dirrm bbs/help X@dirrm bbs/etc/posts X@dirrm bbs/etc X@dirrm bbs/boards/vote X@dirrm bbs/boards/syssecurity X@dirrm bbs/boards/sysop X@dirrm bbs/boards/notepad X@dirrm bbs/boards/newcomers X@dirrm bbs/boards/junk X@dirrm bbs/boards/deleted X@dirrm bbs/boards/bbslists X@dirrm bbs/boards X@dirrm bbs/bm X@dirrm bbs/bin X@dirrm bbs/bbssrc/util/upgrade/include X@dirrm bbs/bbssrc/util/upgrade X@dirrm bbs/bbssrc/util/telnetd X@dirrm bbs/bbssrc/util/mail2bbs X@dirrm bbs/bbssrc/util/local_utl X@dirrm bbs/bbssrc/util/innbbsd/innd X@dirrm bbs/bbssrc/util/innbbsd/doc X@dirrm bbs/bbssrc/util/innbbsd/convert/util X@dirrm bbs/bbssrc/util/innbbsd/convert/jis X@dirrm bbs/bbssrc/util/innbbsd/convert/hztty/tables X@dirrm bbs/bbssrc/util/innbbsd/convert/hztty X@dirrm bbs/bbssrc/util/innbbsd/convert X@dirrm bbs/bbssrc/util/innbbsd X@dirrm bbs/bbssrc/util/in.zbbsd X@dirrm bbs/bbssrc/util/gopherd X@dirrm bbs/bbssrc/util/fingerd X@dirrm bbs/bbssrc/util/express X@dirrm bbs/bbssrc/util/deljunk X@dirrm bbs/bbssrc/util X@dirrm bbs/bbssrc/src/SO X@dirrm bbs/bbssrc/src X@dirrm bbs/bbssrc/lib/libBBS X@dirrm bbs/bbssrc/lib X@dirrm bbs/bbssrc/include X@dirrm bbs/bbssrc/doc/example X@dirrm bbs/bbssrc/doc X@dirrm bbs/bbssrc X@dirrm bbs/0Announce/usermanual X@dirrm bbs/0Announce/sysops/groups/syssecurity X@dirrm bbs/0Announce/sysops/groups/junk X@dirrm bbs/0Announce/sysops/groups X@dirrm bbs/0Announce/sysops X@dirrm bbs/0Announce/groups/GROUP_7/notepad X@dirrm bbs/0Announce/groups/GROUP_7 X@dirrm bbs/0Announce/groups/GROUP_0/vote X@dirrm bbs/0Announce/groups/GROUP_0/sysop X@dirrm bbs/0Announce/groups/GROUP_0/newcomers X@dirrm bbs/0Announce/groups/GROUP_0/bbslists X@dirrm bbs/0Announce/groups/GROUP_0 X@dirrm bbs/0Announce/groups X@dirrm bbs/0Announce/bms/deleted X@dirrm bbs/0Announce/bms X@dirrm bbs/0Announce/bbslist X@dirrm bbs/0Announce X@dirrm bbs/log X@dirrm bbs END-of-firebird/pkg-plist echo x - firebird/pkg-install sed 's/^X//' >firebird/pkg-install << 'END-of-firebird/pkg-install' X#!/bin/sh X XPATH=/bin:/usr/sbin XUSER=bbs XGROUP=bbs XUID=9999 XGID=99 X Xcase $2 in XPRE-INSTALL) X X if pw group show "${GROUP}" 2>/dev/null; then X echo "You already have a group \"${GROUP}\", so I will use it." X else X if pw groupadd ${GROUP} -g ${GID}; then X echo "Added group \"${GROUP}\"." X else X echo "Adding group \"${GROUP}\" failed..." X exit 1 X fi X fi X X if pw user show "${USER}" 2>/dev/null; then X echo "You already have a user \"${USER}\", so I will use it." X else X if pw useradd ${USER} -u ${UID} -g ${GROUP} -h - \ X -d /usr/local/bbs -s /sbin/nologin -c "Firebird BBS" X then X echo "Added user \"${USER}\"." X else X echo "Adding user \"${USER}\" failed..." X exit 1 X fi X fi X X ;; X Xesac END-of-firebird/pkg-install 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 Feb 6 6:37:33 2001 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (pool78-tch-2.Sofia.0rbitel.net [212.95.171.78]) by hub.freebsd.org (Postfix) with SMTP id 4D9FD37B699 for ; Tue, 6 Feb 2001 06:37:12 -0800 (PST) Received: (qmail 3287 invoked by uid 1000); 6 Feb 2001 14:35:27 -0000 Date: Tue, 6 Feb 2001 16:35:27 +0200 From: Peter Pentchev To: "Ennis, Colm" Cc: "'freebsd-ports@freebsd.org'" Subject: Re: wheris is the djbdns port distfile? Message-ID: <20010206163527.C524@ringworld.oblivion.bg> Mail-Followup-To: "Ennis, Colm" , "'freebsd-ports@freebsd.org'" References: <39F27E3F569FD4119EF200508BAF85B9AC6D0C@CCGNT30> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <39F27E3F569FD4119EF200508BAF85B9AC6D0C@CCGNT30>; from Colm.Ennis@lambdanet.net on Tue, Feb 06, 2001 at 03:30:25PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 03:30:25PM +0100, Ennis, Colm wrote: > hi, > > sorry for the lameness of this question but im a little stuck. > > does anyone know where i can get the djbdns 1.04 distfile? ...i've followed > instructions from both the hanbook and my "complete freebsd" book but > all i find is broken links. > > im not on this list so please send responses directly to me, The djbdns 1.04 distfile, djbdns-1.04.tar.gz, is available at http://cr.yp.to/djbdns/djbdns-1.04.tar.gz. However, you do not really need to know that - all you have to do is: cd /usr/ports/net/djbdns make fetch ..and the ports system shall do the magic for you :) I just tried it, in case something broke after I submitted the port update to 1.04 to Neil Blakey-Milner, the port maintainer, and it works for me :) [roam@ringworld:v4 /usr/ports/net/djbdns]$ make fetch >> djbdns-1.04.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from http://cr.yp.to/djbdns/. fetch: djbdns-1.04.tar.gz: size of remote file is not known Receiving djbdns-1.04.tar.gz: 85262 bytes 85262 bytes transferred in 30.0 seconds (2.77 kBps) [roam@ringworld:v4 /usr/ports/net/djbdns]$ make checksum >> Checksum OK for djbdns-1.04.tar.gz. [roam@ringworld:v4 /usr/ports/net/djbdns]$ Now the stage is set for a 'make all install'.. and welcome to the djbdns community :) 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 Tue Feb 6 7: 9:22 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mta01.mail.mel.aone.net.au (mta01.mail.au.uu.net [203.2.192.81]) by hub.freebsd.org (Postfix) with ESMTP id 5A86A37B401; Tue, 6 Feb 2001 07:09:01 -0800 (PST) Received: from camtech.net.au ([203.28.1.137]) by mta01.mail.mel.aone.net.au with ESMTP id <20010206150858.ECH12268.mta01.mail.mel.aone.net.au@camtech.net.au>; Wed, 7 Feb 2001 02:08:58 +1100 Message-ID: <3A80143D.908D5886@camtech.net.au> Date: Wed, 07 Feb 2001 01:41:57 +1030 From: Matthew Thyer X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: will@FreeBSD.org Cc: ports@FreeBSD.org Subject: kappfinder segmentation fault during ports/x11/kdebase2 install on recent -CURRENT Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Just when I thought kde2 might be fixed, installing ports/x11/kdebase2 gives: install -c -o root -g wheel -m 444 ./kappfinder.desktop /usr/local/share/applnk/System/kappfinder.desktop echo "Installing non-KDE applications" Installing non-KDE applications pwd=`pwd`; \ (cd . && $pwd/kappfinder_install "/usr/local/share/applnk") Segmentation fault - core dumped gmake[3]: *** [runkappfinder_yes] Error 139 gmake[3]: Leaving directory `/usr/ports/x11/kdebase2/work/kdebase-2.0.1/kappfinder' gmake[2]: *** [install-am] Error 2 gmake[2]: Leaving directory `/usr/ports/x11/kdebase2/work/kdebase-2.0.1/kappfinder' gmake[1]: *** [install-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11/kdebase2/work/kdebase-2.0.1/kappfinder' gmake: *** [install-recursive] Error 1 *** Error code 2 Stop in /usr/ports/x11/kdebase2. Playing around with ddd I did: (gdb) run /usr/local/share/applnk Starting program: /usr/ports/x11/kdebase2/work/kdebase-2.0.1/kappfinder/kappfinder_install /usr/local/share/applnk Program received signal SIGSEGV, Segmentation fault. 0x28bc17c9 in strlen () from /usr/lib/libc.so.5 (gdb) (gdb) bt #0 0x28bc17c9 in strlen () from /usr/lib/libc.so.5 #1 0xbfbff504 in ?? () #2 0x2886c12e in QCString::length () from /usr/X11R6/lib/libqt2.so #3 0x284aba9f in QCString::resize () from /usr/X11R6/lib/libqt2.so #4 0x282a516f in printableToString (str=0x28f71298 "text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;\nEx"..., l=197) at /usr/X11R6/include/qt2/qcstring.h:284 #5 0x282a71f7 in KConfigINIBackEnd::parseSingleConfigFile (this=0x804f300, rFile=@0xbfbff70c, pWriteBackMap=0x0, bGlobal=false) at kconfigbackend.cpp:308 #6 0x282a5ecc in KConfigINIBackEnd::parseConfigFiles (this=0x804f300) at kconfigbackend.cpp:182 #7 0x2828b5f9 in KConfigBase::parseConfigFiles (this=0xbfbff8c0) at kconfigbase.cpp:1292 #8 0x282a3a48 in KDesktopFile::KDesktopFile (this=0xbfbff8c0, pFileName=@0x804edb8, bReadOnly=true, resType=0x804b1e6 "apps") at kdesktopfile.cpp:43 #9 0x8049b84 in checkDesktopFile (templ=@0x804edb8, destDir=0xbfbff97c) at checker.cpp:58 #10 0x80499da in main (argc=2, argv=0xbfbffa00) at main_install.cpp:52 #11 0x804959d in _start () (gdb) Hmm looks like a problem with qt-2.2.4. You may want to know the contents of the string at 0x28f71298 which is: "text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;\nExec=emacs %f\nIcon=emacs\nTerminalOptions=\nPath=\nType=Application\nTerminal=0\nMapNotify=false\n" For info, my currently installed packages were: Mesa-3.2.1_1 jpeg-6b png-1.0.8_1 XFree86-3.3.6_7 kdelibs-2.0.1_2 qt-2.2.4 autoconf-2.13 kdesupport-2.0.1 setiathome-3.03_2 automake-1.4 lame-3.70_2 sox-12.17.1 bladeenc-0.92 lcms-1.06 sudo-1.6.3.5 bzip2-1.0.1 libaudiofile-0.2.0 tcl-8.3.1 cdrecord-1.9 libcdaudio-0.99.4 tiff-3.5.5 cvsup-bin-16.1 libmng-0.9.3 tk-8.3.1 ddd-3.2.1_1 libproplist-0.10.1 waveplay-2000.12.10 freetype2-2.0.1 libtool-1.3.4_1 wdm-1.20 gettext-0.10.35 libungif-4.1.0b1 windowmaker-0.63.1 glib-1.2.8 m4-1.4 xanim-2.80.2 gmake-3.79.1 mpg123-0.59r xmcd-2.6 gogo-2.39b nasm-0.98 xmix-2.1 gtk-1.2.8 open-motif-2.1.30_1 xplanet-0.73 imlib-1.9.8.1 p5-Audio-CD-0.04 xpm-3.4k I've got make.conf CFLAGS set to "-g -pipe" for everything built here so I may be able to help debug some more. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 7:27:27 2001 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by hub.freebsd.org (Postfix) with ESMTP id A204037B401 for ; Tue, 6 Feb 2001 07:27:10 -0800 (PST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 932492E440 for ; Tue, 6 Feb 2001 10:27:07 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id f16FR7874726; Tue, 6 Feb 2001 10:27:07 -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: <14976.6091.425890.658134@onceler.kciLink.com> Date: Tue, 6 Feb 2001 10:27:07 -0500 To: ports@freebsd.org Subject: Re: Apache mod_ ports In-Reply-To: <20010205180431.D17025@mail.vcnet.com> References: <20010205180431.D17025@mail.vcnet.com> X-Mailer: VM 6.90 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "JR" == Jon Rust writes: JR> Are port maintainers making progress here? I notice that Frontpage and JR> SSL are still absent from the list of mod_* ports. Any hope of getting JR> either of them? I'm still using Scot Hetzel's first attempt[1] at this, JR> and feel myself falling a bit behind, apache-wise. The thing with mod_ssl is that it requires extensions to the Apache API. I don't see how you can do that with a stand alone package that is installed after Apache is built. Please explain how you expect this to work. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 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 Feb 6 7:27:47 2001 Delivered-To: freebsd-ports@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id D019837B4EC; Tue, 6 Feb 2001 07:27:27 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id KAA31832; Tue, 6 Feb 2001 10:26:58 -0500 (EST) (envelope-from wollman) Date: Tue, 6 Feb 2001 10:26:58 -0500 (EST) From: Garrett Wollman Message-Id: <200102061526.KAA31832@khavrinen.lcs.mit.edu> To: Wes Peters Cc: freebsd-security@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: Package integrity check? In-Reply-To: <3A7F9AB6.5CAA983B@softweyr.com> References: <20010205210459.A2479@acc.umu.se> <3A7F9AB6.5CAA983B@softweyr.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org < said: > We could discuss some of the sensible things people asked for and > add them after the fact. We also need to be very clear about what it means for a package to be signed -- particularly in light of laws in the US and elsewhere giving legal status to digital signatures. If there's one good thing to be said about X.509, there's a lot of ways to stick signed blobs of text into those certificates.... -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 7:52:14 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (smtp.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id ADFC637B401; Tue, 6 Feb 2001 07:51:37 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f16FoO801591; Tue, 6 Feb 2001 17:50:29 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.9.3) with ESMTP id f16FoM938929; Tue, 6 Feb 2001 17:50:23 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A801D32.DE73F780@FreeBSD.org> Date: Tue, 06 Feb 2001 17:50:10 +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: Jordan Hubbard , Peter Pentchev , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] References: <10197.981450491@winston.osd.bsdi.com> <3A7FC36A.1434D2CC@FreeBSD.org> Content-Type: multipart/mixed; boundary="------------3B04EE5576164C2D792A2419" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------3B04EE5576164C2D792A2419 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Maxim Sobolev wrote: > Jordan Hubbard wrote: > > > > but was away from e-mail) ;). What do you think if I reimplement 'fuzzy' and > > > 'prefix' options from original proposal into `glob' and `regex' options? So > > > regex kidz would be able say "-x .*foo.*", while glob-lovers "-g *foo*". > > > > I love it. You could even make -g "implicit", e.g. I don't see any > > reason why "pkg_info emacs*" shouldn't just work, right? The only > > time you really need to pass a flag is to indicate a particular type > > of globbing, e.g. regex. > > Agreed. I already have globbing in place, so expect patches soon ;). Here it is. With this patch pkg_install treats any arguments as shell globs by default and as regexs with -x, so for example the following is equivalent: $ pkg_info foo\* $ pkg_info -x ^foo.\* Please let me know what do you think about those patches. -Maxim --------------3B04EE5576164C2D792A2419 Content-Type: text/plain; charset=koi8-r; name="pkg_info-glob+regex.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pkg_info-glob+regex.diff" Index: info.h =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/info/info.h,v retrieving revision 1.16 diff -d -u -r1.16 info.h --- info.h 2001/02/05 09:56:52 1.16 +++ info.h 2001/02/06 15:17:39 @@ -47,12 +47,18 @@ #define SHOW_ORIGIN 0x2000 #define SHOW_CKSUM 0x4000 +enum _match_t { + MATCH_ALL, MATCH_EXACT, MATCH_GLOB, MATCH_REGEX +}; + +typedef enum _match_t match_t; + extern int Flags; -extern Boolean AllInstalled; extern Boolean Quiet; extern char *InfoPrefix; extern char PlayPen[]; extern char *CheckPkg; +extern match_t MatchType; extern void show_file(char *, char *); extern void show_plist(char *, Package *, plist_t); Index: main.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/info/main.c,v retrieving revision 1.28 diff -d -u -r1.28 main.c --- main.c 2001/02/03 20:56:32 1.28 +++ main.c 2001/02/06 15:17:39 @@ -28,9 +28,10 @@ "$FreeBSD$"; #endif -static char Options[] = "acdDe:fghiIkl:LmopqrRst:v"; +static char Options[] = "acdDe:fgGhiIkl:LmopqrRst:vx"; int Flags = 0; +match_t MatchType = MATCH_GLOB; Boolean AllInstalled = FALSE; Boolean Quiet = FALSE; char *InfoPrefix = ""; @@ -54,7 +55,7 @@ else while ((ch = getopt(argc, argv, Options)) != -1) { switch(ch) { case 'a': - AllInstalled = TRUE; + MatchType = MATCH_ALL; break; case 'v': @@ -92,6 +93,10 @@ Flags |= SHOW_CKSUM; break; + case 'G': + MatchType = MATCH_EXACT; + break; + case 'i': Flags |= SHOW_INSTALL; break; @@ -116,9 +121,9 @@ Flags |= SHOW_MTREE; break; - case 's': - Flags |= SHOW_SIZE; - break; + case 's': + Flags |= SHOW_SIZE; + break; case 'o': Flags |= SHOW_ORIGIN; @@ -136,6 +141,10 @@ strcpy(PlayPen, optarg); break; + case 'x': + MatchType = MATCH_REGEX; + break; + case 'e': CheckPkg = optarg; break; @@ -157,18 +166,22 @@ /* Get all the remaining package names, if any */ while (*argv) { - while ((pkgs_split = strrchr(*argv, (int)'/')) != NULL) { - *pkgs_split++ = '\0'; - /* - * If character after the '/' is alphanumeric, then we've found the - * package name. Otherwise we've come across a trailing '/' and - * need to continue our quest. - */ - if (isalpha(*pkgs_split)) { - *argv = pkgs_split; - break; + /* Don't try to apply heuristics if arguments are regexs */ + if (MatchType != MATCH_REGEX) + while ((pkgs_split = strrchr(*argv, (int)'/')) != NULL) { + *pkgs_split++ = '\0'; + /* + * If character after the '/' is alphanumeric or shell + * metachar, then we've found the package name. Otherwise + * we've come across a trailing '/' and need to continue our + * quest. + */ + if (isalpha(*pkgs_split) || ((MatchType == MATCH_GLOB) && \ + strpbrk(pkgs_split, "*?[]") != NULL)) { + *argv = pkgs_split; + break; + } } - } *pkgs++ = *argv++; } Index: perform.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/info/perform.c,v retrieving revision 1.33 diff -d -u -r1.33 perform.c --- perform.c 2001/02/03 20:56:32 1.33 +++ perform.c 2001/02/06 15:17:39 @@ -26,12 +26,16 @@ #include "lib.h" #include "info.h" +#include +#include +#include #include +#include #include -#include static int fname_cmp(const FTSENT **, const FTSENT **); static int pkg_do(char *); +static int rexs_match(char **, char *); int pkg_perform(char **pkgs) @@ -50,31 +54,93 @@ snprintf(buf, FILENAME_MAX, "%s/%s", tmp, CheckPkg); return abs(access(buf, R_OK)); + /* Not reached */ } - else if (AllInstalled) { - FTS *ftsp; - FTSENT *f; - char *paths[2]; - if (!isdir(tmp)) - return 1; - paths[0] = tmp; - paths[1] = NULL; - ftsp = fts_open(paths, FTS_LOGICAL | FTS_NOCHDIR | FTS_NOSTAT, - fname_cmp); - if (ftsp != NULL) { - while ((f = fts_read(ftsp)) != NULL) { - if (f->fts_info == FTS_D && f->fts_level == 1) { - err_cnt += pkg_do(f->fts_name); - fts_set(ftsp, f, FTS_SKIP); + switch (MatchType) { + case MATCH_ALL: + case MATCH_REGEX: + { + FTS *ftsp; + FTSENT *f; + char *paths[2]; + int errcode; + + if (!isdir(tmp)) + return 1; + paths[0] = tmp; + paths[1] = NULL; + ftsp = fts_open(paths, FTS_LOGICAL | FTS_NOCHDIR | FTS_NOSTAT, + fname_cmp); + if (ftsp != NULL) { + while ((f = fts_read(ftsp)) != NULL) { + if (f->fts_info == FTS_D && f->fts_level == 1) { + fts_set(ftsp, f, FTS_SKIP); + if (MatchType == MATCH_REGEX) { + errcode = rexs_match(pkgs, f->fts_name); + if (errcode == -1) { + err_cnt += 1; + break; + } + else if (errcode == 0) + continue; + } + err_cnt += pkg_do(f->fts_name); + } } + fts_close(ftsp); } - fts_close(ftsp); } - } - else + break; + case MATCH_GLOB: + { + glob_t g; + char *gexpr; + char *cp; + int gflags; + int prev_matchc; + + gflags = GLOB_ERR; + prev_matchc = 0; + for (i = 0; pkgs[i]; i++) { + asprintf(&gexpr, "%s/%s", tmp, pkgs[i]); + + if (glob(gexpr, gflags, NULL, &g) != 0) { + warn("%s: error encountered when matching glob", pkgs[i]); + return 1; + } + + /* + * If glob doesn't match try to use pkgs[i] directly - it + * could be name of the tarball. + */ + if (g.gl_matchc == prev_matchc) + err_cnt += pkg_do(pkgs[i]); + + prev_matchc = g.gl_matchc; + gflags |= GLOB_APPEND; + free(gexpr); + } + + for (i = 0; i < g.gl_matchc; i++) { + cp = strrchr(g.gl_pathv[i], '/'); + if (cp == NULL) + cp = g.gl_pathv[i]; + else + cp++; + + err_cnt += pkg_do(cp); + } + + globfree(&g); + } + break; + default: for (i = 0; pkgs[i]; i++) err_cnt += pkg_do(pkgs[i]); + break; + } + return err_cnt; } @@ -227,7 +293,7 @@ if (!in_cleanup) { in_cleanup = 1; - leave_playpen(); + leave_playpen(); } if (sig) exit(1); @@ -237,4 +303,53 @@ fname_cmp(const FTSENT **a, const FTSENT **b) { return strcmp((*a)->fts_name, (*b)->fts_name); +} + +/* + * Return 1 if specified pkgname matches at least one + * of the RE from patterns. Otherwise return 0 if no + * matches were found or -1 if RE engine reported an + * error (usually invalid syntax). + */ +static int +rexs_match(char **patterns, char *pkgname) +{ + Boolean matched; + char errbuf[128]; + int i; + int errcode; + int retval; + regex_t rex; + + errcode = 0; + retval = 0; + matched = FALSE; + for (i = 0; patterns[i]; i++) { + errcode = regcomp(&rex, patterns[i], REG_BASIC | REG_NOSUB); + if (errcode != 0) + break; + + errcode = regexec(&rex, pkgname, 0, NULL, 0); + if (errcode == 0) { + matched = TRUE; + retval = 1; + break; + } + else if (errcode != REG_NOMATCH) + break; + + regfree(&rex); + errcode = 0; + } + + if (errcode != 0) { + regerror(errcode, &rex, errbuf, sizeof(errbuf)); + warnx("%s: %s", patterns[i], errbuf); + retval = -1; + } + + if ((errcode != 0) || (matched == TRUE)) + regfree(&rex); + + return retval; } Index: pkg_info.1 =================================================================== RCS file: /home/ncvs/src/usr.sbin/pkg_install/info/pkg_info.1,v retrieving revision 1.33 diff -d -u -r1.33 pkg_info.1 --- pkg_info.1 2001/02/03 20:56:32 1.33 +++ pkg_info.1 2001/02/06 15:17:39 @@ -25,7 +25,7 @@ .Nd a utility for displaying information on software packages .Sh SYNOPSIS .Nm -.Op Fl cdDfgiIkLmopqrRsv +.Op Fl cdDfgGiIkLmopqrRsvx .Op Fl e Ar package .Op Fl l Ar prefix .Op Fl t Ar template @@ -98,6 +98,23 @@ package was generated, is located in the .Fx .Em "Ports Collection" . +.It Fl G +Do not try to expand shell glob patterns in the +.Ar pkg-name +when selecting packages to be displayed (by default +.Nm +automatically expands shell glob patterns in the +.Ar pkg-name +). +.It Fl x +Treat the +.Ar pkg-name +as a regular expression and display information only for packages +matching that regular expression. Multiple regular expressions +could be provided, in that case +.Nm +displays information about all packages that match at least one +regular expression from the list. .It Fl e Ar pkg-name If the package identified by .Ar pkg-name --------------3B04EE5576164C2D792A2419-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 8: 3:29 2001 Delivered-To: freebsd-ports@freebsd.org Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (Postfix) with ESMTP id 5277B37B491; Tue, 6 Feb 2001 08:03:11 -0800 (PST) Received: from v-ger.we.lc.ehu.es (v-ger [158.227.6.179]) by polaris.we.lc.ehu.es (8.11.1/8.11.1) with ESMTP id f16G39b08863; Tue, 6 Feb 2001 17:03:09 +0100 (MET) Received: from we.lc.ehu.es (localhost [127.0.0.1]) by v-ger.we.lc.ehu.es (8.11.1/8.11.1) with ESMTP id f16G2ek02163; Tue, 6 Feb 2001 17:02:40 +0100 (CET) (envelope-from jose@we.lc.ehu.es) Message-ID: <3A802020.E7A7675F@we.lc.ehu.es> Date: Tue, 06 Feb 2001 17:02:40 +0100 From: "Jose M. Alcaide" Organization: Universidad del Pais Vasco - Dpto. de Electricidad y Electronica X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: es-ES, es, en-US, en MIME-Version: 1.0 To: Matthew Thyer Cc: will@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: kappfinder segmentation fault during ports/x11/kdebase2 install on recent -CURRENT References: <3A80143D.908D5886@camtech.net.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Matthew Thyer wrote: > > Just when I thought kde2 might be fixed, installing ports/x11/kdebase2 > gives: > > install -c -o root -g wheel -m 444 ./kappfinder.desktop /usr/local/share/applnk/System/kappfinder.desktop > echo "Installing non-KDE applications" > Installing non-KDE applications > pwd=`pwd`; \ > (cd . && $pwd/kappfinder_install "/usr/local/share/applnk") > Segmentation fault - core dumped > gmake[3]: *** [runkappfinder_yes] Error 139 > [.....] I sent a message to the -ports list about the same problem a few hours ago :-) Thinking about a -pthread+libc_r problem (there was a HEADS UP about this issue some days ago, which only affects -CURRENT), now I am rebuilding all ports again, this time including XFree86-3.3.6. Are you using -CURRENT? Cheers, -- JMA ****** Jose M. Alcaide // jose@we.lc.ehu.es // jmas@FreeBSD.org ****** ** "Beware of Programmers who carry screwdrivers" -- Leonard Brandwein ** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 8:10:30 2001 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (pool114-tch-2.Sofia.0rbitel.net [212.95.171.114]) by hub.freebsd.org (Postfix) with SMTP id 4C4D437B401 for ; Tue, 6 Feb 2001 08:10:08 -0800 (PST) Received: (qmail 539 invoked by uid 1000); 6 Feb 2001 16:08:26 -0000 Date: Tue, 6 Feb 2001 18:08:25 +0200 From: Peter Pentchev To: Maxim Sobolev Cc: Jordan Hubbard , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] Message-ID: <20010206180825.A406@ringworld.oblivion.bg> Mail-Followup-To: Maxim Sobolev , Jordan Hubbard , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis References: <10197.981450491@winston.osd.bsdi.com> <3A7FC36A.1434D2CC@FreeBSD.org> <3A801D32.DE73F780@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: <3A801D32.DE73F780@FreeBSD.org>; from sobomax@FreeBSD.org on Tue, Feb 06, 2001 at 05:50:10PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 05:50:10PM +0200, Maxim Sobolev wrote: > Maxim Sobolev wrote: > > > Jordan Hubbard wrote: > > > > > > but was away from e-mail) ;). What do you think if I reimplement 'fuzzy' and > > > > 'prefix' options from original proposal into `glob' and `regex' options? So > > > > regex kidz would be able say "-x .*foo.*", while glob-lovers "-g *foo*". > > > > > > I love it. You could even make -g "implicit", e.g. I don't see any > > > reason why "pkg_info emacs*" shouldn't just work, right? The only > > > time you really need to pass a flag is to indicate a particular type > > > of globbing, e.g. regex. > > > > Agreed. I already have globbing in place, so expect patches soon ;). > > Here it is. With this patch pkg_install treats any arguments as shell globs by > default and as regexs with -x, so for example the following is equivalent: > $ pkg_info foo\* > $ pkg_info -x ^foo.\* > > Please let me know what do you think about those patches. > > -Maxim The patches look great! I'll test them in an hour or two.. Just a minor comment: in the rexs_match() function, you compile each pattern time and again, for each package. Not that it would matter a lot (the actual performance bottleneck would be disk I/O, I suppose), but it could fasten things a bit if you precompiled all patterns into a regex_t array at the start. G'luck, Peter -- If the meanings of 'true' and 'false' were switched, then this sentence wouldn't be false. [snip] > Index: perform.c > =================================================================== > RCS file: /home/ncvs/src/usr.sbin/pkg_install/info/perform.c,v > retrieving revision 1.33 [snip] > +/* > + * Return 1 if specified pkgname matches at least one > + * of the RE from patterns. Otherwise return 0 if no > + * matches were found or -1 if RE engine reported an > + * error (usually invalid syntax). > + */ > +static int > +rexs_match(char **patterns, char *pkgname) > +{ > + Boolean matched; > + char errbuf[128]; > + int i; > + int errcode; > + int retval; > + regex_t rex; > + > + errcode = 0; > + retval = 0; > + matched = FALSE; > + for (i = 0; patterns[i]; i++) { > + errcode = regcomp(&rex, patterns[i], REG_BASIC | REG_NOSUB); > + if (errcode != 0) > + break; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 8:17:44 2001 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (pool114-tch-2.Sofia.0rbitel.net [212.95.171.114]) by hub.freebsd.org (Postfix) with SMTP id C8E7437B4EC for ; Tue, 6 Feb 2001 08:17:25 -0800 (PST) Received: (qmail 712 invoked by uid 1000); 6 Feb 2001 16:15:36 -0000 Date: Tue, 6 Feb 2001 18:15:36 +0200 From: Peter Pentchev To: Maxim Sobolev Cc: Jordan Hubbard , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] Message-ID: <20010206181536.B406@ringworld.oblivion.bg> Mail-Followup-To: Maxim Sobolev , Jordan Hubbard , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis References: <10197.981450491@winston.osd.bsdi.com> <3A7FC36A.1434D2CC@FreeBSD.org> <3A801D32.DE73F780@FreeBSD.org> <20010206180825.A406@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: <20010206180825.A406@ringworld.oblivion.bg>; from roam@orbitel.bg on Tue, Feb 06, 2001 at 06:08:25PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 06:08:25PM +0200, Peter Pentchev wrote: > > The patches look great! I'll test them in an hour or two.. > Just a minor comment: in the rexs_match() function, you compile > each pattern time and again, for each package. Not that it would > matter a lot (the actual performance bottleneck would be disk I/O, > I suppose), but it could fasten things a bit if you precompiled ^^^^^^ 'speed up' would surely be better here :P Time to get some sleep ;) > all patterns into a regex_t array at the start. G'luck, Peter -- Do you think anybody has ever had *precisely this thought* before? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 8:20:23 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B938137B4EC for ; Tue, 6 Feb 2001 08:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16GK2u48726; Tue, 6 Feb 2001 08:20:02 -0800 (PST) (envelope-from gnats) Received: from matrix.eurocontrol.fr (matrix.eurocontrol.fr [147.196.254.254]) by hub.freebsd.org (Postfix) with ESMTP id EB40837B4EC for ; Tue, 6 Feb 2001 08:16:14 -0800 (PST) Received: from caerdonn.eurocontrol.fr (caerdonn.eurocontrol.fr [147.196.51.214]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client CN "caerdonn.eurocontrol.fr", Issuer CN "CA ITM" (verified OK)) by matrix.eurocontrol.fr (Postfix/TLS) with ESMTP id 5B1235C5B for ; Tue, 6 Feb 2001 17:16:14 +0100 (CET) Received: by caerdonn.eurocontrol.fr (Postfix/TLS, from userid 1193) id 007D34E77; Tue, 6 Feb 2001 17:16:13 +0100 (CET) Message-Id: <20010206161613.007D34E77@caerdonn.eurocontrol.fr> Date: Tue, 6 Feb 2001 17:16:13 +0100 (CET) From: roberto@eurocontrol.fr Reply-To: roberto@eurocontrol.fr To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/24901: gnomevfs 0.5 broken by recent libc/libc_r changes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24901 >Category: ports >Synopsis: Problem with some threaded ports (e.g.gnomevfs) >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 Feb 06 08:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Ollivier Robert >Release: FreeBSD 5.0-CURRENT i386 >Organization: Usenet Canal Historique >Environment: System: FreeBSD caerdonn.eurocontrol.fr 5.0-CURRENT FreeBSD 5.0-CURRENT #50: Fri Jan 26 10:00:25 CET 2001 roberto@caerdonn.eurocontrol.fr:/src/src/sys/compile/CAERDONN i386 CURRENT ports as of today. >Description: The recent change in libc/libc_r where -lc_r is now only the pthreads library and doesn't contain any libc code seems to break some threaded ports. glib 1.2.8 is such a port and the definition inside glib12-config doesn't show any call to -lc_r, thus the ports depending on that fails. >How-To-Repeat: Try to compile gnomevfs. ===> Patching for gnomevfs-0.5 ===> Applying FreeBSD patches for gnomevfs-0.5 ===> Configuring for gnomevfs-0.5 creating cache ./config.cache checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel ... checking for GLIB - version >= 1.2.0... no *** Could not run GLIB test program, checking why... *** The test program failed to compile or link. See the file config.log for the *** exact error that occured. This usually means GLIB was incorrectly installed *** or that you have moved GLIB since it was installed. In the latter case, you *** may want to edit the glib-config script: /usr/local/bin/glib12-config configure: error: *** GLIB 1.2.0 or better is required. The latest version of GLIB *** is always available from ftp://ftp.gtk.org/. ===> 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. The config.log file shows: configure:2414: checking for GLIB - version >= 1.2.0 configure:2513: cc -o conftest -O -pipe -I/usr/X11R6/include -I/usr/local/include/glib12 -D_THREAD_SAFE -I/usr/local/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib -Wl,-E -lgmodule12 -lgthread12 -lglib12 -pthread -L/usr/local/lib 1>&5 /usr/lib/crt1.o: In function `_start': /usr/lib/crt1.o(.text+0x56): undefined reference to `atexit' /usr/lib/crt1.o(.text+0x66): undefined reference to `atexit' /usr/lib/crt1.o(.text+0x7f): undefined reference to `exit' /tmp/ccNN9Uo3.o: In function `main': ... >Fix: Add -lc_r to the flags in glib12-config maybe? >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 Feb 6 8:40:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CD91737B401 for ; Tue, 6 Feb 2001 08:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16Ge4p51150; Tue, 6 Feb 2001 08:40:04 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Feb 2001 08:40:04 -0800 (PST) Message-Id: <200102061640.f16Ge4p51150@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Maxim Sobolev Subject: Re: ports/24901: gnomevfs 0.5 broken by recent libc/libc_r changes Reply-To: Maxim Sobolev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24901; it has been noted by GNATS. From: Maxim Sobolev To: roberto@eurocontrol.fr Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/24901: gnomevfs 0.5 broken by recent libc/libc_r changes Date: Tue, 06 Feb 2001 18:37:34 +0200 roberto@eurocontrol.fr wrote: > >Number: 24901 > >Category: ports > >Synopsis: Problem with some threaded ports (e.g.gnomevfs) > >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 Feb 06 08:20:01 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: Ollivier Robert > >Release: FreeBSD 5.0-CURRENT i386 > >Organization: > Usenet Canal Historique > >Environment: > System: FreeBSD caerdonn.eurocontrol.fr 5.0-CURRENT FreeBSD 5.0-CURRENT #50: Fri Jan 26 10:00:25 CET 2001 roberto@caerdonn.eurocontrol.fr:/src/src/sys/compile/CAERDONN i386 > > CURRENT ports as of today. > > >Description: > > The recent change in libc/libc_r where -lc_r is now only the pthreads > library and doesn't contain any libc code seems to break some threaded > ports. > > glib 1.2.8 is such a port and the definition inside glib12-config > doesn't show any call to -lc_r, thus the ports depending on that fails. > > >How-To-Repeat: > > Try to compile gnomevfs. > > ===> Patching for gnomevfs-0.5 > ===> Applying FreeBSD patches for gnomevfs-0.5 > ===> Configuring for gnomevfs-0.5 > creating cache ./config.cache > checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel > ... > checking for GLIB - version >= 1.2.0... no > *** Could not run GLIB test program, checking why... > *** The test program failed to compile or link. See the file config.log for the > *** exact error that occured. This usually means GLIB was incorrectly installed > *** or that you have moved GLIB since it was installed. In the latter case, you > *** may want to edit the glib-config script: /usr/local/bin/glib12-config > configure: error: > *** GLIB 1.2.0 or better is required. The latest version of GLIB > *** is always available from ftp://ftp.gtk.org/. > ===> 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. > > The config.log file shows: > > configure:2414: checking for GLIB - version >= 1.2.0 > configure:2513: cc -o conftest -O -pipe -I/usr/X11R6/include -I/usr/local/include/glib12 -D_THREAD_SAFE -I/usr/local/include -L/usr/X11R6/lib conftest.c -L/usr/local/lib -Wl,-E -lgmodule12 -lgthread12 -lglib12 -pthread -L/usr/local/lib 1>&5 > /usr/lib/crt1.o: In function `_start': > /usr/lib/crt1.o(.text+0x56): undefined reference to `atexit' > /usr/lib/crt1.o(.text+0x66): undefined reference to `atexit' > /usr/lib/crt1.o(.text+0x7f): undefined reference to `exit' > /tmp/ccNN9Uo3.o: In function `main': > ... Have you recompiled/reinstalled all pthread-using ports after upgrading your -current system? If not please do so, because it's likely to be the source of this problem. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 8:50:25 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 385CD37B4EC for ; Tue, 6 Feb 2001 08:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16Go4r52322; Tue, 6 Feb 2001 08:50:04 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Feb 2001 08:50:04 -0800 (PST) Message-Id: <200102061650.f16Go4r52322@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Ollivier Robert Subject: Re: ports/24901: gnomevfs 0.5 broken by recent libc/libc_r changes Reply-To: Ollivier Robert Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24901; it has been noted by GNATS. From: Ollivier Robert To: Maxim Sobolev Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/24901: gnomevfs 0.5 broken by recent libc/libc_r changes Date: Tue, 6 Feb 2001 17:42:10 +0100 According to Maxim Sobolev: > Have you recompiled/reinstalled all pthread-using ports after upgrading > your -current system? If not please do so, because it's likely to be the > source of this problem. I have already recomiled glib 1.2.8 and tried again to compile gnomevfs. No go. Many ports still use « -pthread » to link-in -lc_r and this doesn't work anymore (one needs to use only -lc_r). So either we add a dependency on -lc inside -lc_r or we need to change every port... -- Ollivier ROBERT -=- Eurocontrol EEC/ITM -=- Ollivier.Robert@eurocontrol.fr FreeBSD caerdonn.eurocontrol.fr 5.0-CURRENT #46: Wed Jan 3 15:52:00 CET 2001 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 9: 0:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 10B3737B401 for ; Tue, 6 Feb 2001 09:00:05 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16H04K53441; Tue, 6 Feb 2001 09:00:04 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Feb 2001 09:00:04 -0800 (PST) Message-Id: <200102061700.f16H04K53441@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Maxim Sobolev Subject: Re: ports/24901: gnomevfs 0.5 broken by recent libc/libc_r changes Reply-To: Maxim Sobolev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24901; it has been noted by GNATS. From: Maxim Sobolev To: Ollivier Robert Cc: FreeBSD-gnats-submit@FreeBSD.org Subject: Re: ports/24901: gnomevfs 0.5 broken by recent libc/libc_r changes Date: Tue, 06 Feb 2001 18:58:09 +0200 Ollivier Robert wrote: > According to Maxim Sobolev: > > Have you recompiled/reinstalled all pthread-using ports after upgrading > > your -current system? If not please do so, because it's likely to be the > > source of this problem. > > I have already recomiled glib 1.2.8 and tried again to compile gnomevfs. No > go. Many ports still use « -pthread » to link-in -lc_r and this doesn't > work anymore (one needs to use only -lc_r). > > So either we add a dependency on -lc inside -lc_r or we need to change > every port... You are wrong. -pthread option now instructs linker to link both libc_r and libc (see freebsd-ports, cvs-all and freebsd-current mail archives for details). gnomevfs depends on many libraries, so I doubt that recompilation of only glib will be necessary. The recommended procedure is to do "rm -rf /usr/X11R6 /usr/local" and reinstall all from the scratch. I did this procedure some time ago (after libc_r wild) and after that successfully compiled gnome-vfs, nautilus et al. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 9: 4:41 2001 Delivered-To: freebsd-ports@freebsd.org Received: from homer.softweyr.com (bsdconspiracy.net [208.187.122.220]) by hub.freebsd.org (Postfix) with ESMTP id 74DB337B401; Tue, 6 Feb 2001 09:04:13 -0800 (PST) Received: from [127.0.0.1] (helo=softweyr.com ident=Fools trust ident!) by homer.softweyr.com with esmtp (Exim 3.16 #1) id 14QBbz-0000AU-00; Tue, 06 Feb 2001 10:09:03 -0700 Message-ID: <3A802FAF.792F61F5@softweyr.com> Date: Tue, 06 Feb 2001 10:09:03 -0700 From: Wes Peters Organization: Softweyr LLC X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Garrett Wollman Cc: freebsd-security@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: Package integrity check? References: <20010205210459.A2479@acc.umu.se> <3A7F9AB6.5CAA983B@softweyr.com> <200102061526.KAA31832@khavrinen.lcs.mit.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Garrett Wollman wrote: > > < said: > > > We could discuss some of the sensible things people asked for and > > add them after the fact. > > We also need to be very clear about what it means for a package to be > signed -- particularly in light of laws in the US and elsewhere giving > legal status to digital signatures. If there's one good thing to be > said about X.509, there's a lot of ways to stick signed blobs of text > into those certificates.... That's pretty much at the discretion of the parties signing and verifying the packages. One of the signatures is a simple SHA1 crypto checksum, that implies little other than you got what the package creator put together to a fair degree of certainty. Everyone reading this thread should note that the signature exists ONLY in the gzip header for a .tgz package; no attempt is made to sign the extracted onto the system or anything like that. It is the package that is signed, not the application. OTOH, the idea of signed executables intrigues me... -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 9: 7:29 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hex.databits.net (hex.databits.net [207.29.192.16]) by hub.freebsd.org (Postfix) with SMTP id 491AD37B401 for ; Tue, 6 Feb 2001 09:07:11 -0800 (PST) Received: (qmail 27521 invoked by uid 1001); 6 Feb 2001 17:07:10 -0000 Date: Tue, 6 Feb 2001 12:07:10 -0500 From: Pete Fritchman To: Dan Larsson Cc: freebsd-ports@FreeBSD.org Subject: Re: c-client port needs updating Message-ID: <20010206120710.B25984@databits.net> 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 dl@tyfon.net on Mon, Feb 05, 2001 at 02:09:23PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ++ 05/02/01 14:09 +0100 - Dan Larsson: >The distfile `imap-2000b.tar.Z' has been replaced >by `imap-2000c.tar.Z', please update the port accordingly. > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24834 > >Affected ports: >mail/imap-uw http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24864 >mail/p5-Mail-CClient I emailed the maintainer a patch. Hopefully he will send-pr(1) it. http://hex.databits.net/~petef/diffs/p5-Mail-CClient.diff >mail/pine4 http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24830 >mail/pine4-ssl Hmm, this is marked as broken because the ssl patching needs to happen to the cclient library (mail/cclient). >mail/tkrat The LIB_DEPENDS in this port says that mail/imap-uw should be installed for the cclient library, but it's probably better to have it use mail/cclient. The cclient library patch to upgrade to imap-2000c is PR 24834. Maintainer emailed. http://hex.databits.net/~petef/diffs/tkrat.diff >mail/tkrat2 This should build fine once PR 24834 is committed. >russian/pine.language This should build fine once PR 24834 and 24830 are committed. > [...] -pete -- Pete Fritchman Databits Network Services, Inc. finger petef@databits.net for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 9:20:25 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BAA6A37B491 for ; Tue, 6 Feb 2001 09:20:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16HK4p57921; Tue, 6 Feb 2001 09:20:04 -0800 (PST) (envelope-from gnats) Received: from electron.databits.net (electron.databits.net [207.29.204.16]) by hub.freebsd.org (Postfix) with ESMTP id E074D37B491 for ; Tue, 6 Feb 2001 09:13:15 -0800 (PST) Received: (from petef@localhost) by electron.databits.net (8.11.2/8.11.2) id f16HCQ832245; Tue, 6 Feb 2001 12:12:26 -0500 (EST) (envelope-from petef) Message-Id: <200102061712.f16HCQ832245@electron.databits.net> Date: Tue, 6 Feb 2001 12:12:26 -0500 (EST) From: petef@databits.net Reply-To: petef@databits.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24904: Update port: mail/tkrat Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24904 >Category: ports >Synopsis: Update port: mail/tkrat >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 Feb 06 09:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Pete Fritchman >Release: FreeBSD 5.0-CURRENT i386 >Organization: Databits Network Services, Inc. >Environment: latest ports tree >Description: Modify LIB_DEPEND to install mail/cclient for the cclient library instead of mail/imap-uw. Minor cosmetic changes to pkg-plist (add WWW: and author name/email), and MAINTAINER update (old MAINTAINER email is bouncing). >How-To-Repeat: n/a >Fix: WWW: http://hex.databits.net/~petef/diffs/tkrat.diff Index: ports/mail/tkrat/Makefile =================================================================== RCS file: /home/ncvs/ports/mail/tkrat/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- ports/mail/tkrat/Makefile 2001/02/05 15:11:18 1.23 +++ ports/mail/tkrat/Makefile 2001/02/06 17:09:58 @@ -13,12 +13,12 @@ ftp://ftp.riken.go.jp/pub/net/mail/tkrat/ \ ftp://ftp.uni-koeln.de/windows/xcontrib/ -MAINTAINER= appleseed@his.com +MAINTAINER= petef@databits.net BUILD_DEPENDS= tclsh8.2:${PORTSDIR}/lang/tcl82 LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82 \ tk82.1:${PORTSDIR}/x11-toolkits/tk82 \ - c-client4.7:${PORTSDIR}/mail/imap-uw + c-client4.8:${PORTSDIR}/mail/cclient GNU_CONFIGURE= yes Index: ports/mail/tkrat/pkg-descr =================================================================== RCS file: /home/ncvs/ports/mail/tkrat/pkg-descr,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 pkg-descr --- ports/mail/tkrat/pkg-descr 1997/11/14 22:51:09 1.1.1.1 +++ ports/mail/tkrat/pkg-descr 2001/02/06 17:09:58 @@ -19,3 +19,8 @@ * Uses sendmail OR direct SMTP or other MA * Supports Delivery Status Notifications - DSN ESMTP sendmail-8.7 * Supports PGP/MIME and "old-style PGP message receipt" + +WWW: http://www.dtek.chalmers.se/~maf/ratatosk/ + +- Pete +petef@databits.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 Tue Feb 6 9:30:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 842A437B401 for ; Tue, 6 Feb 2001 09:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16HU2060789; Tue, 6 Feb 2001 09:30:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A63F37B4EC for ; Tue, 6 Feb 2001 09:21:59 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16HLx859764; Tue, 6 Feb 2001 09:21:59 -0800 (PST) (envelope-from nobody) Message-Id: <200102061721.f16HLx859764@freefall.freebsd.org> Date: Tue, 6 Feb 2001 09:21:59 -0800 (PST) From: goranrunfeldt@home.se To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24905: Update port: games/xtux 2001.01.07 -> 2001.02.04 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24905 >Category: ports >Synopsis: Update port: games/xtux 2001.01.07 -> 2001.02.04 >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 Feb 06 09:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Göran Runfeldt >Release: >Organization: >Environment: >Description: Update to latest version >How-To-Repeat: >Fix: begin 644 xtux-20010204 M9&EF9B`M'1U>"YOTU!4U1%4E]3251%7U-/55)#149/4D=%?0HK34%3 M5$527U-)5$5?4U5"1$E2/7AT=7@**T1)4U1.04U%/0EX='5X+7-R8RTR,#`Q M,#(P-`H@"B!-04E.5$%)3D52/0EG;W)A;G)U;F9E;&1T0&AO;64N'1U>"]D:7-T:6YF;PHM+2T@ M>'1U>"YO'1U>"]D:7-T:6YF;PE4=64@1F5B("`V(#`Y.C,R.C0R(#(P,#$*0$`@ M+3$@*S$@0$`*+4U$-2`H>'1U>"USBD@/2!B,#8S,V9C-38R-V0R,#(X960V8C@U,F(P M93$Q8V0Y-PID:69F("UR=2!X='5X+F]R:6'1U M>"]F:6QE'1U>"YO'1U>"]F:6QE'1U>"]F:6QE'1U>"YO'1U>"]F:6QE'1U>"]F:6QE'1U>"YO'1U>"]F:6QE'1U M>"]F:6QE'1U>"YO'1U>"]M87!S+VAO M;64N;6%P"B!S:&%R92]X='5X+VUA<',O:&]M93(N;6%P"BMS:&%R92]X='5X M+VUA<',O;6%P9V5N+FUA<`H@'1U>"]M87!S+VUY7W=A>5]H;VUE M+FUA<`H@'1U>"]M87!S+W-K>7-C'1U>"]D969A=6QT+G1A8FQE !"FUA ` 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 Tue Feb 6 9:31:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D71EA37B491; Tue, 6 Feb 2001 09:30:59 -0800 (PST) Received: (from ade@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16HUxp60919; Tue, 6 Feb 2001 09:30:59 -0800 (PST) (envelope-from ade) Date: Tue, 6 Feb 2001 09:30:59 -0800 (PST) From: Message-Id: <200102061730.f16HUxp60919@freefall.freebsd.org> To: roberto@eurocontrol.fr, ade@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24901: Problem with some threaded ports (e.g.gnomevfs) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Problem with some threaded ports (e.g.gnomevfs) State-Changed-From-To: open->closed State-Changed-By: ade State-Changed-When: Tue Feb 6 09:26:00 PST 2001 State-Changed-Why: The solution, because so damn many things were screwed up with the threading changes in -current, is simple. 1. Build a post-apocalypse -current 2. backup configuration files 3. rm -rf /var/db/pkg/* /usr/local/* /usr/X11R6/* (plus elsewhere if you play with PREFIX). 4. Rebuild every single port from source (do not use the 5.x packages) When -current stabilizes enough that these kind of massive and far-reaching userland changes quieten down, then it'll be easier to go through ports/ and see if there are any remaining friendly fire casualties. http://www.freebsd.org/cgi/query-pr.cgi?pr=24901 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 9:40:53 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 735F237B4EC for ; Tue, 6 Feb 2001 09:40:16 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16HeGu62177; Tue, 6 Feb 2001 09:40:16 -0800 (PST) (envelope-from gnats) Received: from heechee.tobez.org (254.adsl0.ryv.worldonline.dk [213.237.10.254]) by hub.freebsd.org (Postfix) with ESMTP id 7F77737B491; Tue, 6 Feb 2001 09:30:57 -0800 (PST) Received: by heechee.tobez.org (Postfix, from userid 1001) id AE65C54EC; Tue, 6 Feb 2001 18:30:52 +0100 (CET) Message-Id: <20010206173052.AE65C54EC@heechee.tobez.org> Date: Tue, 6 Feb 2001 18:30:52 +0100 (CET) From: tobez@tobez.org Reply-To: tobez@tobez.org To: FreeBSD-gnats-submit@freebsd.org Cc: eivind@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/24906: [UPGRADE PORT] devel/re2c 0.5 -> 0.9.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24906 >Category: ports >Synopsis: [UPGRADE PORT] devel/re2c 0.5 -> 0.9.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 Feb 06 09:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Anton Berezin >Release: FreeBSD 5.0-CURRENT i386 >Organization: N/A >Environment: >Description: - newer version; - respects CFLAGS; - installs documentation; - required fewer (well, zero) patches. Four files were deleted: files/patch-aa files/patch-ab files/patch-ac files/patch-ad >How-To-Repeat: >Fix: diff -u -ruN re2c.bak/Makefile re2c/Makefile --- re2c.bak/Makefile Tue Feb 6 17:49:12 2001 +++ re2c/Makefile Tue Feb 6 18:08:54 2001 @@ -6,21 +6,29 @@ # PORTNAME= re2c -PORTVERSION= 0.5 +PORTVERSION= 0.9.1 CATEGORIES= devel -MASTER_SITES= ftp://csg.uwaterloo.ca/pub/peter/ \ - ftp://ftp.uni-trier.de/pub/unix/compiler-toolkit/re2c/ \ - ftp://ftp.tut.ac.jp/.h3/UNIX/lib/ -DISTNAME= ${PORTNAME}.${PORTVERSION} +MASTER_SITES= http://www.tildeslash.org/re2c/ \ + http://freesoftware.missouri.edu/pub/NetSW/SoftEng/CompilerConstruct/re2c/ \ + http://www.tobez.org/download/port-mirrors/devel/re2c/ MAINTAINER= eivind@FreeBSD.org +USE_GMAKE= yes + MAN1= re2c.1 ALL_TARGET= default +pre-patch: + @${PERL} -pi -e 's|^CFLAGS.*$$|CFLAGS+=-Wall -I. -Wno-unused -Wno-parentheses|' ${WRKSRC}/Makefile + @${PERL} -pi -e 's|||' ${WRKSRC}/parser.cc ${WRKSRC}/parser.y + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/re2c ${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/re2c.1 ${PREFIX}/man/man1 + ${MKDIR} ${PREFIX}/share/doc/re2c + ${INSTALL_DATA} ${WRKSRC}/doc/loplas.ps.gz ${WRKSRC}/doc/sample.bib \ + ${PREFIX}/share/doc/re2c .include diff -u -ruN re2c.bak/distinfo re2c/distinfo --- re2c.bak/distinfo Tue Feb 6 17:49:12 2001 +++ re2c/distinfo Tue Feb 6 18:11:58 2001 @@ -1 +1 @@ -MD5 (re2c.0.5.tar.gz) = 5c00e8e554d4b650895ecfc3e63338b2 +MD5 (re2c-0.9.1.tar.gz) = 574dc153ac4edd7ccbf712721af23040 diff -u -ruN re2c.bak/files/patch-aa re2c/files/patch-aa --- re2c.bak/files/patch-aa Tue Feb 6 17:49:12 2001 +++ re2c/files/patch-aa Thu Jan 1 01:00:00 1970 @@ -1,13 +0,0 @@ ---- basics.h.orig Thu May 14 16:35:56 1998 -+++ basics.h Thu May 14 16:36:18 1998 -@@ -6,10 +6,6 @@ - //Initial revision - // - --typedef unsigned int bool; --const bool true = (0 == 0); --const bool false = (!true); -- - typedef unsigned int uint; - typedef unsigned char uchar, byte; - typedef unsigned short ushort, word; diff -u -ruN re2c.bak/files/patch-ab re2c/files/patch-ab --- re2c.bak/files/patch-ab Tue Feb 6 17:49:12 2001 +++ re2c/files/patch-ab Thu Jan 1 01:00:00 1970 @@ -1,20 +0,0 @@ ---- Makefile.orig Fri Apr 15 20:23:55 1994 -+++ Makefile Sun Sep 26 09:42:57 1999 -@@ -15,7 +15,7 @@ - OBJS = code.o dfa.o main.o parser.o actions.o scanner.o substr.o\ - translate.o - --CC = gcc -+CC = c++ - CFLAGS = -O2 -Wall -I. - YFLAGS = -d - LDFLAGS = -@@ -30,7 +30,7 @@ - mv -f y.tab.c parser.cc - - re2c: $(OBJS) -- $(CC) -o $@ $(OBJS) $(LDFLAGS) -lg++ -+ $(CC) -o $@ $(OBJS) $(LDFLAGS) #-lg++ - - # - # generated with "gcc -I. -MM -x c++ *.cc *.y *.re" diff -u -ruN re2c.bak/files/patch-ac re2c/files/patch-ac --- re2c.bak/files/patch-ac Tue Feb 6 17:49:12 2001 +++ re2c/files/patch-ac Thu Jan 1 01:00:00 1970 @@ -1,72 +0,0 @@ ---- dfa.cc.old Fri Feb 4 15:18:55 2000 -+++ dfa.cc Fri Feb 4 15:22:57 2000 -@@ -109,6 +109,7 @@ - uint nc = ub - lb; - GoTo *goTo = new GoTo[nc]; - Span *span = new Span[nc]; -+ uint j; - memset((char*) goTo, 0, nc*sizeof(GoTo)); - tail = &head; - head = NULL; -@@ -123,7 +124,7 @@ - uint nGoTos = 0; - - s->rule = NULL; -- for(iP = s->kernel; i = *iP; ++iP){ -+ for(iP = s->kernel; (i = *iP) != NULL; ++iP){ - if(i->i.tag == CHAR){ - for(Ins *j = i + 1; j < (Ins*) i->i.link; ++j){ - if(!(j->c.link = goTo[j->c.value - lb].to)) -@@ -136,7 +137,7 @@ - } - } - -- for(uint j = 0; j < nGoTos; ++j){ -+ for(j = 0; j < nGoTos; ++j){ - GoTo *go = &goTo[goTo[j].ch - lb]; - i = (Ins*) go->to; - for(cP = work; i; i = (Ins*) i->c.link) -@@ -169,7 +170,7 @@ - - DFA::~DFA(){ - State *s; -- while(s = head){ -+ while((s = head) != NULL){ - head = s->next; - delete s; - } -@@ -185,11 +186,12 @@ - - State *DFA::findState(Ins **kernel, uint kCount){ - Ins **cP, **iP, *i; -+ State *s; - - kernel[kCount] = NULL; - - cP = kernel; -- for(iP = kernel; i = *iP; ++iP){ -+ for(iP = kernel; (i = *iP) != NULL; ++iP){ - if(i->i.tag == CHAR || i->i.tag == TERM){ - *cP++ = i; - } else { -@@ -199,9 +201,9 @@ - kCount = cP - kernel; - kernel[kCount] = NULL; - -- for(State *s = head; s; s = s->next){ -+ for(s = head; s; s = s->next){ - if(s->kCount == kCount){ -- for(iP = s->kernel; i = *iP; ++iP) -+ for(iP = s->kernel; (i = *iP) != NULL; ++iP) - if(!isMarked(i)) - goto nextState; - goto unmarkAll; -@@ -218,7 +220,7 @@ - toDo = s; - - unmarkAll: -- for(iP = kernel; i = *iP; ++iP) -+ for(iP = kernel; (i = *iP) != NULL; ++iP) - unmark(i); - - return s; diff -u -ruN re2c.bak/files/patch-ad re2c/files/patch-ad --- re2c.bak/files/patch-ad Tue Feb 6 17:49:12 2001 +++ re2c/files/patch-ad Thu Jan 1 01:00:00 1970 @@ -1,13 +0,0 @@ ---- actions.cc.old Fri Feb 4 15:23:32 2000 -+++ actions.cc Fri Feb 4 15:24:14 2000 -@@ -460,8 +460,9 @@ - - void genCode(ostream& o, RegExp *re){ - CharSet cs; -+ uint j; - memset(&cs, 0, sizeof(cs)); -- for(uint j = 0; j < nChars; ++j){ -+ for(j = 0; j < nChars; ++j){ - cs.rep[j] = &cs.ptn[0]; - cs.ptn[j].nxt = &cs.ptn[j+1]; - } diff -u -ruN re2c.bak/pkg-plist re2c/pkg-plist --- re2c.bak/pkg-plist Tue Feb 6 17:49:12 2001 +++ re2c/pkg-plist Tue Feb 6 18:11:49 2001 @@ -1 +1,4 @@ bin/re2c +share/doc/re2c/loplas.ps.gz +share/doc/re2c/sample.bib +@dirrm share/doc/re2c >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 Feb 6 9:41:35 2001 Delivered-To: freebsd-ports@freebsd.org Received: from vcnet.com (mail.vcnet.com [209.239.239.15]) by hub.freebsd.org (Postfix) with SMTP id EB1AB37B491 for ; Tue, 6 Feb 2001 09:41:17 -0800 (PST) Received: (qmail 30481 invoked by uid 1001); 6 Feb 2001 17:41:17 -0000 Date: Tue, 6 Feb 2001 09:41:17 -0800 From: Jon Rust To: Vivek Khera Cc: ports@freebsd.org Subject: Re: Apache mod_ ports Message-ID: <20010206094117.B12118@mail.vcnet.com> References: <20010205180431.D17025@mail.vcnet.com> <14976.6091.425890.658134@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: <14976.6091.425890.658134@onceler.kciLink.com>; from khera@kciLink.com on Tue, Feb 06, 2001 at 10:27:07AM -0500 X-Operating-System: http://www.freebsd.org/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 10:27:07AM -0500, Vivek Khera wrote: > >>>>> "JR" == Jon Rust writes: > > JR> Are port maintainers making progress here? I notice that Frontpage and > JR> SSL are still absent from the list of mod_* ports. Any hope of getting > JR> either of them? I'm still using Scot Hetzel's first attempt[1] at this, > JR> and feel myself falling a bit behind, apache-wise. > > The thing with mod_ssl is that it requires extensions to the Apache > API. I don't see how you can do that with a stand alone package that > is installed after Apache is built. Please explain how you expect > this to work. As I said, it IS working: www:/home/jon{6} $ telnet localhost 80 Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. HEAD / HTTP/1.0 HTTP/1.1 200 OK Date: Tue, 06 Feb 2001 17:36:28 GMT Server: Apache/1.3.12 (Unix) AuthMySQL/2.20 PHP/4.0.3pl1 PHP/3.0.17 FrontPage/4.0.4.3 mod_ssl/2.6.2 OpenSSL/0.9.6 X-Powered-By: PHP/3.0.17 Connection: close Content-Type: text/html Connection closed by foreign host. This came from Scot Hetzel's ports he provided which can be found at the link in my last message. The way it works (I think) is the base Apache port in this case was pre-patched to work with mod_ssl and mod_frontpage, although neither need be installed. It CAN be done, I'm just wondering if it will be. jon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 9:42: 4 2001 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 0BA0A37B401 for ; Tue, 6 Feb 2001 09:41:47 -0800 (PST) Received: from ade by hub.lovett.com with local (Exim 3.20 #1) id 14QC66-0001Jr-00; Tue, 06 Feb 2001 11:40:10 -0600 Date: Tue, 6 Feb 2001 11:40:10 -0600 From: Ade Lovett To: Vivek Khera Cc: ports@freebsd.org Subject: Re: Apache mod_ ports Message-ID: <20010206114010.I454@FreeBSD.org> References: <20010205180431.D17025@mail.vcnet.com> <14976.6091.425890.658134@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: <14976.6091.425890.658134@onceler.kciLink.com>; from khera@kciLink.com on Tue, Feb 06, 2001 at 10:27:07AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 10:27:07AM -0500, Vivek Khera wrote: > The thing with mod_ssl is that it requires extensions to the Apache > API. I don't see how you can do that with a stand alone package that > is installed after Apache is built. Please explain how you expect > this to work. Go look at the NetBSD apache and mod_ssl ports. apache (even if you don't plan on using it) is actually patched with the mod_ssl code to get the EAPI. Then, if you want mod_ssl, it becomes a simple matter of building the relevant bits and dropping them into place. I have here in my tree a www/apache which does just that, along with a new mod_ssl port, cleanups to mod_* and other things which now depend on www/apache (as opposed to www/apache13), and the complete and utter nuking of the following ports: apache-ssl tough. use mod_ssl like the rest of the world. apache13 replaced with 'apache' apache13-modssl replaced with 'apache' apache13-fp until someone who has the inclination to write a mod_frontpage port, possibly further modifying the base apache if necessary. apache13+ipv6 working on getting this integrated into the new 'apache' port. So, the technical work is pretty much done.. maybe another couple of weeks to polish it all off. Sadly, the bikeshed that has already started, many moons ago, with the complete brain-deadness of our apache collection, means that it's unlikely to ever go into the main tree. -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 Tue Feb 6 9:47:25 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 1A97337B503; Tue, 6 Feb 2001 09:47:04 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f16Hkv803901; Tue, 6 Feb 2001 19:47:00 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.9.3) with ESMTP id f16Hl1939559; Tue, 6 Feb 2001 19:47:01 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A803884.467879D9@FreeBSD.org> Date: Tue, 06 Feb 2001 19:46: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: ade@FreeBSD.org Cc: roberto@eurocontrol.fr, freebsd-ports@FreeBSD.org Subject: Re: ports/24901: Problem with some threaded ports (e.g.gnomevfs) References: <200102061730.f16HUxp60919@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 ade@FreeBSD.org wrote: > Synopsis: Problem with some threaded ports (e.g.gnomevfs) > > State-Changed-From-To: open->closed > State-Changed-By: ade > State-Changed-When: Tue Feb 6 09:26:00 PST 2001 > State-Changed-Why: > The solution, because so damn many things were screwed up with the > threading changes in -current, is simple. > > 1. Build a post-apocalypse -current > 2. backup configuration files > 3. rm -rf /var/db/pkg/* /usr/local/* /usr/X11R6/* (plus elsewhere > if you play with PREFIX). > 4. Rebuild every single port from source (do not use the 5.x packages) > > When -current stabilizes enough that these kind of massive and far-reaching > userland changes quieten down, then it'll be easier to go through ports/ > and see if there are any remaining friendly fire casualties. It seems that the following additional point is required in this case (from my private conversation with PR author): 0. Update your sources to the latest version using cvsup and rebuild/reinstall world (it seems that he somehow has a world from the point when libc_r changes were comitted, but -pthread option had not been adjusted yet to link with libc in addition to libc_r). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 10: 3: 2 2001 Delivered-To: freebsd-ports@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 19E1337B491; Tue, 6 Feb 2001 10:02:43 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.9.3/8.9.3) id NAA33086; Tue, 6 Feb 2001 13:02:08 -0500 (EST) (envelope-from wollman) Date: Tue, 6 Feb 2001 13:02:08 -0500 (EST) From: Garrett Wollman Message-Id: <200102061802.NAA33086@khavrinen.lcs.mit.edu> To: Wes Peters Cc: freebsd-security@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: Package integrity check? In-Reply-To: <3A802FAF.792F61F5@softweyr.com> References: <20010205210459.A2479@acc.umu.se> <3A7F9AB6.5CAA983B@softweyr.com> <200102061526.KAA31832@khavrinen.lcs.mit.edu> <3A802FAF.792F61F5@softweyr.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org < said: > One of the signatures is a simple SHA1 crypto checksum, > that implies little other than you got what the package creator put > together to a fair degree of certainty. Erm, no. It implies that whomever last modified (read: trojaned) the package knew enough to update the checksum. This provides no additional security, unless: 1) Whatever process generates and checksums the packages also makes and signs a master list of all the checksums from each package, and 2) Whatever process installs software from the package compares its checksum against this master list, and verifies the signature of the master list. I think that this would be both useful and worthwhile, but again, we need to make sure that legally we are not promising anything other than ``these packages have not been modified since generation''. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 10: 9:15 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 79D7137B401; Tue, 6 Feb 2001 10:08:57 -0800 (PST) Received: (from adrian@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16I8vk67425; Tue, 6 Feb 2001 10:08:57 -0800 (PST) (envelope-from adrian) Date: Tue, 6 Feb 2001 10:08:57 -0800 (PST) From: Message-Id: <200102061808.f16I8vk67425@freefall.freebsd.org> To: adrian@FreeBSD.org, freebsd-ports@FreeBSD.org, adrian@FreeBSD.org Subject: Re: ports/24895: New port: www/sqmgrlog Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: www/sqmgrlog Responsible-Changed-From-To: freebsd-ports->adrian Responsible-Changed-By: adrian Responsible-Changed-When: Tue Feb 6 10:08:35 PST 2001 Responsible-Changed-Why: I'm a squid person, I'll take a look at this http://www.freebsd.org/cgi/query-pr.cgi?pr=24895 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 10:10:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 01BF037B4EC for ; Tue, 6 Feb 2001 10:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16IA2667532; Tue, 6 Feb 2001 10:10:02 -0800 (PST) (envelope-from gnats) Received: from e-devil.org (port42.msx12-sta.ppp.cybercity.no [62.66.242.43]) by hub.freebsd.org (Postfix) with ESMTP id 6769437B4EC for ; Tue, 6 Feb 2001 10:04:07 -0800 (PST) Received: (from e-devil@localhost) by e-devil.org (8.11.2/8.11.2) id f16I4Uf00825; Tue, 6 Feb 2001 19:04:30 +0100 (CET) (envelope-from e-devil) Message-Id: <200102061804.f16I4Uf00825@e-devil.org> Date: Tue, 6 Feb 2001 19:04:30 +0100 (CET) From: e-devil@e-devil.org Reply-To: e-devil@e-devil.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24908: using m4 instead of gnu m4, and did not find gtk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24908 >Category: ports >Synopsis: using m4 instead of gnu m4, and did not find gtk >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 Feb 06 10:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Oyvind Albrigtsen >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD 4.2-STABLE >Description: the FvwmM4 module is using m4 instead of gnu m4, which makes the module unusuable, and the configure script doesn't detect gtk. >How-To-Repeat: >Fix: diff -uNr fvwm2-beta.orig/files/patch-configure fvwm2-beta/files/patch-configure --- fvwm2-beta.orig/files/patch-configure Thu Jan 1 01:00:00 1970 +++ fvwm2-beta/files/patch-configure Sun Feb 4 16:19:14 2001 @@ -0,0 +1,81 @@ +--- configure.orig Fri Feb 2 15:59:31 2001 ++++ configure Fri Feb 2 16:01:15 2001 +@@ -5458,18 +5458,18 @@ + if test x$gtk_config_exec_prefix != x ; then + gtk_config_args="$gtk_config_args --exec-prefix=$gtk_config_exec_prefix" + if test x${GTK_CONFIG+set} != xset ; then +- GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config ++ GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk12-config + fi + fi + if test x$gtk_config_prefix != x ; then + gtk_config_args="$gtk_config_args --prefix=$gtk_config_prefix" + if test x${GTK_CONFIG+set} != xset ; then +- GTK_CONFIG=$gtk_config_prefix/bin/gtk-config ++ GTK_CONFIG=$gtk_config_prefix/bin/gtk12-config + fi + fi + +- # Extract the first word of "gtk-config", so it can be a program name with args. +-set dummy gtk-config; ac_word=$2 ++ # Extract the first word of "gtk12-config", so it can be a program name with args. ++set dummy gtk12-config; ac_word=$2 + echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 + echo "configure:5475: checking for $ac_word" >&5 + if eval "test \"`echo '$''{'ac_cv_path_GTK_CONFIG'+set}'`\" = set"; then +@@ -5555,16 +5555,16 @@ + (gtk_minor_version != $gtk_config_minor_version) || + (gtk_micro_version != $gtk_config_micro_version)) + { +- printf("\n*** 'gtk-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n", ++ printf("\n*** 'gtk12-config --version' returned %d.%d.%d, but GTK+ (%d.%d.%d)\n", + $gtk_config_major_version, $gtk_config_minor_version, $gtk_config_micro_version, + gtk_major_version, gtk_minor_version, gtk_micro_version); +- printf ("*** was found! If gtk-config was correct, then it is best\n"); ++ printf ("*** was found! If gtk12-config was correct, then it is best\n"); + printf ("*** to remove the old version of GTK+. You may also be able to fix the error\n"); + printf("*** by modifying your LD_LIBRARY_PATH enviroment variable, or by editing\n"); + printf("*** /etc/ld.so.conf. Make sure you have run ldconfig if that is\n"); + printf("*** required on your system.\n"); +- printf("*** If gtk-config was wrong, set the environment variable GTK_CONFIG\n"); +- printf("*** to point to the correct copy of gtk-config, and remove the file config.cache\n"); ++ printf("*** If gtk12-config was wrong, set the environment variable GTK_CONFIG\n"); ++ printf("*** to point to the correct copy of gtk12-config, and remove the file config.cache\n"); + printf("*** before re-running configure\n"); + } + #if defined (GTK_MAJOR_VERSION) && defined (GTK_MINOR_VERSION) && defined (GTK_MICRO_VERSION) +@@ -5595,10 +5595,10 @@ + printf("*** GTK+ is always available from ftp://ftp.gtk.org.\n"); + printf("***\n"); + printf("*** If you have already installed a sufficiently new version, this error\n"); +- printf("*** probably means that the wrong copy of the gtk-config shell script is\n"); ++ printf("*** probably means that the wrong copy of the gtk12-config shell script is\n"); + printf("*** being found. The easiest way to fix this is to remove the old version\n"); + printf("*** of GTK+, but you can also set the GTK_CONFIG environment to point to the\n"); +- printf("*** correct copy of gtk-config. (In this case, you will have to\n"); ++ printf("*** correct copy of gtk12-config. (In this case, you will have to\n"); + printf("*** modify your LD_LIBRARY_PATH enviroment variable, or edit /etc/ld.so.conf\n"); + printf("*** so that the correct libraries are found at run-time))\n"); + } +@@ -5629,10 +5629,10 @@ + else + echo "$ac_t""no" 1>&6 + if test "$GTK_CONFIG" = "no" ; then +- echo "*** The gtk-config script installed by GTK could not be found" ++ echo "*** The gtk12-config script installed by GTK could not be found" + echo "*** If GTK was installed in PREFIX, make sure PREFIX/bin is in" + echo "*** your path, or set the GTK_CONFIG environment variable to the" +- echo "*** full path to gtk-config." ++ echo "*** full path to gtk12-config." + else + if test -f conf.gtktest ; then + : +@@ -5674,7 +5674,7 @@ + echo "*** The test program failed to compile or link. See the file config.log for the" + echo "*** exact error that occured. This usually means GTK was incorrectly installed" + echo "*** or that you have moved GTK since it was installed. In the latter case, you" +- echo "*** may want to edit the gtk-config script: $GTK_CONFIG" ++ echo "*** may want to edit the gtk12-config script: $GTK_CONFIG" + fi + rm -f conftest* + CFLAGS="$ac_save_CFLAGS" diff -uNr fvwm2-beta.orig/files/patch-fvwmm4.c fvwm2-beta/files/patch-fvwmm4.c --- fvwm2-beta.orig/files/patch-fvwmm4.c Thu Jan 1 01:00:00 1970 +++ fvwm2-beta/files/patch-fvwmm4.c Sun Feb 4 16:19:14 2001 @@ -0,0 +1,11 @@ +--- modules/FvwmM4/FvwmM4.c.orig Fri Feb 2 16:04:52 2001 ++++ modules/FvwmM4/FvwmM4.c Fri Feb 2 16:05:02 2001 +@@ -69,7 +69,7 @@ + int m4_prefix; /* Do GNU m4 prefixing (-P) */ + char m4_options[BUFSIZ]; /* Command line options to m4 */ + char m4_outfile[BUFSIZ] = ""; /* The output filename for m4 */ +-char *m4_prog = "m4"; /* Name of the m4 program */ ++char *m4_prog = "gm4"; /* Name of the m4 program */ + int m4_default_quotes; /* Use default m4 quotes */ + char *m4_startquote = "`"; /* Left quote characters for m4 */ + char *m4_endquote = "'"; /* Right quote characters for m4 */ >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 Feb 6 10:25:57 2001 Delivered-To: freebsd-ports@freebsd.org Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (Postfix) with ESMTP id 66DB237B4EC; Tue, 6 Feb 2001 10:25:37 -0800 (PST) Received: from v-ger.we.lc.ehu.es (v-ger [158.227.6.179]) by polaris.we.lc.ehu.es (8.11.1/8.11.1) with ESMTP id f16IPWb09852; Tue, 6 Feb 2001 19:25:32 +0100 (MET) Received: from we.lc.ehu.es (localhost [127.0.0.1]) by v-ger.we.lc.ehu.es (8.11.1/8.11.1) with ESMTP id f16IOPk02416; Tue, 6 Feb 2001 19:24:25 +0100 (CET) (envelope-from jose@we.lc.ehu.es) Message-ID: <3A804159.F459DD29@we.lc.ehu.es> Date: Tue, 06 Feb 2001 19:24:25 +0100 From: "Jose M. Alcaide" Organization: Universidad del Pais Vasco - Dpto. de Electricidad y Electronica X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: es-ES, es, en-US, en MIME-Version: 1.0 To: Matthew Thyer Cc: will@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: kappfinder segmentation fault during ports/x11/kdebase2 install on recent -CURRENT References: <3A80143D.908D5886@camtech.net.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Matthew Thyer wrote: > > Just when I thought kde2 might be fixed, installing ports/x11/kdebase2 > gives: > > install -c -o root -g wheel -m 444 ./kappfinder.desktop /usr/local/share/applnk/System/kappfinder.desktop > echo "Installing non-KDE applications" > Installing non-KDE applications > pwd=`pwd`; \ > (cd . && $pwd/kappfinder_install "/usr/local/share/applnk") > Segmentation fault - core dumped > gmake[3]: *** [runkappfinder_yes] Error 139 I have just got the same error after building _everything_ under /usr/X11R6 and /usr/local from scratch. If this problem is related to -pthread/libc_r changes in -CURRENT, it doesn't go away after a full rebuild. Another test could be downgrading to qt-2.2.3. My -CURRENT system is very recent (Feb, 3), and I built succesfully some gtk-based ports using -pthread. Cheers, -- JMA ****** Jose M. Alcaide // jose@we.lc.ehu.es // jmas@FreeBSD.org ****** ** "Beware of Programmers who carry screwdrivers" -- Leonard Brandwein ** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 10:30:27 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5215D37B4EC for ; Tue, 6 Feb 2001 10:30:06 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16IU6n69512; Tue, 6 Feb 2001 10:30:06 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Feb 2001 10:30:06 -0800 (PST) Message-Id: <200102061830.f16IU6n69512@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Ade Lovett Subject: Re: ports/24908: using m4 instead of gnu m4, and did not find gtk Reply-To: Ade Lovett Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24908; it has been noted by GNATS. From: Ade Lovett To: e-devil@e-devil.org Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/24908: using m4 instead of gnu m4, and did not find gtk Date: Tue, 6 Feb 2001 12:28:50 -0600 On Tue, Feb 06, 2001 at 07:04:30PM +0100, e-devil@e-devil.org wrote: > > +- GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk-config > ++ GTK_CONFIG=$gtk_config_exec_prefix/bin/gtk12-config These are all wrong. All you (generally) need is the following in the Makefile. USE_GTK= yes or perhaps WANT_GTK= yes if you want it conditionally, which will set GTK_CONFIG and a few other things appropriately. It's possible that the configure script then goes on and blindly uses gtk-config, as opposed to ${GTK_CONFIG}, but those seem to be getting fewer and fewer. Fortunately. In addition, if you need to use gnu m4, then you'll need either a build or runtime (or both) dependency to gm4:${PORTSDIR}/devel/m4 -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 Tue Feb 6 10:30:29 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7A66737B491 for ; Tue, 6 Feb 2001 10:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16IU1s69500; Tue, 6 Feb 2001 10:30:01 -0800 (PST) (envelope-from gnats) Received: from e-devil.org (port42.msx12-sta.ppp.cybercity.no [62.66.242.43]) by hub.freebsd.org (Postfix) with ESMTP id A1F0C37B491 for ; Tue, 6 Feb 2001 10:27:53 -0800 (PST) Received: (from e-devil@localhost) by e-devil.org (8.11.2/8.11.2) id f16ISId01358; Tue, 6 Feb 2001 19:28:18 +0100 (CET) (envelope-from e-devil) Message-Id: <200102061828.f16ISId01358@e-devil.org> Date: Tue, 6 Feb 2001 19:28:18 +0100 (CET) From: e-devil@e-devil.org Reply-To: e-devil@e-devil.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24909: New port: Perl module for fetching and modifying CDDB's Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24909 >Category: ports >Synopsis: New port: Perl module for fetching and modifying CDDB's >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 Feb 06 10:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Oyvind Albrigtsen >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD 4.2-STABLE i386 >Description: >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-CDDB # p5-CDDB/Makefile # p5-CDDB/distinfo # p5-CDDB/pkg-plist # p5-CDDB/pkg-comment # p5-CDDB/pkg-descr # echo c - p5-CDDB mkdir -p p5-CDDB > /dev/null 2>&1 echo x - p5-CDDB/Makefile sed 's/^X//' >p5-CDDB/Makefile << 'END-of-p5-CDDB/Makefile' X# New ports collection makefile for: fvwm-themes X# Date created: 2 February 2001 X# Whom: Oyvind Albrigtsen X# X# $FreeBSD$ X# X XPORTNAME= CDDB XPORTVERSION= 1.03 XCATEGORIES= audio perl5 XMASTER_SITES= ftp://ftp.digital.com/pub/plan/perl/CPAN/modules/by-authors/id/R/RC/RCAPUTO/ XPKGNAMEPREFIX= p5- X XMAINTAINER= e-devil@e-devil.org X XUSE_PERL5= yes XMAN3= CDDB.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-CDDB/Makefile echo x - p5-CDDB/distinfo sed 's/^X//' >p5-CDDB/distinfo << 'END-of-p5-CDDB/distinfo' XMD5 (CDDB-1.03.tar.gz) = a679c76fc4ce74c04c0c6e22398f399b END-of-p5-CDDB/distinfo echo x - p5-CDDB/pkg-plist sed 's/^X//' >p5-CDDB/pkg-plist << 'END-of-p5-CDDB/pkg-plist' Xlib/perl5/site_perl/%%PERL_VER%%/CDDB.pm Xlib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/CDDB/.packlist X@dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/CDDB END-of-p5-CDDB/pkg-plist echo x - p5-CDDB/pkg-comment sed 's/^X//' >p5-CDDB/pkg-comment << 'END-of-p5-CDDB/pkg-comment' XPerl module for fetching and modifying info in CDDB's END-of-p5-CDDB/pkg-comment echo x - p5-CDDB/pkg-descr sed 's/^X//' >p5-CDDB/pkg-descr << 'END-of-p5-CDDB/pkg-descr' XPerl module for fetching and modifying info in CDDB's X(Compact Disc Databases). END-of-p5-CDDB/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 Feb 6 11:50:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7C20937B4EC for ; Tue, 6 Feb 2001 11:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16Jo1L79516; Tue, 6 Feb 2001 11:50:01 -0800 (PST) (envelope-from gnats) Received: from zebra.mammalia.org (unknown [216.231.50.6]) by hub.freebsd.org (Postfix) with ESMTP id 9400037B401 for ; Tue, 6 Feb 2001 11:46:04 -0800 (PST) Received: from manatee.mammalia.org (manatee [172.16.0.2]) by zebra.mammalia.org (Postfix) with ESMTP id 784121F3F5 for ; Tue, 6 Feb 2001 11:46:37 -0800 (PST) Received: (from rjoseph@localhost) by manatee.mammalia.org (8.11.2/8.11.2) id f16JjTG64332; Tue, 6 Feb 2001 11:45:29 -0800 (PST) (envelope-from rjoseph) Message-Id: <200102061945.f16JjTG64332@manatee.mammalia.org> Date: Tue, 6 Feb 2001 11:45:29 -0800 (PST) From: rjoseph@mammalia.org Reply-To: rjoseph@mammalia.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/24910: Update port: graphics/linux-bmrt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24910 >Category: ports >Synopsis: Update port: graphics/linux-bmrt >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 Feb 06 11:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: R Joseph Wright >Release: FreeBSD 5.0-CURRENT i386 >Organization: >Environment: System: FreeBSD manatee.mammalia.org 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Fri Feb 2 22:45:06 PST 2001 rjoseph@manatee.mammalia.org:/usr/obj/usr/src/sys/MANATEE i386 >Description: >How-To-Repeat: >Fix: diff -urN linux-bmrt/Makefile linux-bmrt.update/Makefile --- linux-bmrt/Makefile Sun Jul 16 07:14:33 2000 +++ linux-bmrt.update/Makefile Tue Feb 6 11:23:55 2001 @@ -6,30 +6,40 @@ # PORTNAME= linux-bmrt -PORTVERSION= 2.5.0.8 +PORTVERSION= 2.6beta CATEGORIES= graphics linux -MASTER_SITES= http://www.bmrt.org/BMRTdownload/ -DISTNAME= BMRT2.5h.linux-glibc2 +MASTER_SITES= #fetch manually +DISTNAME= BMRT${PORTVERSION}.linux-glibc2 MAINTAINER= rjoseph@mammalia.org -RUN_DEPENDS= /compat/linux/usr/i486-linux-libc5/lib/libc.so.5:${PORTSDIR}/emulators/linux_base +RUN_DEPENDS= /compat/linux/usr/i486-linux-libc5/lib/libc.so.5:${PORTSDIR}/emulators/linux_base \ + /compat/linux/usr/X11R6/lib/libGL.so:${PORTSDIR}/graphics/linux_mesa3 -WRKSRC= ${WRKDIR}/BMRT2.5 +WRKSRC= ${WRKDIR}/BMRT2.6 NO_BUILD= yes +ONLY_FOR_ARCHS= i386 NO_CDROM= "See the License" # Linux binary should not be stripped by INSTALL_PROGRAM as it uses # /usr/bin/strip which then brands the binary as a FreeBSD ELF one. STRIP= -# Linux binary should not be stripped by INSTALL_PROGRAM as it uses -# /usr/bin/strip which then brands the binary as a FreeBSD ELF one. -STRIP= +.include +.if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) +IGNORE= may not be automatically fetched due to licensing \ + restrictions. You must manually fetch the Linux version at \ + http://www.exluna.com/bmrt/download/index.html. \ + Once you have read and agreed to the license and \ + ${DISTFILES} has been downloaded, move it to \ + ${DISTDIR} and then restart this build. +.endif + +INC_DIR= ${PREFIX}/include/bmrt +LIB_DIR= ${PREFIX}/lib/bmrt DOC_DIR= ${PREFIX}/share/doc/bmrt -FETCH_CMD= /usr/bin/fetch -Ab -PROGRAM= composite mkmip mkmosaic rendrib rgl slc slctell +PROGRAM= composite iv mkmip mkmosaic rendrib rgl slc slctell SCRIPT= farm frankenrender pre-install: @@ -37,14 +47,17 @@ ${SED} 's/\/usr\/local\/bin\/perl/\/usr\/bin\/perl/' ${WRKSRC}/bin/frankenrender.old > ${WRKSRC}/bin/frankenrender do-install: - ${INSTALL_DATA} ${WRKSRC}/lib/* ${PREFIX}/lib + ${MKDIR} ${LIB_DIR} + ${INSTALL_DATA} ${WRKSRC}/lib/* ${PREFIX}/lib/bmrt ${MKDIR} ${DOC_DIR} ${INSTALL_DATA} ${WRKSRC}/doc/bmrtdoc.pdf ${DOC_DIR} + ${INSTALL_DATA} ${WRKSRC}/Changes ${DOC_DIR} ${INSTALL_DATA} ${WRKSRC}/License ${DOC_DIR} ${INSTALL_DATA} ${WRKSRC}/README ${DOC_DIR} ${MKDIR} ${DOC_DIR}/html ${INSTALL_DATA} ${WRKSRC}/doc/html/* ${DOC_DIR}/html - ${INSTALL_DATA} ${WRKSRC}/include/* ${PREFIX}/include + ${MKDIR} ${INC_DIR} + ${INSTALL_DATA} ${WRKSRC}/include/* ${PREFIX}/include/bmrt ${MKDIR} ${PREFIX}/share/examples/bmrt ${INSTALL_DATA} ${WRKSRC}/examples/* ${PREFIX}/share/examples/bmrt ${MKDIR} ${PREFIX}/share/bmrt ${PREFIX}/share/bmrt/shaders @@ -62,9 +75,6 @@ @${ECHO} ""; @${ECHO} "************************************************************************"; @${ECHO} ""; - @${ECHO} " This is shareware that is free for non-commercial use."; - @${ECHO} " Please read ${PREFIX}/share/doc/bmrt/License before proceeding."; - @${ECHO} ""; @${ECHO} " Before using these programs, add the following"; @${ECHO} " path to your shell environment:"; @${ECHO} ""; @@ -80,4 +90,4 @@ @${ECHO} "************************************************************************"; @${ECHO} ""; -.include +.include diff -urN linux-bmrt/distinfo linux-bmrt.update/distinfo --- linux-bmrt/distinfo Sun Jul 16 07:14:34 2000 +++ linux-bmrt.update/distinfo Tue Feb 6 11:17:31 2001 @@ -1 +1 @@ -MD5 (BMRT2.5h.linux-glibc2.tar.gz) = dfbe508d03b352a01949679809cd3e06 +MD5 (BMRT2.6beta.linux-glibc2.tar.gz) = 64467f3ad1e5bf2b9bfa6b4a73c592be diff -urN linux-bmrt/pkg-descr linux-bmrt.update/pkg-descr --- linux-bmrt/pkg-descr Sun May 7 07:27:01 2000 +++ linux-bmrt.update/pkg-descr Tue Feb 6 11:16:44 2001 @@ -1,11 +1,5 @@ Blue Moon Rendering Tools are a collection of rendering programs which adhere to the RenderMan(R) interface standard (RenderMan is a registered trademark of Pixar). -This program is shareware that is free for non commercial use. To use it commercially, -it must be registered. Read the license before using. For more information, vist -http://www.bmrt.org. -_____ - -R Joseph Wright -rjoseph@mammalia.org +WWW:http://www.exluna.com/bmrt diff -urN linux-bmrt/pkg-plist linux-bmrt.update/pkg-plist --- linux-bmrt/pkg-plist Sun Jul 16 07:14:34 2000 +++ linux-bmrt.update/pkg-plist Tue Feb 6 11:26:01 2001 @@ -1,17 +1,18 @@ bin/composite bin/farm bin/frankenrender +bin/iv bin/mkmip bin/mkmosaic bin/rendrib bin/rgl bin/slc bin/slctell -include/ri.h -include/slc.h -lib/libribout.a -lib/libslcargs.a -lib/rayserver.so +include/bmrt/ri.h +include/bmrt/slc.h +lib/bmrt/libribout.a +lib/bmrt/libslcargs.a +lib/bmrt/rayserver.so share/bmrt/rendribrc.sample share/bmrt/shaders/Makefile share/bmrt/shaders/ambientlight.linux.slc @@ -63,6 +64,9 @@ share/bmrt/shaders/distantlight.linux.slc share/bmrt/shaders/distantlight.sl share/bmrt/shaders/distantlight.slc +share/bmrt/shaders/fakesky.linux.slc +share/bmrt/shaders/fakesky.sl +share/bmrt/shaders/fakesky.slc share/bmrt/shaders/filterwidth.h share/bmrt/shaders/fog.linux.slc share/bmrt/shaders/fog.sl @@ -171,23 +175,32 @@ share/bmrt/shaders/wood2.linux.slc share/bmrt/shaders/wood2.sl share/bmrt/shaders/wood2.slc +share/doc/bmrt/Changes share/doc/bmrt/License share/doc/bmrt/README share/doc/bmrt/bmrtdoc.pdf -share/doc/bmrt/html/About_this_document.html -share/doc/bmrt/html/Bibliography.html -share/doc/bmrt/html/Contents.html -share/doc/bmrt/html/Detailed_Description_Render.html -share/doc/bmrt/html/Introduction.html -share/doc/bmrt/html/Miscellaneous_Tools.html -share/doc/bmrt/html/Photo_realistic_rendering_w.html -share/doc/bmrt/html/Previewing_RIB_files_with.html -share/doc/bmrt/html/Shaders_Textures.html -share/doc/bmrt/html/Using_BMRT_as_Ray.html share/doc/bmrt/html/bmrtdoc.css share/doc/bmrt/html/bmrtdoc.html +share/doc/bmrt/html/contents.png +share/doc/bmrt/html/crossref.png +share/doc/bmrt/html/exluna-logo4.jpg +share/doc/bmrt/html/exluna-logo5.jpg share/doc/bmrt/html/index.html -share/examples/bmrt/Makefile +share/doc/bmrt/html/next.png +share/doc/bmrt/html/next_g.png +share/doc/bmrt/html/node1.html +share/doc/bmrt/html/node2.html +share/doc/bmrt/html/node3.html +share/doc/bmrt/html/node4.html +share/doc/bmrt/html/node5.html +share/doc/bmrt/html/node6.html +share/doc/bmrt/html/node7.html +share/doc/bmrt/html/node8.html +share/doc/bmrt/html/node9.html +share/doc/bmrt/html/prev.png +share/doc/bmrt/html/prev_g.png +share/doc/bmrt/html/up.png +share/doc/bmrt/html/up_g.png share/examples/bmrt/README share/examples/bmrt/colorspheres.c share/examples/bmrt/cornell.rib @@ -196,7 +209,9 @@ share/examples/bmrt/limbo.rib share/examples/bmrt/makemaps.rib share/examples/bmrt/shadtest.rib +share/examples/bmrt/skylight.rib share/examples/bmrt/smokebox.rib +share/examples/bmrt/snake.rib share/examples/bmrt/teapot.rib share/examples/bmrt/teapots.rib share/examples/bmrt/testmaps.rib @@ -205,6 +220,8 @@ share/examples/bmrt/tpdisp.rib share/examples/bmrt/vase.rib share/examples/bmrt/vasegallery1.rib +@dirrm include/bmrt +@dirrm lib/bmrt @dirrm share/bmrt/shaders @dirrm share/bmrt @dirrm share/doc/bmrt/html >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 Feb 6 12: 3:36 2001 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 F24D837B401; Tue, 6 Feb 2001 12:03:18 -0800 (PST) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.11.1/8.11.1) id f16K3C314927; Tue, 6 Feb 2001 21:03:12 +0100 (CET) (envelope-from stijn) Date: Tue, 6 Feb 2001 21:03:12 +0100 From: Stijn Hoop To: Ade Lovett Cc: ports@freebsd.org Subject: Re: Apache mod_ ports Message-ID: <20010206210312.A12270@pcwin002.win.tue.nl> References: <20010205180431.D17025@mail.vcnet.com> <14976.6091.425890.658134@onceler.kciLink.com> <20010206114010.I454@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: <20010206114010.I454@FreeBSD.org>; from ade@freebsd.org on Tue, Feb 06, 2001 at 11:40:10AM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 11:40:10AM -0600, Ade Lovett wrote: > I have here in my tree a www/apache which does just that, [more explanations skipped] > So, the technical work is pretty much done.. maybe another couple of > weeks to polish it all off. Sadly, the bikeshed that has already > started, many moons ago, with the complete brain-deadness of our > apache collection, means that it's unlikely to ever go into the > main tree. Can I just add a vote into going ahead with this plan? It may be a bikeshed, it may cause a bit of pain to upgrade for existing apache+ users, but it does clarify the apache ports *A LOT*. --Stijn -- What would this sentence be like if it weren't self-referential? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 12:32:57 2001 Delivered-To: freebsd-ports@freebsd.org Received: from 806a-117.umd.edu (806a-117.umd.edu [128.8.215.117]) by hub.freebsd.org (Postfix) with ESMTP id 4685B37B503 for ; Tue, 6 Feb 2001 12:32:38 -0800 (PST) Received: from glue.umd.edu (localhost [127.0.0.1]) by 806a-117.umd.edu (8.11.2/8.11.2) with ESMTP id f16KWaV01968 for ; Tue, 6 Feb 2001 15:32:37 -0500 (EST) (envelope-from bfoz@glue.umd.edu) Message-ID: <3A805F64.5AD03FA@glue.umd.edu> Date: Tue, 06 Feb 2001 15:32:36 -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: Linux Matlab on 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'm trying to install Matlab for Linux 5.3 on FreeBSD (stable, rebuilt yesterday). Does anybody have it working? Somebody in the archives mentioned having to install the linux version of tar but the installer doesn't seem to be getting that far. Here's what happens to me: 15:18 bfoz@806a-117~#/cdrom/install Sorry! We could not determine the machine architecture for your host. Please contact: MathWorks Technical Support for further assistance. Sorry! Setup aborted . . . To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 14:10:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 11C7E37B491 for ; Tue, 6 Feb 2001 14:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16MA3h98566; Tue, 6 Feb 2001 14:10:03 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Feb 2001 14:10:03 -0800 (PST) Message-Id: <200102062210.f16MA3h98566@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: e-devil Subject: Re: ports/24908: using m4 instead of gnu m4, and did not find gtk Reply-To: e-devil Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24908; it has been noted by GNATS. From: e-devil To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/24908: using m4 instead of gnu m4, and did not find gtk Date: Tue, 6 Feb 2001 23:02:50 +0100 I fixed the Makefile, and removed the patch for configure. Added dependencies for GNU M4. the new patch follows. Oyvind Albrigtsen diff -uNr fvwm2-beta.orig/Makefile fvwm2-beta/Makefile --- fvwm2-beta.orig/Makefile Tue Feb 6 22:34:19 2001 +++ fvwm2-beta/Makefile Tue Feb 6 22:48:35 2001 @@ -15,8 +15,12 @@ MAINTAINER= Cy.Schubert@uumail.gov.bc.ca +BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4 +RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4 + USE_X_PREFIX= yes USE_XPM= yes +WANT_GTK= yes GNU_CONFIGURE= yes USE_GMAKE= yes PLIST_SUB= VER=${PORTVERSION} @@ -32,6 +36,12 @@ fvwm-menu-headlines.1 fvwm2.1 fvwm24_convert.1 fvwmbug.1 \ fvwmrc_convert.1 xpmroot.1 +.include + +.if defined(HAVE_GTK) +USE_GTK= yes +.endif + post-extract: @if ! (cd ${WRKDIR}/${DISTNAME} && ${MKDIR} icons && cd icons && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/fvwm_icons.tgz ${EXTRACT_AFTER_ARGS}); then \ exit 1; \ @@ -42,4 +52,4 @@ ${INSTALL_DATA} ${WRKSRC}/icons/*.xpm \ ${PREFIX}/lib/X11/fvwm2/pixmaps -.include +.include diff -uNr fvwm2-beta.orig/files/patch-fvwmm4.c fvwm2-beta/files/patch-fvwmm4.c --- fvwm2-beta.orig/files/patch-fvwmm4.c Thu Jan 1 01:00:00 1970 +++ fvwm2-beta/files/patch-fvwmm4.c Sun Feb 4 16:19:14 2001 @@ -0,0 +1,11 @@ +--- modules/FvwmM4/FvwmM4.c.orig Fri Feb 2 16:04:52 2001 ++++ modules/FvwmM4/FvwmM4.c Fri Feb 2 16:05:02 2001 +@@ -69,7 +69,7 @@ + int m4_prefix; /* Do GNU m4 prefixing (-P) */ + char m4_options[BUFSIZ]; /* Command line options to m4 */ + char m4_outfile[BUFSIZ] = ""; /* The output filename for m4 */ +-char *m4_prog = "m4"; /* Name of the m4 program */ ++char *m4_prog = "gm4"; /* Name of the m4 program */ + int m4_default_quotes; /* Use default m4 quotes */ + char *m4_startquote = "`"; /* Left quote characters for m4 */ + char *m4_endquote = "'"; /* Right quote characters for m4 */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 14:17:55 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mailout03.sul.t-online.com (mailout03.sul.t-online.com [194.25.134.81]) by hub.freebsd.org (Postfix) with ESMTP id 7043437B4EC for ; Tue, 6 Feb 2001 14:17:37 -0800 (PST) Received: from fwd06.sul.t-online.com by mailout03.sul.t-online.com with smtp id 14QGQT-0001H6-03; Tue, 06 Feb 2001 23:17:29 +0100 Received: from t-online.de (320061356073-0001@[62.156.20.79]) by fwd06.sul.t-online.com with esmtp id 14QGQO-18bibYC; Tue, 6 Feb 2001 23:17:24 +0100 Message-ID: <3A80785C.6249DB67@t-online.de> Date: Tue, 06 Feb 2001 23:19:08 +0100 From: m.ewe@t-online.de (Michael Ewe) X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: ejc@bazzle.com Cc: ports@FreeBSD.org Subject: FreeBSD Port: omniORB-3.0.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Sender: 320061356073-0001@t-dialin.net Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I have some problems with omniORB. Heres whats going on: First try: Running FreeBSD 4.2-RELEASE Installed packages from www.freebsd.org try to run omniidl gives: bash-2.04$ omniidl omniidl: ERROR! omniidl: Could not open Python files for IDL compiler omniidl: Please put them in directory /usr/local/lib omniidl: (or set the PYTHONPATH environment variable) omniidl: (The error was `No module named omniidl.main') Second try: Now I compiled the thing itself and compiling worked as expected. From within the build-tree omniidl seemed to work. I went further to try the "echo" in the examples section. The simplest program eg1 dums core after showing the echo Third try: this mail. Can you please tell me, what I am doing wrong Michael Ewe (m.ewe@t-online.de) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 14:21:57 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 08C3C37B503 for ; Tue, 6 Feb 2001 14:21:20 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16MLKi99452; Tue, 6 Feb 2001 14:21:20 -0800 (PST) (envelope-from gnats) Received: from racine.cybercable.fr (racine.cybercable.fr [212.198.0.201]) by hub.freebsd.org (Postfix) with SMTP id 2CD5137B401 for ; Tue, 6 Feb 2001 14:11:50 -0800 (PST) Received: (qmail 38785281 invoked from network); 6 Feb 2001 22:11:34 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by racine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 6 Feb 2001 22:11:34 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f16MBX533062; Tue, 6 Feb 2001 23:11:33 +0100 (CET) (envelope-from root) Message-Id: <200102062211.f16MBX533062@gits.dyndns.org> Date: Tue, 6 Feb 2001 23:11:33 +0100 (CET) From: Cyrille Lefevre Reply-To: clefevre@citeweb.net To: FreeBSD-gnats-submit@freebsd.org Cc: dwcjr@inethouston.net X-Send-Pr-Version: 3.2 Subject: ports/24911: Updated port: net/isc-dhcp3 (beta 2 patch level 16) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24911 >Category: ports >Synopsis: Updated port: net/isc-dhcp3 (beta 2 patch level 16) >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 Feb 06 14:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.2-STABLE i386 >Organization: ACME >Environment: FreeBSD gits 4.2-STABLE FreeBSD 4.2-STABLE #7: Tue Jan 23 07:33:34 CET 2001 root@gits:/disk2/4.x-stable/src/sys/compile/CUSTOM i386 >Description: ***************************************************************************** *** please, close PR #24542 and PR #24686 which are obsoleted by this one *** ***************************************************************************** update ISC dhcp to the latest version, which is 3.0b2pl16. Makefile version bumbed. DISTNAME heuristic changed. MAINTAINER updated. USE_FACILITY stuff and pre-fetch target deleted. post-patch splitted and wrapped. post-install splitted and enhanced (doc and sample files added). distinfo updated. pkg-descr updated. pkg-plist updated. @exec actions changed and @unexec actions added. files/isc-dhcpd.sh.sample updated. $OPTIONS added. files/patch-aj (dhcpd.h) updated. no more substitutions are done, they are not needed since the job is already done by site.conf. files/patch-client-Makefile.dist new. install dhclient-script in $CLIENTBINDIR instead of $ETC. files/patch-clparse.c almost the same. files/patch-dhclient-script.8 new. ETCDIR -> CLIENTBINDIR. files/patch-dhclient.8 updated. references to dhclient-script added. files/patch-dhclient.c updated. option -sf and getenv(PATH_DHCLIENT_SCRIPT) added. files/patch-freebsd updated. set something -> set -- something and arp -n -d -> arp -d (-n in meaningless in this case) accordingly to /sbin/dhclient-script. files/patch-site.conf updated. LIBDIR and INCDIR added. CFLAGS updated. dhclient-script moved from $ETC to $CLIENTBINDIR. .leases files now go to $VARDB as they should and not to $PREFIX/$VARDB. files/patch-site.h deleted. USE_FACILITY stuff isn't needed anymore. >How-To-Repeat: n/a >Fix: diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/Makefile isc-dhcp3/Makefile --- isc-dhcp3.old/Makefile Sat Dec 23 19:55:08 2000 +++ isc-dhcp3/Makefile Tue Feb 6 22:54:45 2001 @@ -7,19 +7,16 @@ # PORTNAME= isc-dhcp3 -PORTVERSION= 3.0.b2.11 +PORTVERSION= 3.0.b2.16 CATEGORIES= net MASTER_SITES= ftp://ftp.isc.org/isc/dhcp/ -DISTNAME= dhcp-3.0b2pl${PORTVERSION:S/3.0.b2.//g} +DISTNAME= ${PORTNAME:S/isc-//:S/3/-/}${PORTVERSION:S/.b/b/:R}pl${PORTVERSION:E} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= clefevre@citeweb.net -.if defined(USE_FACILITY) -_USE_FACILITY:= `${ECHO} ${USE_FACILITY} | ${TR} "[:lower:]" "[:upper:]"` -USE_FACILITY= ${_USE_FACILITY} -.else -USE_FACILITY= DAEMON -.endif +# +# Global variables +# HAS_CONFIGURE= yes @@ -29,34 +26,89 @@ dhcpd.leases.5 MAN8= dhclient.8 dhclient-script.8 dhcpd.8 dhcrelay.8 -pre-fetch: -.if ${USE_FACILITY} == "DAEMON" - @${ECHO} "" - @${ECHO} " You can choose which syslog faciliy by setting LOG_FACILITY to:" - @${ECHO} " daemon, local{0-7}" - @${ECHO} " 'daemon' is the default option if one is not defined." - @${ECHO} " Press Control-C and run make clean build LOG_FACILITY=," - @${ECHO} " if you wish to use a different logging facility." - @${ECHO} "" - @sleep 2 +# +# Local variables +# + +PATCH_SUBDIRS= client common dhcpctl minires omapip relay server + +BIN_FILES= dhclient dhcpd dhcrelay +SAMP_FILES= client/dhclient.conf server/dhcpd.conf +RCD_FILES= isc-dhcpd.sh.sample +DOC_FILES= CHANGES COPYRIGHT README RELNOTES +DATA_FILES= dhclient.leases dhcpd.leases +CONF_FILES= dhclient.conf + +BIN_DIR= ${PREFIX}/sbin +ETC_DIR= ${PREFIX}/etc +RCD_DIR= ${PREFIX}/etc/rc.d +DOC_DIR= ${PREFIX}/share/doc/${PORTNAME} +VARDB_DIR= /var/db + +STRIP?= strip + +# +# Post-patch +# + +post-patch: patch-scripts patch-makefiles + +patch-scripts: + @${PERL} -pi.fbsd -e 's.!!PREFIX!!.${PREFIX}.g' \ + ${WRKSRC}/client/scripts/freebsd + +patch-makefiles: +.for subdir in ${PATCH_SUBDIRS} + @${PERL} -pi.fbsd -e \ + 's|^DEBUG[ ]*=|DEBUG ?=|g;s|^CFLAGS[ ]*=|CFLAGS +=|g' \ + ${WRKSRC}/${subdir}/Makefile.dist +.endfor + +# +# Post-install +# + +post-install: strip-binary-files install-startup-files \ + install-doc-files install-sample-files \ + create-data-files create-conf-files + +strip-binary-files: +.for file in ${BIN_FILES} +.if exists({BIN_DIR}/${file}) + @${STRIP} ${BIN_DIR}/${file} .endif +.endfor -post-patch: - @${PERL} -pi.fbsd -e 's.!!PREFIX!!.${PREFIX}.g' ${WRKSRC}/includes/dhcpd.h - @${PERL} -pi.fbsd -e "s.!!USE_FACILITY!!.${USE_FACILITY}.g" ${WRKSRC}/includes/site.h - @${PERL} -pi.fbsd -e 's.!!PREFIX!!.${PREFIX}.g' ${WRKSRC}/client/scripts/freebsd -.for MF in relay/Makefile.dist server/Makefile.dist client/Makefile.dist common/Makefile.dist dhcpctl/Makefile.dist minires/Makefile.dist omapip/Makefile.dist - @${PERL} -pi.fbsd -e 's|^DEBUG[ ]*=|DEBUG ?=|g ; s|^CFLAGS[ ]*=|CFLAGS +=|g' ${WRKSRC}/${MF} -.endfor - -post-install: - ${TOUCH} /var/db/dhcpd.leases -.for file in dhclient dhcpd dhcrelay - if [ -f ${PREFIX}/sbin/${file} ]; then \ - strip ${PREFIX}/sbin/${file}; \ - fi +install-startup-files: +.for file in ${RCD_FILES} + @${INSTALL_SCRIPT} ${FILESDIR}/${file} ${RCD_DIR}/${file} +.endfor + +install-doc-files: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOC_DIR} +.for file in ${DOC_FILES} + @${INSTALL_DATA} ${WRKSRC}/${file} ${DOC_DIR}/${file} +.endfor +.endif + +install-sample-files: +.for file in ${SAMP_FILES} + @${INSTALL_DATA} ${WRKSRC}/${file} ${ETC_DIR}/${file:T}.sample +.endfor + +create-data-files: +.for file in ${DATA_FILES} +.if !exists(${VARDB_DIR}/${file}) + @${TOUCH} ${VARDB_DIR}/${file} +.endif +.endfor + +create-conf-files: +.for file in ${CONF_FILES} +.if !exists(${ETC_DIR}/${file}) + @${TOUCH} ${ETC_DIR}/${file} +.endif .endfor - ${INSTALL_SCRIPT} ${FILESDIR}/isc-dhcpd.sh.sample \ - ${PREFIX}/etc/rc.d .include diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/distinfo isc-dhcp3/distinfo --- isc-dhcp3.old/distinfo Sat Dec 2 07:25:48 2000 +++ isc-dhcp3/distinfo Tue Feb 6 19:57:53 2001 @@ -1 +1 @@ -MD5 (dhcp-3.0b2pl11.tar.gz) = 5fd2c97d850c41e6445648a4108b509f +MD5 (dhcp-3.0b2pl16.tar.gz) = 88fb65480a1b66c8d011957ea6c2e138 diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/files/isc-dhcpd.sh.sample isc-dhcp3/files/isc-dhcpd.sh.sample --- isc-dhcp3.old/files/isc-dhcpd.sh.sample Wed Dec 13 09:26:16 2000 +++ isc-dhcp3/files/isc-dhcpd.sh.sample Sun Jan 28 00:35:09 2001 @@ -2,6 +2,7 @@ # $FreeBSD: ports/net/isc-dhcp3/files/isc-dhcpd.sh.sample,v 1.1 2000/12/13 08:26:16 obrien Exp $ +OPTIONS="" IFACES="SET_THIS" if ! PREFIX=$(expr $0 : "\(/.*\)/etc/rc\.d/$(basename $0)\$"); then @@ -11,10 +12,10 @@ case "$1" in start) - ${PREFIX}/sbin/dhcpd $IFACES + ${PREFIX}/sbin/dhcpd $OPTIONS $IFACES ;; stop) - kill `cat /var/run/dhcpd.pid` + killall dhcpd ;; restart) $0 stop @@ -24,7 +25,7 @@ ps -auxww | egrep '(conserver|console)' | egrep -v "($0|egrep)" ;; *) - echo "Usage: `basename $0` {start|stop|restart|status}" >&2 + echo "usage: ${0##*/} {start|stop|restart|status}" >&2 ;; esac diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/files/patch-aj isc-dhcp3/files/patch-aj --- isc-dhcp3.old/files/patch-aj Tue Jul 18 10:50:54 2000 +++ isc-dhcp3/files/patch-aj Fri Jan 26 06:46:29 2001 @@ -1,43 +1,20 @@ ---- includes/dhcpd.h.orig Wed Feb 2 18:01:17 2000 -+++ includes/dhcpd.h Mon Jul 17 21:21:04 2000 -@@ -329,7 +329,7 @@ - #endif - - #ifndef CL_DEFAULT_SCRIPT_NAME --# define CL_DEFAULT_SCRIPT_NAME "/etc/dhclient-script" -+# define CL_DEFAULT_SCRIPT_NAME "!!PREFIX!!/etc/dhclient-script" - #endif - - #ifndef CL_DEFAULT_REQUESTED_OPTIONS -@@ -771,11 +771,11 @@ - #define _PATH_DHCPD_DB "dhcpd.leases" - #else - #ifndef _PATH_DHCPD_CONF --#define _PATH_DHCPD_CONF "/etc/dhcpd.conf" -+#define _PATH_DHCPD_CONF "!!PREFIX!!/etc/dhcpd.conf" - #endif - - #ifndef _PATH_DHCPD_DB --#define _PATH_DHCPD_DB "/etc/dhcpd.leases" -+#define _PATH_DHCPD_DB "!!PREFIX!!/etc/dhcpd.leases" - #endif - - #ifndef _PATH_DHCPD_PID -@@ -784,7 +784,7 @@ - #endif - - #ifndef _PATH_DHCLIENT_CONF --#define _PATH_DHCLIENT_CONF "/etc/dhclient.conf" -+#define _PATH_DHCLIENT_CONF "!!PREFIX!!/etc/dhclient.conf" - #endif - - #ifndef _PATH_DHCLIENT_PID -@@ -792,7 +792,7 @@ - #endif - - #ifndef _PATH_DHCLIENT_DB --#define _PATH_DHCLIENT_DB "/etc/dhclient.leases" -+#define _PATH_DHCLIENT_DB "!!PREFIX!!/etc/dhclient.leases" - #endif - - #ifndef _PATH_RESOLV_CONF +--- includes/dhcpd.h.orig Thu Jan 25 09:25:12 2001 ++++ includes/dhcpd.h Fri Jan 26 06:46:12 2001 +@@ -672,7 +672,7 @@ + u_int32_t requested_lease; /* Requested lease time, if user + doesn't configure one. */ + struct string_list *media; /* Possible network media values. */ +- char *script_name; /* Name of config script. */ ++ const char *script_name; /* Name of config script. */ + char *vendor_space_name; /* Name of config script. */ + enum policy bootp_policy; + /* Ignore, accept or prefer BOOTP +@@ -1864,6 +1864,8 @@ + void set_ip_address PROTO ((struct interface_info *, struct in_addr)); + + /* clparse.c */ ++extern const char *client_script_name; ++ + isc_result_t read_client_conf PROTO ((void)); + void read_client_leases PROTO ((void)); + void parse_client_statement PROTO ((struct parse *, struct interface_info *, diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/files/patch-client-Makefile.dist isc-dhcp3/files/patch-client-Makefile.dist --- isc-dhcp3.old/files/patch-client-Makefile.dist Thu Jan 1 01:00:00 1970 +++ isc-dhcp3/files/patch-client-Makefile.dist Fri Jan 26 05:29:08 2001 @@ -0,0 +1,29 @@ +--- client/Makefile.dist.orig Fri Oct 13 21:03:19 2000 ++++ client/Makefile.dist Fri Jan 26 05:05:24 2001 +@@ -52,8 +52,8 @@ + echo "No client script available."; \ + else \ + $(INSTALL) $(TOP)/client/scripts/$(SCRIPT)\ +- $(DESTDIR)$(ETC)/dhclient-script; \ +- $(CHMOD) 700 $(DESTDIR)$(ETC)/dhclient-script; \ ++ $(DESTDIR)$(CLIENTBINDIR)/dhclient-script; \ ++ $(CHMOD) 700 $(DESTDIR)$(CLIENTBINDIR)/dhclient-script; \ + fi + $(MANINSTALL) $(MANFROM) dhclient.$(MANCAT)8 $(MANTO) \ + $(DESTDIR)$(ADMMANDIR)/dhclient$(ADMMANEXT) +@@ -93,6 +93,7 @@ + + dhclient.man8: dhclient.8 + sed -e "s#ETCDIR#$(ETC)#g" -e "s#DBDIR#$(VARDB)#g" \ ++ -e "s#CLIENTBINDIR#$(CLIENTBINDIR)#g" \ + -e "s#RUNDIR#$(VARRUN)#g" < dhclient.8 >dhclient.man8 + + dhclient-script.cat8: dhclient-script.man8 +@@ -100,6 +101,7 @@ + + dhclient-script.man8: dhclient-script.8 + sed -e "s#ETCDIR#$(ETC)#g" -e "s#DBDIR#$(VARDB)#g" \ ++ -e "s#CLIENTBINDIR#$(CLIENTBINDIR)#g" \ + -e "s#RUNDIR#$(VARRUN)#g" < dhclient-script.8 \ + >dhclient-script.man8 + diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/files/patch-clparse.c isc-dhcp3/files/patch-clparse.c --- isc-dhcp3.old/files/patch-clparse.c Fri Jul 21 07:42:18 2000 +++ isc-dhcp3/files/patch-clparse.c Fri Jan 26 06:44:54 2001 @@ -1,5 +1,11 @@ ---- client/clparse.c.orig Wed Jul 19 21:13:10 2000 -+++ client/clparse.c Thu Jul 20 21:52:53 2000 -@@ -46 +46 @@ +--- client/clparse.c.orig Thu Jan 25 09:17:17 2001 ++++ client/clparse.c Fri Jan 26 06:11:01 2001 +@@ -50,7 +50,7 @@ + + static TIME parsed_time; + -char client_script_name [] = "/etc/dhclient-script"; -+char client_script_name [] = CL_DEFAULT_SCRIPT_NAME; ++const char *client_script_name = CL_DEFAULT_SCRIPT_NAME; + + struct client_config top_level_config; + diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/files/patch-dhclient-script.8 isc-dhcp3/files/patch-dhclient-script.8 --- isc-dhcp3.old/files/patch-dhclient-script.8 Thu Jan 1 01:00:00 1970 +++ isc-dhcp3/files/patch-dhclient-script.8 Fri Jan 26 05:27:38 2001 @@ -0,0 +1,16 @@ +--- client/dhclient-script.8.orig Tue Mar 30 00:50:50 1999 ++++ client/dhclient-script.8 Fri Jan 26 05:12:57 2001 +@@ -60,11 +60,11 @@ + to change the behaviour of the script. If an error occurs during the + execution of the script, it can set the exit_status variable to a nonzero + value, and +-.B ETCDIR/dhclient-script ++.B CLIENTBINDIR/dhclient-script + will exit with that error code immediately after the client script exits. + .PP + After all processing has completed, +-.B ETCDIR/dhclient-script ++.B CLIENTBINDIR/dhclient-script + checks for the presence of an executable + .B ETCDIR/dhclient-exit-hooks + script, which if present is invoked using the '.' command. The exit status diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/files/patch-dhclient.8 isc-dhcp3/files/patch-dhclient.8 --- isc-dhcp3.old/files/patch-dhclient.8 Sun Jun 25 23:08:08 2000 +++ isc-dhcp3/files/patch-dhclient.8 Fri Jan 26 05:27:11 2001 @@ -1,5 +1,5 @@ ---- client/dhclient.8.orig Wed May 10 02:36:03 2000 -+++ client/dhclient.8 Wed May 10 02:39:43 2000 +--- client/dhclient.8.orig Mon May 1 19:11:36 2000 ++++ client/dhclient.8 Fri Jan 26 05:12:37 2001 @@ -34,7 +34,7 @@ .B -q ] @@ -9,15 +9,59 @@ ] [ .B -lf -@@ -170,6 +170,11 @@ - .B -q +@@ -49,6 +49,10 @@ + .I config-file + ] + [ ++.B -sf ++.I script-file ++] ++[ + .B -s + server + ] +@@ -174,17 +178,25 @@ flag prevents any messages other than errors from being printed to the standard error descriptor. -+.PP + .PP +The +.B -1 +flag cause dhclient to try once to get a lease. If it fails, dhclient exits +with exit code two. - .PP ++.PP The DHCP client normally gets its configuration information from .B ETCDIR/dhclient.conf, + its lease database from +-.B DBDIR/dhclient.leases +-and stores its process ID in a file called ++.B DBDIR/dhclient.leases, ++stores its process ID in a file called + .B RUNDIR/dhclient.pid. ++and configure the network interface using ++.B CLIENTBINDIR/dhclient-script. + To specify different names and/or locations for these files, use the + .B -cf, +-.B -lf +-and ++.B -lf, + .B -pf ++and ++.B -sf + flags, respectively, followed by the name of the file. This can be + particularly useful if, for example, + .B DBDIR +@@ -206,10 +218,12 @@ + .SH CONFIGURATION + The syntax of the dhclient.conf(8) file is discussed seperately. + .SH FILES ++.B CLIENTBINDIR/dhclient-script, + .B ETCDIR/dhclient.conf, DBDIR/dhclient.leases, RUNDIR/dhclient.pid, +-.B DBDIR/dhclient.leases~. ++.B DBDIR/dhclient.leases. + .SH SEE ALSO +-dhcpd(8), dhcrelay(8), dhclient.conf(5), dhclient.leases(5) ++dhcpd(8), dhcrelay(8), dhclient-script(8), dhclient.conf(5) and ++dhclient.leases(5). + .SH AUTHOR + .B dhclient(8) + has been written for the Internet Software Consortium diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/files/patch-dhclient.c isc-dhcp3/files/patch-dhclient.c --- isc-dhcp3.old/files/patch-dhclient.c Wed Sep 27 12:36:13 2000 +++ isc-dhcp3/files/patch-dhclient.c Fri Jan 26 06:16:00 2001 @@ -1,5 +1,5 @@ ---- client/dhclient.c.orig Thu Sep 14 05:42:01 2000 -+++ client/dhclient.c Wed Sep 27 03:31:33 2000 +--- client/dhclient.c.orig Thu Jan 25 09:18:06 2001 ++++ client/dhclient.c Fri Jan 26 06:15:50 2001 @@ -78,6 +78,7 @@ u_int16_t remote_port; int no_daemon; @@ -8,7 +8,27 @@ static void usage PROTO ((void)); -@@ -176,6 +177,8 @@ +@@ -104,6 +105,7 @@ + int no_dhclient_conf = 0; + int no_dhclient_db = 0; + int no_dhclient_pid = 0; ++ int no_dhclient_script = 0; + char *s; + + #ifdef SYSLOG_4_2 +@@ -159,6 +161,11 @@ + usage (); + path_dhclient_db = argv [i]; + no_dhclient_db = 1; ++ } else if (!strcmp (argv [i], "-sf")) { ++ if (++i == argc) ++ usage (); ++ client_script_name = argv [i]; ++ no_dhclient_script = 1; + } else if (!strcmp (argv [i], "-q")) { + quiet = 1; + quiet_interface_discovery = 1; +@@ -176,6 +183,8 @@ } else if (!strcmp (argv [i], "-w")) { /* do not exit if there are no broadcast interfaces. */ persist = 1; @@ -17,16 +37,32 @@ } else if (argv [i][0] == '-') { usage (); } else { -@@ -417,7 +420,7 @@ +@@ -208,6 +217,9 @@ + if (!no_dhclient_pid && (s = getenv ("PATH_DHCLIENT_PID"))) { + path_dhclient_pid = s; + } ++ if (!no_dhclient_script && (s = getenv ("PATH_DHCLIENT_SCRIPT"))) { ++ client_script_name = s; ++ } + + /* first kill of any currently running client */ + if (release_mode) { +@@ -423,10 +435,11 @@ log_info (arr); log_info (url); - log_error ("Usage: dhclient [-d] [-D] [-q] [-p ] %s", -+ log_error ("Usage: dhclient [-1] [-d] [-D] [-q] [-p ] %s", ++ log_error ("usage: dhclient [-1] [-d] [-D] [-q] [-p ] %s", "[-s server]"); - log_fatal (" [-lf lease-file] [-pf pid-file]%s", - "[-cf config-file] [interface]"); -@@ -1402,6 +1405,10 @@ +- log_fatal (" [-lf lease-file] [-pf pid-file]%s", +- "[-cf config-file] [interface]"); ++ log_error (" [-cf config-file] [-lf lease-file] %s", ++ "[-pf pid-file] [-sf script-file]"); ++ log_fatal (" [interface]"); + } + + isc_result_t find_class (struct class **c, +@@ -1432,6 +1445,10 @@ /* No leases were available, or what was available didn't work, so tell the shell script that we failed to allocate an address, and try again later. */ diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/files/patch-freebsd isc-dhcp3/files/patch-freebsd --- isc-dhcp3.old/files/patch-freebsd Wed Sep 27 12:36:13 2000 +++ isc-dhcp3/files/patch-freebsd Sat Jan 27 02:17:52 2001 @@ -1,5 +1,5 @@ ---- client/scripts/freebsd.orig Wed Sep 20 02:38:03 2000 -+++ client/scripts/freebsd Wed Sep 27 03:33:29 2000 +--- client/scripts/freebsd.orig Wed Sep 20 11:38:03 2000 ++++ client/scripts/freebsd Sat Jan 27 02:17:01 2001 @@ -1,5 +1,11 @@ #!/bin/sh @@ -55,12 +55,26 @@ hostname $new_host_name fi fi -@@ -105,11 +111,18 @@ +@@ -93,24 +99,31 @@ + route delete default $router >/dev/null 2>&1 + done + if [ "$old_static_routes" != "" ]; then +- set $old_static_routes ++ set -- $old_static_routes + while [ $# -gt 1 ]; do + route delete $1 $2 + shift; shift + done + fi +- arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -n -d \1/p' |sh ++ arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -d \1/p' |sh + fi + if [ x$old_ip_address = x ] || [ x$old_ip_address != x$new_ip_address ] || \ [ x$reason = xBOUND ] || [ x$reason = xREBOOT ]; then ifconfig $interface inet $new_ip_address $new_netmask_arg \ $new_broadcast_arg $medium + $LOGGER "New IP Address($interface): $new_ip_address" -+ $LOGGER "New Subnet Mask ($interface): $new_subnet_mask" ++ $LOGGER "New Subnet Mask($interface): $new_subnet_mask" + $LOGGER "New Broadcast Address($interface): $new_broadcast_address" + if [ "$new_routers" != "" ]; then + $LOGGER "New Routers: $new_routers" @@ -70,11 +84,29 @@ route add default $router >/dev/null 2>&1 done if [ "$new_static_routes" != "" ]; then +- set $new_static_routes + $LOGGER "New Static Routes: $new_static_routes" - set $new_static_routes ++ set -- $new_static_routes while [ $# -gt 1 ]; do route add $1 $2 -@@ -161,8 +174,12 @@ + shift; shift +@@ -138,13 +151,13 @@ + route delete default $router >/dev/null 2>&1 + done + if [ "$old_static_routes" != "" ]; then +- set $old_static_routes ++ set -- $old_static_routes + while [ $# -gt 1 ]; do + route delete $1 $2 + shift; shift + done + fi +- arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -n -d \1/p' \ ++ arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -d \1/p' \ + |sh >/dev/null 2>&1 + fi + if [ x$alias_ip_address != x ]; then +@@ -161,9 +174,13 @@ fi ifconfig $interface inet $new_ip_address $new_netmask_arg \ $new_broadcast_arg $medium @@ -83,7 +115,37 @@ + $LOGGER "New Broadcast Address($interface): $new_broadcast_address" sleep 1 if [ "$new_routers" != "" ]; then +- set $new_routers + $LOGGER "New Routers: $new_routers" - set $new_routers ++ set -- $new_routers if ping -q -c 1 $1; then if [ x$new_ip_address != x$alias_ip_address ] && \ + [ x$alias_ip_address != x ]; then +@@ -174,9 +191,9 @@ + for router in $new_routers; do + route add default $router >/dev/null 2>&1 + done +- set $new_static_routes ++ set -- $new_static_routes + while [ $# -gt 1 ]; do +- route add $0 $1 ++ route add $1 $2 + shift; shift + done + make_resolv_conf +@@ -188,13 +205,13 @@ + route delete default $router >/dev/null 2>&1 + done + if [ "$old_static_routes" != "" ]; then +- set $old_static_routes ++ set -- $old_static_routes + while [ $# -gt 1 ]; do + route delete $1 $2 + shift; shift + done + fi +- arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -n -d \1/p' \ ++ arp -n -a | sed -n -e 's/^.*(\(.*\)) at .*$/arp -d \1/p' \ + |sh >/dev/null 2>&1 + exit_with_hooks 1 + fi diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/files/patch-site.conf isc-dhcp3/files/patch-site.conf --- isc-dhcp3.old/files/patch-site.conf Tue Oct 3 18:01:30 2000 +++ isc-dhcp3/files/patch-site.conf Sat Jan 27 00:53:09 2001 @@ -1,23 +1,32 @@ ---- site.conf.orig Wed Jul 7 08:20:10 1999 -+++ site.conf Tue Oct 3 08:59:57 2000 -@@ -1,2 +1,20 @@ +--- site.conf.orig Wed Jul 7 17:20:10 1999 ++++ site.conf Fri Jan 26 06:58:15 2001 +@@ -1,2 +1,29 @@ # Put local site configuration stuff here to override the default # settings in Makefile.conf + +PREFIX ?= /usr/local + -+ETC = $(PREFIX)/etc +BINDIR = $(PREFIX)/sbin +CLIENTBINDIR = $(PREFIX)/sbin -+MANCAT = man +ADMMANDIR = $(PREFIX)/man/man8 +ADMMANEXT = .8 +FFMANDIR = $(PREFIX)/man/man5 +FFMANEXT = .5 +LIBMANDIR = $(PREFIX)/man/man3 +LIBMANEXT = .3 ++MANCAT = man ++# INSTALL = ${INSTALL_DATA} ++# MANINSTALL = ${INSTALL_MAN} ++ETC = $(PREFIX)/etc ++LIBDIR = ${PREFIX}/lib ++INCDIR = ${PREFIX}/include + +DEBUG ?= #none -+CFLAGS += -DCL_DEFAULT_SCRIPT_NAME=\"$(ETC)/dhclient-script\" ++ ++CFLAGS += -DCL_DEFAULT_SCRIPT_NAME=\"$(CLIENTBINDIR)/dhclient-script\" ++ +CFLAGS += -D_PATH_DHCPD_CONF=\"$(ETC)/dhcpd.conf\" ++CFLAGS += -D_PATH_DHCPD_DB=\"$(VARDB)/dhcpd.leases\" ++ +CFLAGS += -D_PATH_DHCLIENT_CONF=\"$(ETC)/dhclient.conf\" ++CFLAGS += -D_PATH_DHCLIENT_DB=\"$(VARDB)/dhclient.leases\" diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/files/patch-site.h isc-dhcp3/files/patch-site.h --- isc-dhcp3.old/files/patch-site.h Tue Dec 5 18:53:41 2000 +++ isc-dhcp3/files/patch-site.h Thu Jan 1 01:00:00 1970 @@ -1,5 +0,0 @@ ---- includes/site.h.orig Thu Sep 28 11:24:17 2000 -+++ includes/site.h Sat Dec 2 00:46:53 2000 -@@ -159 +159 @@ --/* #define DHCPD_LOG_FACILITY LOG_DAEMON */ -+#define DHCPD_LOG_FACILITY LOG_!!USE_FACILITY!! diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/pkg-descr isc-dhcp3/pkg-descr --- isc-dhcp3.old/pkg-descr Sat Sep 30 20:42:33 2000 +++ isc-dhcp3/pkg-descr Sun Jan 28 02:01:40 2001 @@ -1,16 +1,17 @@ -ISC-DHCP Dynamic Host Configuration Protocol server +The ISC Dynamic Host Configuration Protocol Distribution provides +a freely redistributable reference implementation of all aspects +of the DHCP protocol, through a suite of DHCP tools: -This is a release of the Internet Software Consortium -DHCP Server (ISC dhcpd). In this release, support for the core -DHCP protocol is provided. BOOTP support is also provided for -backwards compatibility. + * A DHCP server + * A DHCP client + * A DHCP relay agent Version 3, Beta 2 of the ISC DHCP Distribution includes the following -features that are new since version 2.0: +features that are new since version 2.0: * DHCP Failover Protocol support * OMAPI, an API for accessing and modifying the DHCP - server and client state. + server and client state. * Conditional behaviour * Storing arbitrary information on leases * Address pools with access control @@ -19,10 +20,12 @@ * Relay agent information option support * Dynamic DNS updates * Many bug fixes, performance enhancements, and minor - new DHCP protocol features. + new DHCP protocol features. -A fully-featured implementation of dynamic DNS updates is included in -this release. There are no build dependencies with any BIND version. +Also, a fully-featured implementation of dynamic DNS updates is +included and there are no build dependencies with any BIND version. +Since patch-level 15, a log-facility configuration parameter has +been added, see the manual pages for details. WWW: http://www.isc.org/products/DHCP/ diff -BurN -x CVS -x work -x *~ -x *.orig -x *.rej -I $Id.*$ -I $FreeBSD.*$ isc-dhcp3.old/pkg-plist isc-dhcp3/pkg-plist --- isc-dhcp3.old/pkg-plist Sat Dec 23 19:53:58 2000 +++ isc-dhcp3/pkg-plist Sun Jan 28 01:59:12 2001 @@ -1,9 +1,8 @@ @comment $FreeBSD: ports/net/isc-dhcp3/pkg-plist,v 1.14 2000/12/23 18:53:58 obrien Exp $ -etc/dhclient-script -sbin/dhclient -sbin/dhcpd -sbin/dhcrelay +etc/dhclient.conf.sample +etc/dhcpd.conf.sample etc/rc.d/isc-dhcpd.sh.sample +include/dhcpctl.h include/isc/boolean.h include/isc/dst.h include/isc/int.h @@ -11,13 +10,25 @@ include/isc/list.h include/isc/result.h include/isc/types.h -@dirrm include/isc include/omapip/alloc.h include/omapip/buffer.h include/omapip/omapip.h -@dirrm include/omapip -include/dhcpctl.h -lib/libomapi.a lib/libdhcpctl.a -@exec touch /var/db/dhcpd.leases -@exec touch %D/etc/dhclient.conf +lib/libomapi.a +sbin/dhclient +sbin/dhclient-script +sbin/dhcpd +sbin/dhcrelay +share/doc/isc-dhcp3/CHANGES +share/doc/isc-dhcp3/COPYRIGHT +share/doc/isc-dhcp3/README +share/doc/isc-dhcp3/RELNOTES +@dirrm include/isc +@dirrm include/omapip +@dirrm share/doc/isc-dhcp3 +@exec [ -f /var/db/dhclient.leases ] || touch /var/db/dhclient.leases +@unexec [ -s /var/db/dhclient.leases ] || rm -f /var/db/dhclient.leases +@exec [ -f /var/db/dhcpd.leases ] || touch /var/db/dhcpd.leases +@unexec [ -s /var/db/dhcpd.leases ] || rm -f /var/db/dhcpd.leases +@exec [ -f %D/etc/dhclient.conf ] || touch %D/etc/dhclient.conf +@unexec [ -L %D/etc/dhclient.conf -o -s %D/etc/dhclient.conf ] || rm -f %D/etc/dhclient.conf >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 Feb 6 14:39:35 2001 Delivered-To: freebsd-ports@freebsd.org Received: from flux.ptc.spbu.ru (flux.ptc.spbu.ru [195.19.225.195]) by hub.freebsd.org (Postfix) with ESMTP id EE1EF37B491 for ; Tue, 6 Feb 2001 14:39:12 -0800 (PST) Received: from snark.ptc.spbu.ru (snark.ptc.spbu.ru [195.19.225.131]) by flux.ptc.spbu.ru (8.9.3/8.9.3/cf-1.0.rbl) with ESMTP id BAA27479 for ; Wed, 7 Feb 2001 01:39:07 +0300 (MSK) Received: (from uwe@localhost) by snark.ptc.spbu.ru (8.8.8+Sun/8.8.8) id BAA01013 for ports@FreeBSD.ORG; Wed, 7 Feb 2001 01:39:06 +0300 (MSK) Date: Wed, 7 Feb 2001 01:39:05 +0300 From: "Valeriy E. Ushakov" To: ports@FreeBSD.ORG Subject: XFree86-4 and /etc Message-ID: <20010207013905.A1007@snark.ptc.spbu.ru> Mail-Followup-To: ports@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.3i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Are there any plans to fix XFree86-4 to *not* install stuff in /etc? A well behaving package should never install anything outside prefix, especially to /etc. It's especially weird to see symlinks from /usr/X11R6/... to /etc. It's an important package and it makes me nervous to see how it violates porters-handbook. SY, Uwe -- uwe@ptc.spbu.ru | Zu Grunde kommen http://www.ptc.spbu.ru/~uwe/ | Ist zu Grunde gehen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 14:39:49 2001 Delivered-To: freebsd-ports@freebsd.org Received: from pork.abattoir.com (adsl-216-102-198-168.dsl.snfc21.pacbell.net [216.102.198.168]) by hub.freebsd.org (Postfix) with ESMTP id ED5CA37B65D for ; Tue, 6 Feb 2001 14:39:32 -0800 (PST) Received: (from root@localhost) by pork.abattoir.com (8.11.1/8.11.1) id f16MdWk00413 for ports@freebsd.org; Tue, 6 Feb 2001 14:39:32 -0800 (PST) (envelope-from root) Date: Tue, 6 Feb 2001 14:39:32 -0800 (PST) From: Charlie Root Message-Id: <200102062239.f16MdWk00413@pork.abattoir.com> To: ports@freebsd.org Subject: security/stunnel-3.13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org security/stunnel-3.13 needs a patch Makefile.in needs "piddir=@localstatedir@/stunnel/" changed to "piddir=@localstatedir@/" otherwise it tries to write pid logs to /var/run/stunnel/... and fails because that directory doesn't exist. -j To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 15: 0:23 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 42F7437B491 for ; Tue, 6 Feb 2001 15:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16N03C02983; Tue, 6 Feb 2001 15:00:03 -0800 (PST) (envelope-from gnats) 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 DACBC37B69C for ; Tue, 6 Feb 2001 14:54:49 -0800 (PST) Received: from gabby.gsicomp.on.ca (root@gabby.gsicomp.on.ca [192.168.0.2]) by xena.gsicomp.on.ca (8.11.1/8.9.3) with ESMTP id f16Mr3i36380; Tue, 6 Feb 2001 17:53:04 -0500 (EST) (envelope-from root@gabby.gsicomp.on.ca) Received: (from root@localhost) by gabby.gsicomp.on.ca (8.11.1/8.9.3) id f16MpWn71174; Tue, 6 Feb 2001 17:51:32 -0500 (EST) (envelope-from root) Message-Id: <200102062251.f16MpWn71174@gabby.gsicomp.on.ca> Date: Tue, 6 Feb 2001 17:51:32 -0500 (EST) From: matt@gsicomp.on.ca Reply-To: matt@gsicomp.on.ca To: FreeBSD-gnats-submit@freebsd.org, hetzels@westbend.net X-Send-Pr-Version: 3.2 Subject: ports/24912: www/apache13-fp has buggy mod_frontpage.c Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24912 >Category: ports >Synopsis: mod_frontpage.c has a bogus sprintf() line which causes httpd to SIGSEGV >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 06 15:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Matt Emmerton >Release: FreeBSD 4.2-STABLE i386 >Organization: GSI Computer Services >Environment: FreeBSD gabby.gsicomp.on.ca 4.2-STABLE FreeBSD 4.2-STABLE #0: Sat Jan 27 01:45:56 EST 2001 >Description: Line 637 of mod_frontpage.c has a sprintf() statement which has three format modifiers (%-.0124s, %d, %d) but only provides TWO variables which causes sprintf() to segfault. The format modifier '%-.0124s' is also obviously incorrect, and should be '%-.1024s' instead. >How-To-Repeat: make install ; apachectl start_FP; try to connect using FP2K client Make sure that the permissions and ownership of your webroot are *different* than that of webroot/_vti_pvt >Fix: --- files/mod_frontpage.c.orig Tue Feb 6 16:49:05 2001 +++ files/mod_frontpage.c Tue Feb 6 16:49:28 2001 @@ -634,7 +634,7 @@ * the owners and groups of both directories to match, and have both a * uid and gid in the allowable range. */ - sprintf(szFormat, "Incorrect permissions on webroot \"\%-.0124s\" and webroot's _vti_pvt directory, the owners and groups must match and have a uid >= %d and gid >= %d", LOWEST_VALID_UID, LOWEST_VALID_GID); + sprintf(szFormat, "Incorrect permissions on webroot \"\%-.1024s\" and webroot's _vti_pvt directory, the owners and groups must match and have a uid >= %d and gid >= %d", szBuf, LOWEST_VALID_UID, LOWEST_VALID_GID); LogFrontPageError(r->server, szFormat, szBuf, "FrontPageAlias()", FALSE); >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 Feb 6 15: 3:49 2001 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 347E537B401; Tue, 6 Feb 2001 15:03:32 -0800 (PST) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16N3Vr03460; Tue, 6 Feb 2001 15:03:31 -0800 (PST) (envelope-from jmz@FreeBSD.org) Date: Tue, 6 Feb 2001 15:03:31 -0800 (PST) Message-Id: <200102062303.f16N3Vr03460@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: jmz set sender to jmz@FreeBSD.org using -f From: Jean-Marc Zucconi To: "Valeriy E. Ushakov" Cc: ports@FreeBSD.org Subject: Re: XFree86-4 and /etc In-Reply-To: <20010207013905.A1007@snark.ptc.spbu.ru> References: <20010207013905.A1007@snark.ptc.spbu.ru> X-Mailer: Emacs 20.7.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> Valeriy E Ushakov writes: > Are there any plans to fix XFree86-4 to *not* install stuff in /etc? > A well behaving package should never install anything outside prefix, > especially to /etc. It's especially weird to see symlinks from > /usr/X11R6/... to /etc. Installing X11 config files inside /usr/X11R6/ is possible but I always considered this as a bad idea. Using /etc for config files makes the nfs sharing of /usr/X11R6 among several machines with different video config much more easy and convenient. > It's an important package and it makes me nervous to see how it > violates porters-handbook. X11 always violated the porters-handbook by not installing itself in /usr/local :-) Jean-Marc -- Jean-Marc Zucconi -- PGP Key: finger jmz@FreeBSD.org [KeyID: 400B38E9] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 15:46:14 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hex.databits.net (hex.databits.net [207.29.192.16]) by hub.freebsd.org (Postfix) with SMTP id 0376837B491 for ; Tue, 6 Feb 2001 15:45:55 -0800 (PST) Received: (qmail 36858 invoked by uid 1001); 6 Feb 2001 23:45:54 -0000 Date: Tue, 6 Feb 2001 18:45:54 -0500 From: Pete Fritchman To: Charlie Root Cc: ports@FreeBSD.org Subject: Re: security/stunnel-3.13 Message-ID: <20010206184554.B35482@databits.net> References: <200102062239.f16MdWk00413@pork.abattoir.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200102062239.f16MdWk00413@pork.abattoir.com>; from root@pork.abattoir.com on Tue, Feb 06, 2001 at 02:39:32PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is not the case: electron [266] % ls -ld /var/run/stunnel ls: /var/run/stunnel: No such file or directory electron [267] % cd /usr/ports/security/stunnel && sudo make install [...] mkdir /var/run/stunnel chmod a=rwx,+t /var/run/stunnel/ [...] electron [268] % ls -ld /var/run/stunnel drwxrwxrwt 2 root wheel 512 Feb 6 18:36 /var/run/stunnel/ electron [269] % -pete ++ 06/02/01 14:39 -0800 - Charlie Root: > >security/stunnel-3.13 needs a patch > >Makefile.in needs "piddir=@localstatedir@/stunnel/" changed to >"piddir=@localstatedir@/" > >otherwise it tries to write pid logs to /var/run/stunnel/... and fails >because that directory doesn't exist. > >-j > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-ports" in the body of the message -- Pete Fritchman Databits Network Services, Inc. finger petef@databits.net for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 15:50:18 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9819137B491 for ; Tue, 6 Feb 2001 15:50:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f16No0L10335; Tue, 6 Feb 2001 15:50:00 -0800 (PST) (envelope-from gnats) Received: from pure.evilcode.com (evilcode.com [63.228.228.140]) by hub.freebsd.org (Postfix) with SMTP id 4D3F337B503 for ; Tue, 6 Feb 2001 15:45:10 -0800 (PST) Received: (qmail 12444 invoked by uid 1000); 6 Feb 2001 23:45:09 -0000 Message-Id: <20010206234509.12443.qmail@pure.evilcode.com> Date: 6 Feb 2001 23:45:09 -0000 From: daemus@evilcode.com Reply-To: daemus@evilcode.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24915: typo in ports/devel/kdevelop/Makefile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24915 >Category: ports >Synopsis: typo in ports/devel/kdevelop/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 Feb 06 15:50:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Daemus >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: ports collection updated from cvsup.freebsd.org at 3:15 p.m., PST >Description: The RUN_DEPENDS variable in ports/devel/kdevelop/Makefile contains a typo in the path to automake >How-To-Repeat: update ports/devel/kdevelop >Fix: Apply the following patch in ports/devel/kdevelop --- Makefile Wed Jan 31 22:51:30 2001 +++ Makefile.new Tue Feb 6 15:13:14 2001 @@ -18,7 +18,7 @@ LIB_DEPENDS= kdeui.3:${PORTSDIR}/x11/kdelibs11 .if defined(WITH_OPTIONAL_DEPENDS) RUN_DEPENDS+= autoconf:${PORTSDIR}/devel/autoconf \ - automake:${PORTSDIR}/deve/automake \ + automake:${PORTSDIR}/devel/automake \ kdbg:${PORTSDIR}/devel/kdbg \ ${LOCALBASE}/share/doc/HTML/en/kdelibs/kdecore/index.html:${PORTSDIR}/devel/kdelibdocs \ ktranslator:${PORTSDIR}/devel/ktranslator \ >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 Feb 6 16:18: 2 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hex.databits.net (hex.databits.net [207.29.192.16]) by hub.freebsd.org (Postfix) with SMTP id 6D7BE37B491 for ; Tue, 6 Feb 2001 16:17:38 -0800 (PST) Received: (qmail 37334 invoked by uid 1001); 7 Feb 2001 00:17:37 -0000 Date: Tue, 6 Feb 2001 19:17:37 -0500 From: Pete Fritchman To: Thomas Stratmann Cc: freebsd-stable@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Missing port dependency on n'scape-remote Message-ID: <20010206191737.C35482@databits.net> References: <3A806EE8.5DFE6164@ruhr-uni-bochum.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A806EE8.5DFE6164@ruhr-uni-bochum.de>; from thomas.stratmann@ruhr-uni-bochum.de on Tue, Feb 06, 2001 at 10:38:48PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ moved to freebsd-ports@freebsd.org ] ++ 06/02/01 22:38 +0100 - Thomas Stratmann: >Hi everyone, > >compilation of port netscape-remote failed: >in remote.c, X11/Xlib.h could not be included/found. >Seems that n-r depends on a port without make install complaining about >it. For a quick solution: Can anyone tell me to which port >X11/Xlib.h belongs? electron [317] % grep X11/Xlib.h /usr/ports/x11/XFree86/pkg-plist include/X11/Xlib.h electron [318] % Hm - you don't have /usr/X11R6/include/X11/Xlib.h? This port defines USE_XLIB, which adds /usr/ports/x11/XFree86 to LIB_DEPENDS. -pete > >Thanx >Thomas Stratmann > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-stable" in the body of the message -- Pete Fritchman Databits Network Services, Inc. finger petef@databits.net for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 16:30:25 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7354437B401 for ; Tue, 6 Feb 2001 16:30:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f170U7Q17277; Tue, 6 Feb 2001 16:30:07 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Feb 2001 16:30:07 -0800 (PST) Message-Id: <200102070030.f170U7Q17277@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Scot W. Hetzel" Subject: Re: ports/24912: www/apache13-fp has buggy mod_frontpage.c Reply-To: "Scot W. Hetzel" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24912; it has been noted by GNATS. From: "Scot W. Hetzel" To: , Cc: Subject: Re: ports/24912: www/apache13-fp has buggy mod_frontpage.c Date: Tue, 6 Feb 2001 18:25:56 -0600 From: > >Description: > > Line 637 of mod_frontpage.c has a sprintf() statement which has three > format modifiers (%-.0124s, %d, %d) but only provides TWO variables > which causes sprintf() to segfault. > No, it only has two format modifiers, \"\%-.0124s\" is not supposed to be a format modifier in this sprintf command, instead it is supposed to be used as a format modifier in the "LogFrontPageError" routine. > The format modifier '%-.0124s' is also obviously incorrect, and > should be '%-.1024s' instead. > Yes, it should be 1024 instead of 0124. > --- files/mod_frontpage.c.orig Tue Feb 6 16:49:05 2001 > +++ files/mod_frontpage.c Tue Feb 6 16:49:28 2001 > @@ -634,7 +634,7 @@ > * the owners and groups of both directories to match, and have both a > * uid and gid in the allowable range. > */ > - sprintf(szFormat, "Incorrect permissions on webroot \"\%-.0124s\" and webroot's _vti_pvt directory, the owners and groups must match and have a uid >= %d and gid >= %d", LOWEST_VALID_UID, LOWEST_VALID_GID); The purpose of this sprintf statement is to put the LOWST_VALID_[UID|GID] into szFormat. > LogFrontPageError(r->server, szFormat, > szBuf, "FrontPageAlias()", FALSE); > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 16:40:57 2001 Delivered-To: freebsd-ports@freebsd.org Received: from nisser.com (c0039.upc-c.chello.nl [212.187.0.39]) by hub.freebsd.org (Postfix) with ESMTP id 290B837B401; Tue, 6 Feb 2001 16:40:38 -0800 (PST) Received: from nisser.com (roelof [10.0.0.2]) by nisser.com (8.9.3/8.9.2) with ESMTP id BAA94762; Wed, 7 Feb 2001 01:40:16 +0100 (CET) (envelope-from roelof@nisser.com) Message-ID: <3A809970.EC5D31FF@nisser.com> Date: Wed, 07 Feb 2001 01:40:16 +0100 From: Roelof Osinga Organization: Nisser - Nr. 1 in Veiligheid X-Mailer: Mozilla 4.72 [en] (Windows NT 5.0; U) X-Accept-Language: en,pdf MIME-Version: 1.0 To: Wes Peters Cc: Garrett Wollman , freebsd-security@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: Package integrity check? References: <20010205210459.A2479@acc.umu.se> <3A7F9AB6.5CAA983B@softweyr.com> <200102061526.KAA31832@khavrinen.lcs.mit.edu> <3A802FAF.792F61F5@softweyr.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Wes Peters wrote: > > ... > That's pretty much at the discretion of the parties signing and verifying > the packages. One of the signatures is a simple SHA1 crypto checksum, > that implies little other than you got what the package creator put > together to a fair degree of certainty. That - 'simple' - was not my impression. I 'needed' to implement both MD-4/5 and SHA-1 in Delphi a while ago and the thing that struck me from the FIPS notes was that it claimed - hah, here's the print-out - the following properties: "it is computationally infeasible to find a message which corresponds to a given MD, or to find two different messages which produce the same MD." That's pretty plain language. It does not say "it is CURRENTLY...". Nope. Just that it is infeasible. Then again, I'm neither a lawyer nor a cryptologist so... > ... > "Where am I, and what am I doing in this handbasket?" I dunno. Are those snoring noses coincedential? Roelof -- Home is where the (@) http://eboa.com/ is. Nisser home -- http://www.Nisser.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 16:44:58 2001 Delivered-To: freebsd-ports@freebsd.org Received: from flux.ptc.spbu.ru (flux.ptc.spbu.ru [195.19.225.195]) by hub.freebsd.org (Postfix) with ESMTP id 8DF7837B401 for ; Tue, 6 Feb 2001 16:44:35 -0800 (PST) Received: from snark.ptc.spbu.ru (snark.ptc.spbu.ru [195.19.225.131]) by flux.ptc.spbu.ru (8.9.3/8.9.3/cf-1.0.rbl) with ESMTP id DAA30109 for ; Wed, 7 Feb 2001 03:44:29 +0300 (MSK) Received: (from uwe@localhost) by snark.ptc.spbu.ru (8.8.8+Sun/8.8.8) id DAA01206 for ports@freebsd.org; Wed, 7 Feb 2001 03:44:29 +0300 (MSK) Date: Wed, 7 Feb 2001 03:44:28 +0300 From: "Valeriy E. Ushakov" To: ports@freebsd.org Subject: Re: XFree86-4 and /etc Message-ID: <20010207034428.A1193@snark.ptc.spbu.ru> Mail-Followup-To: ports@freebsd.org References: <20010207013905.A1007@snark.ptc.spbu.ru> <200102062303.f16N3Vr03460@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.3i In-Reply-To: <200102062303.f16N3Vr03460@freefall.freebsd.org>; from "Jean-Marc Zucconi" on Tue, Feb 06, 2001 at 15:03:31 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 15:03:31 -0800, Jean-Marc Zucconi wrote: > > Are there any plans to fix XFree86-4 to *not* install stuff in /etc? > > A well behaving package should never install anything outside prefix, > > especially to /etc. It's especially weird to see symlinks from > > /usr/X11R6/... to /etc. > > Installing X11 config files inside /usr/X11R6/ is possible but I > always considered this as a bad idea. Using /etc for config files > makes the nfs sharing of /usr/X11R6 among several machines with > different video config much more easy and convenient. Fair enough... As a followup, with XFREE86_VERSION = 4 bsd.port.mk adds dependencies to XFree86-4-libraries and imake-4. Can this be changed somehow to XFree86-4 (say, another option in /etc/make.conf) without resorting to hacking basd.port.mk (which is painful, as I cvsup ports often)? Or should I go play symlink games in /var/db/pkg? SY, Uwe -- uwe@ptc.spbu.ru | Zu Grunde kommen http://www.ptc.spbu.ru/~uwe/ | Ist zu Grunde gehen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 16:52:22 2001 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 1A7DB37B503; Tue, 6 Feb 2001 16:52:02 -0800 (PST) Received: from localhost (casantos@localhost) by gate.cpmet.ufpel.tche.br (8.11.1/8.11.1) with ESMTP id f170qGe10144; Wed, 7 Feb 2001 00:52:17 GMT (envelope-from casantos@cpmet.ufpel.tche.br) Date: Wed, 7 Feb 2001 00:52:16 +0000 (GMT) From: "Carlos A. M. dos Santos" To: Jean-Marc Zucconi Cc: "Valeriy E. Ushakov" , ports@FreeBSD.ORG Subject: Re: XFree86-4 and /etc In-Reply-To: <200102062303.f16N3Vr03460@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, 6 Feb 2001, Jean-Marc Zucconi wrote: > Installing X11 config files inside /usr/X11R6/ is possible but I > always considered this as a bad idea. Using /etc for config files > makes the nfs sharing of /usr/X11R6 among several machines with > different video config much more easy and convenient. What? Please RTFM. I NEVER had to worry about this. All you need to do is create a XF86Config. so that the X server will read it accordingly. Configuring XDM and xinit is also straightfoward. I have been doing this for years. > X11 always violated the porters-handbook by not stalling itself in > /usr/local :-) Well, you could simply #define X11ProjectRoot /usr/local/X11 and everything would be resolved. The question is: "Why?". The only reason why I believe that XFree86 decided to start installing configuration files in /etc was because some Linux zealots think that it should be this way (FSSTND, Debian configuratin rules, Red Hate policy, yada, yada, yada :-P). Good for a desktop-oriented OS, targeted to be used by grandmothers. I have X installed only in the NFS server in a newer lab here and have ALL configuration files shared in the network. Trust me: its a breeze to manage. For some older machines with Linux I use a hacked Slackware to share the entire /usr tree via network (and the network server is an Alpha running DEC UNIX!). Using /etc is good when you have one machine to configure. If you have lots of them, its a nightmare! Please keep the things the way they are and let the system administrator choose the policy. -- 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 Feb 6 17:13:51 2001 Delivered-To: freebsd-ports@freebsd.org Received: from caveman.org (unknown [4.18.169.8]) by hub.freebsd.org (Postfix) with ESMTP id 553F537B491 for ; Tue, 6 Feb 2001 17:13:32 -0800 (PST) Received: (from root@localhost) by caveman.org (8.11.0/8.11.0) id f171Tsi79003; Tue, 6 Feb 2001 20:29:54 -0500 (EST) (envelope-from root) Date: Tue, 6 Feb 2001 20:29:54 -0500 (EST) Message-Id: <200102070129.f171Tsi79003@caveman.org> To: anttik@iki.fi Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-URL: http://freshports.org/port-description.php3?port=857 X-Mailer: Lynx, Version 2.8.3rel.1 X-Personal_name: Sam Montgomery-Blinn From: sam@caveman.org Subject: FreeBSD Port: cdplay-0.92 Cc: ports@FreeBSD.org, sam@caveman.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I wanted to thank you for your work on the FreeBSD port of cdplay. It has been a wonderful app for me. -sam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 18:18:32 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mta05.mail.mel.aone.net.au (mta05.mail.au.uu.net [203.2.192.85]) by hub.freebsd.org (Postfix) with ESMTP id 9F67D37B491; Tue, 6 Feb 2001 18:18:12 -0800 (PST) Received: from camtech.net.au ([203.55.241.46]) by mta05.mail.mel.aone.net.au with ESMTP id <20010207021809.EYIA6342.mta05.mail.mel.aone.net.au@camtech.net.au>; Wed, 7 Feb 2001 13:18:09 +1100 Message-ID: <3A80B117.557C82BF@camtech.net.au> Date: Wed, 07 Feb 2001 12:51:11 +1030 From: Matthew Thyer X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: "Jose M. Alcaide" Cc: will@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: kappfinder segmentation fault during ports/x11/kdebase2 install on recent -CURRENT References: <3A80143D.908D5886@camtech.net.au> <3A804159.F459DD29@we.lc.ehu.es> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Jose M. Alcaide" wrote: > > Matthew Thyer wrote: [snip] > > (cd . && $pwd/kappfinder_install "/usr/local/share/applnk") > > Segmentation fault - core dumped > > gmake[3]: *** [runkappfinder_yes] Error 139 > > I have just got the same error after building _everything_ under /usr/X11R6 > and /usr/local from scratch. If this problem is related to -pthread/libc_r > changes in -CURRENT, it doesn't go away after a full rebuild. Another > test could be downgrading to qt-2.2.3. We have done the same things. I have not only removed all of my ports but I have also cleaned up all the crap left in /usr/X11R6 and /usr/local before rebuilding everything. > My -CURRENT system is very recent (Feb, 3), and I built succesfully > some gtk-based ports using -pthread. My -CURRENT is a few hours older as its Feb 3 Australian time which may have been Feb 2 for you. > Cheers, > -- JMA > ****** Jose M. Alcaide // jose@we.lc.ehu.es // jmas@FreeBSD.org ****** > ** "Beware of Programmers who carry screwdrivers" -- Leonard Brandwein ** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 18:49:46 2001 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 0B26A37B4EC; Tue, 6 Feb 2001 18:49:29 -0800 (PST) Received: (from jmz@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f172nP434107; Tue, 6 Feb 2001 18:49:25 -0800 (PST) (envelope-from jmz@FreeBSD.org) Date: Tue, 6 Feb 2001 18:49:25 -0800 (PST) Message-Id: <200102070249.f172nP434107@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: jmz set sender to jmz@FreeBSD.org using -f From: Jean-Marc Zucconi To: "Carlos A. M. dos Santos" Cc: "Valeriy E. Ushakov" , ports@FreeBSD.org Subject: Re: XFree86-4 and /etc In-Reply-To: References: <200102062303.f16N3Vr03460@freefall.freebsd.org> X-Mailer: Emacs 20.7.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> Carlos A M dos Santos writes: > Using /etc is good when you have one machine to configure. If you have > lots of them, its a nightmare! Please keep the things the way they are and > let the system administrator choose the policy. But the *default* in XFree-4 is to install in /etc, not in /usr/X11R6/etc (look at the Xserver man page for instance). However it is easy to choose the location of the etc files before compiling XFree. I will add an option in the configure script. Jean-Marc -- Jean-Marc Zucconi -- PGP Key: finger jmz@FreeBSD.org [KeyID: 400B38E9] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 18:58:10 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dante.naver.co.id (unknown [202.155.86.83]) by hub.freebsd.org (Postfix) with ESMTP id A825337B491 for ; Tue, 6 Feb 2001 18:57:52 -0800 (PST) Received: by dante.naver.co.id (Postfix, from userid 1000) id 7370E1CB4A7; Wed, 7 Feb 2001 09:57:46 +0700 (JAVT) Date: Wed, 7 Feb 2001 09:57:39 +0700 From: John Indra To: freebsd-ports@freebsd.org Subject: Change XLIB location... Message-ID: <20010207095734.E78692@office.naver.co.id> Mail-Followup-To: freebsd-ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Mailer: Mutt 1.2.5i on FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi... What is the reason for not changing XLIB path to x11/XFree86-4 (instead of x11/XFree86-4-libraries) in bsd.port.mk? I am really getting tired of manual editing now... Oh yeah, and could Mesa port maintainer upgrade the Mesa port version to Mesa 2.4 (if I'm not mistaken, that is the latest version right?) Since Mesa included in XFree86 4.0.2 is Mesa 2.4, I don't see the reason of not upgrading the Mesa port ASAP too... Thanks... /john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 19:30:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B18D737B491 for ; Tue, 6 Feb 2001 19:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f173U1e40365; Tue, 6 Feb 2001 19:30:01 -0800 (PST) (envelope-from gnats) Received: from cn.FreeBSD.org (cn.freebsd.org [202.103.100.254]) by hub.freebsd.org (Postfix) with ESMTP id 206EC37B401 for ; Tue, 6 Feb 2001 19:24:15 -0800 (PST) Received: (from phj@localhost) by cn.FreeBSD.org (8.9.3/8.9.2) id LAA04474; Wed, 7 Feb 2001 11:24:12 +0800 (CST) (envelope-from phj) Message-Id: <200102070324.LAA04474@cn.FreeBSD.org> Date: Wed, 7 Feb 2001 11:24:12 +0800 (CST) From: phj@cn.freebsd.org Reply-To: phj@cn.freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24917: patch for ports chinese/chinput2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24917 >Category: ports >Synopsis: patch for port chinese/chinput2 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 06 19:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Peng HaiJie >Release: 5.0-CURRENT >Organization: cn.freebsd.org >Environment: FreeBSD sea.transfar.com 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Sat Jan 20 17:11:51 CST 2001 phj@sea.transfar.com:/usr/src/sys/compile/KERNEL.20000911 i386 >Description: for using mysqlclient-3.23.32 should add -lz compress lib. >How-To-Repeat: >Fix: --- /usr/ports/chinese/chinput2/work/chinput2/src/Imakefile.orig Sat Jan 20 11:28:25 2001 +++ /usr/ports/chinese/chinput2/work/chinput2/src/Imakefile Wed Feb 7 11:11:55 2001 @@ -10,7 +10,7 @@ XIMINC = -I${IMDKIT}/IMCore -I${IMDKIT}/Xi18n INCLUDES= ${XIMINC} -I. -I/usr/local/include -I../util/pydb LOCAL_LDFLAGS= -static -L../util/IMdkit/IMdkit -L/usr/local/lib -L/usr/local/lib/mysql -LOCAL_LIBRARIES = -lXimd $(XLIB) -lmysqlclient -lm +LOCAL_LIBRARIES = -lXimd $(XLIB) -lmysqlclient -lm -lz CCOPTIONS=-Wall -DDEFAULT_CONF_PATH=\"$(CONFDIR)/$(CONFFILE)\" all:: $(PROGRAM) >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 Feb 6 19:40:30 2001 Delivered-To: freebsd-ports@freebsd.org Received: from xs4some.net (CC4140-a.sneek1.fr.nl.home.com [212.120.108.75]) by hub.freebsd.org (Postfix) with ESMTP id 6D42E37B401 for ; Tue, 6 Feb 2001 19:40:12 -0800 (PST) Received: (from fenix@localhost) by xs4some.net (8.11.2/8.11.1) id f173eBj43540 for ports@FreeBSD.org; Wed, 7 Feb 2001 04:40:11 +0100 (CET) (envelope-from fenix) Date: Wed, 7 Feb 2001 04:40:11 +0100 (CET) From: Fenix Message-Id: <200102070340.f173eBj43540@xs4some.net> To: ports@FreeBSD.org Subject: default site for all distfiles Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, i have a question about setting the master_site variable i would like to make it possible to try my local site before any other site. As i use the ports a lot it could save me a lot of time i have been looking aound in /usr/port/Mk and i changed the backup site in bsd.ports.mk however it is tryed if the first site doesnt work and the file says that i shouldnot change anything in it If someone knows how i can set up the real master site so fetch will try it first before any other please help me, I have been looking in manuals and docs a lot but i couldnot find any direct information it all points somwhere and i get lost :( Thanx in advance Fenix To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 19:43:54 2001 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 612DF37B67D for ; Tue, 6 Feb 2001 19:43:34 -0800 (PST) Received: from hermes (hermes.gsicomp.on.ca [192.168.0.18]) by xena.gsicomp.on.ca (8.11.1/8.9.3) with SMTP id f173fgi37016; Tue, 6 Feb 2001 22:41:43 -0500 (EST) (envelope-from matt@gsicomp.on.ca) Message-ID: <00ed01c090b9$544cc240$1200a8c0@gsicomp.on.ca> From: "Matthew Emmerton" To: "Fenix" , References: <200102070340.f173eBj43540@xs4some.net> Subject: Re: default site for all distfiles Date: Tue, 6 Feb 2001 22:52:00 -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 > Hi, i have a question about setting the master_site variable > i would like to make it possible to try my local site before any other site. By default, the ports subsystem tries to find the package in /usr/ports/distfiles. If you are running some form of distfiles-mirror, perhaps between multiple servers, you may wish to NFS mount your "distfiles" mirror at /usr/ports/distfiles on each client machine - that way if a distfile is downloaded by any machine it will be immediately available to all the others. -- 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 Feb 6 20:22:25 2001 Delivered-To: freebsd-ports@freebsd.org Received: from leviathan.inethouston.net (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id A757037B401 for ; Tue, 6 Feb 2001 20:22:07 -0800 (PST) Received: from dwcjr (DWCJR.inethouston.net [216.118.21.147]) by leviathan.inethouston.net (Postfix) with ESMTP id 14D88177E2A for ; Tue, 6 Feb 2001 22:22:13 -0600 (CST) Message-ID: <02a101c090bd$8c5b8280$931576d8@inethouston.net> From: "David W. Chapman Jr." To: Subject: samba-dev pr24808 Date: Tue, 6 Feb 2001 22:22:14 -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 Anyone care to committ this. I've asked a few committers personally with no luck. I'm running it now as are a few people I've sent the patch to without complaints. It seems stable and has some good performance and feature gains. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 20:23:44 2001 Delivered-To: freebsd-ports@freebsd.org Received: from front004.cluster1.charter.net (outbound.charter.net [24.216.159.200]) by hub.freebsd.org (Postfix) with ESMTP id 6510537B401 for ; Tue, 6 Feb 2001 20:23:25 -0800 (PST) Received: from [24.240.126.32] (HELO gforce.homelan.net) by front004.cluster1.charter.net (CommuniGate Pro SMTP 3.4b8) with ESMTP id 754028; Tue, 06 Feb 2001 23:23:23 -0500 Received: (from glenn@localhost) by gforce.homelan.net (8.11.2/8.11.2) id f174N8901726; Tue, 6 Feb 2001 22:23:08 -0600 (CST) (envelope-from glenn) From: Glenn Johnson Date: Tue, 6 Feb 2001 22:23:04 -0600 To: Brandon Fosdick Cc: ports@FreeBSD.ORG Subject: Re: Linux Matlab on 4.2? Message-ID: <20010206222303.A1542@gforce.homelan.net> Mail-Followup-To: glenn, Brandon Fosdick , ports@FreeBSD.ORG References: <3A805F64.5AD03FA@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: <3A805F64.5AD03FA@glue.umd.edu>; from bfoz@glue.umd.edu on Tue, Feb 06, 2001 at 03:32:36PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 03:32:36PM -0500, Brandon Fosdick wrote: > I'm trying to install Matlab for Linux 5.3 on FreeBSD (stable, rebuilt > yesterday). Does anybody have it working? Somebody in the archives > mentioned having to install the Linux version of tar but the installer > doesn't seem to be getting that far. I see no reason why you would need the Linux version of tar. > > Here's what happens to me: > 15:18 bfoz@806a-117~#/cdrom/install > > Sorry! We could not determine the machine architecture for your > host. Please contact: > > MathWorks Technical Support > > for further assistance. > > > Sorry! Setup aborted . . . > You do not give any specifics so I will have to assume that the install script is calling uname. I do not use Matlab but the above is most likely due to the install script calling uname with an absolute path. Binaries are stored in different areas on FreeBSD and Linux. For instance, uname is in '/usr/bin' on FreeBSD but '/bin' on RedHat. Try running the install script with the Linux shell (you do have Linux compatibility enabled and the linux_base-6.1 port installed, right?). So try the following: /compat/linux/bin/sh /cdrom/install This will cause the install script to be run under the linux shell where it will pick up uname in /bin as it sees it, but it is actually in /compat/linux/bin. The linux compatibility module will cause /compat/linux to be the root of the filesystem for linux applications. Hope that helps. -- Glenn Johnson glennpj@charter.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 20:34:47 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dante.naver.co.id (unknown [202.155.86.83]) by hub.freebsd.org (Postfix) with ESMTP id 6985937B491 for ; Tue, 6 Feb 2001 20:34:30 -0800 (PST) Received: by dante.naver.co.id (Postfix, from userid 1000) id 840481CB3DA; Wed, 7 Feb 2001 11:34:29 +0700 (JAVT) Date: Wed, 7 Feb 2001 11:34:29 +0700 From: John Indra To: freebsd-ports@freebsd.org Subject: KDE2 port is broken Message-ID: <20010207113429.B7903@office.naver.co.id> Mail-Followup-To: freebsd-ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Mailer: Mutt 1.2.5i on FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -CURRENT world, kernel, and ports tree can't build x11/kde2 port. Something is broken. /john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 20:50:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0BE5B37B65D for ; Tue, 6 Feb 2001 20:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f174o2X49346; Tue, 6 Feb 2001 20:50:02 -0800 (PST) (envelope-from gnats) Date: Tue, 6 Feb 2001 20:50:02 -0800 (PST) Message-Id: <200102070450.f174o2X49346@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Subject: Re: ports/24460: Postgresql7 install problem Reply-To: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24460; it has been noted by GNATS. From: To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/24460: Postgresql7 install problem Date: Tue, 6 Feb 2001 20:42:05 -0800 (PST) > The databases/postgresql7 port will not install due to incorrect > /dev/null permission. This really sounds like a system problem. Could you post the exact error encountered? Koshy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 21:21:45 2001 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 CED5137B401 for ; Tue, 6 Feb 2001 21:21:28 -0800 (PST) Received: by peorth.iteration.net (Postfix, from userid 1001) id D741657621; Tue, 6 Feb 2001 23:22:02 -0600 (CST) Date: Tue, 6 Feb 2001 23:22:02 -0600 From: "Michael C . Wu" To: John Indra Cc: freebsd-ports@freebsd.org Subject: Re: KDE2 port is broken Message-ID: <20010206232202.C13708@peorth.iteration.net> Reply-To: "Michael C . Wu" Mail-Followup-To: "Michael C . Wu" , John Indra , freebsd-ports@freebsd.org References: <20010207113429.B7903@office.naver.co.id> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010207113429.B7903@office.naver.co.id>; from john@office.naver.co.id on Wed, Feb 07, 2001 at 11:34:29AM +0700 X-PGP-Fingerprint: 5025 F691 F943 8128 48A8 5025 77CE 29C5 8FA1 2E20 X-PGP-Key-ID: 0x8FA12E20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 11:34:29AM +0700, John Indra scribbled: | -CURRENT world, kernel, and ports tree can't build x11/kde2 port. Something | is broken. KDE2 built fine for me on fresh -current world, kernel, and ports two days ago. -- +------------------------------------------------------------------+ | 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 Tue Feb 6 21:22:44 2001 Delivered-To: freebsd-ports@freebsd.org Received: from post.mail.nl.demon.net (post-10.mail.nl.demon.net [194.159.73.20]) by hub.freebsd.org (Postfix) with ESMTP id EFC5437B491; Tue, 6 Feb 2001 21:22:23 -0800 (PST) Received: from [212.238.77.116] (helo=gateway.raggedclown.net) by post.mail.nl.demon.net with smtp (Exim 3.14 #2) id 14QN3a-0002vs-00; Wed, 07 Feb 2001 05:22:19 +0000 Received: from buffy.raggedclown.net (buffy.raggedclown.intra [192.168.1.2]) by gateway.raggedclown.net (Ragged Clown Gateway) with ESMTP id 949BB33968; Wed, 7 Feb 2001 05:54:53 +0100 (CET) Received: by buffy.raggedclown.net (Ragged Clown Mailhost, from userid 500) id C8EF612C4E; Wed, 7 Feb 2001 05:54:08 +0100 (CET) Date: Wed, 7 Feb 2001 05:54:08 +0100 From: Cliff Sarginson To: Pete Fritchman Cc: Thomas Stratmann , freebsd-stable@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: Missing port dependency on n'scape-remote Message-ID: <20010207055408.A1167@raggedclown.net> References: <3A806EE8.5DFE6164@ruhr-uni-bochum.de> <20010206191737.C35482@databits.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010206191737.C35482@databits.net>; from petef@databits.net on Tue, Feb 06, 2001 at 07:17:37PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 07:17:37PM -0500, Pete Fritchman wrote: > [ moved to freebsd-ports@freebsd.org ] > > ++ 06/02/01 22:38 +0100 - Thomas Stratmann: > >Hi everyone, > > > >compilation of port netscape-remote failed: > >in remote.c, X11/Xlib.h could not be included/found. > >Seems that n-r depends on a port without make install complaining about > >it. For a quick solution: Can anyone tell me to which port > >X11/Xlib.h belongs? > > electron [317] % grep X11/Xlib.h /usr/ports/x11/XFree86/pkg-plist > include/X11/Xlib.h > electron [318] % > > Hm - you don't have /usr/X11R6/include/X11/Xlib.h? This port defines > USE_XLIB, which adds /usr/ports/x11/XFree86 to LIB_DEPENDS. > The compilation of BLT (4.2 release) in the ports suffers from this problem as well. Xlib.h exists, but is not found. Cliff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 21:28:45 2001 Delivered-To: freebsd-ports@freebsd.org Received: from gatekeeper.viper.net.au (gatekeeper.viper.net.au [203.31.238.1]) by hub.freebsd.org (Postfix) with ESMTP id 9962537B401 for ; Tue, 6 Feb 2001 21:28:27 -0800 (PST) Received: from localhost (mark@localhost) by gatekeeper.viper.net.au (8.9.3/8.9.3) with ESMTP id QAA77261; Wed, 7 Feb 2001 16:28:01 +1100 (EST) (envelope-from mark@viper.net.au) Date: Wed, 7 Feb 2001 16:28:01 +1100 (EST) From: Mark Russell To: Fenix Cc: Subject: Re: default site for all distfiles In-Reply-To: <200102070340.f173eBj43540@xs4some.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 Wed, 7 Feb 2001, Fenix wrote: > Hi, i have a question about setting the master_site variable > i would like to make it possible to try my local site before any other site. > As i use the ports a lot it could save me a lot of time > i have been looking aound in /usr/port/Mk and i changed the backup site in bsd.ports.mk however it is tryed if the first site doesnt work and the file says that i shouldnot change anything in it > If someone knows how i can set up the real master site so fetch will try it first before any other please help me, I have been looking in manuals and docs a lot but i couldnot find any direct information it all points somwhere and i get lost :( > Thanx in advance Fenix > MASTER_SITE_BACKUP?=ftp://ftp.au.freebsd.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/ MASTER_SITE_OVERRIDE?= ${MASTER_SITE_BACKUP} should do the trick +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ Mark Russell mark@viper.net.au ph 61 + 2 + 9699 3837 viper.net.au http://www.viper.net.au fax 61 + 2 + 9699 3841 +=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+ The best things in life are free, thats why Windoze costs so much To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 21:40:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88B4B37B491 for ; Tue, 6 Feb 2001 21:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f175e1T55413; Tue, 6 Feb 2001 21:40:01 -0800 (PST) (envelope-from gnats) Received: from balzac.cybercable.fr (balzac.cybercable.fr [212.198.0.198]) by hub.freebsd.org (Postfix) with SMTP id 6485F37B401 for ; Tue, 6 Feb 2001 21:39:04 -0800 (PST) Received: (qmail 11492149 invoked from network); 7 Feb 2001 05:39:02 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by balzac.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 7 Feb 2001 05:39:02 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f175cx750825; Wed, 7 Feb 2001 06:38:59 +0100 (CET) (envelope-from root) Message-Id: <200102070538.f175cx750825@gits.dyndns.org> Date: Wed, 7 Feb 2001 06:38:59 +0100 (CET) From: Cyrille Lefevre Reply-To: clefevre@citeweb.net To: FreeBSD-gnats-submit@freebsd.org Cc: ache@freebsd.org, sf@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24919: Updated port: mail/elm+ME - 2.4ME+88 (critical) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24919 >Category: ports >Synopsis: Updated port: mail/elm+ME - 2.4ME+88 (critical) >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 06 21:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Cyrille Lefevre >Release: FreeBSD 4.2-STABLE i386 >Organization: ACME >Environment: FreeBSD gits 4.2-STABLE FreeBSD 4.2-STABLE #2: Wed Dec 6 17:17:38 CET 2000 root@gits:/disk2/4.x-stable/src/sys/compile/CUSTOM i386 >Description: last instant problem while I was making this new release port. yesterday, mi@aldan.algebra.com reports to me that the current port of elm+ME (2.4.87) is broken as a lambda user. the current work around is to chmod 1777 /var/mail. the symptom is : Can't create lock file! Need write permission in "/var/mail/". this was due by enabling d_savegrpmboxid in config.sh through pre-configure script. I didn't see that bcoz I'm always connected as a super-user. maybe this problem have to be submited to the -security-notification mailing list ? in this new port, the problem is solved by replacing some occurence of setgid(2) by setegid(2) in lib/localmbx.c. Makefile port version bumped. post-patch temporaly added until fix from elm maintainer. distinfo updated. files/elm.mimetypes minor update. files/patch-ai (lib/headers.c) deleted, no more needed. scripts/pre-configure updated. d_savegrpmboxid left on regarding setgid(2) vs. setegid(2) patch added to Makefile. >How-To-Repeat: n/a >Fix: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/mail/elm+ME/Makefile,v retrieving revision 1.64 diff -u -r1.64 Makefile --- Makefile 2001/01/31 17:16:05 1.64 +++ Makefile 2001/02/07 05:06:27 @@ -6,7 +6,7 @@ # PORTNAME= elm+ME -PORTVERSION= 2.4.87 +PORTVERSION= 2.4.88 PORTEPOCH= 1 CATEGORIES= mail DISTNAME= ${PORTNAME:S/+ME//}-${PORTVERSION:R}ME+${PORTVERSION:E} @@ -62,6 +62,16 @@ DESTLIBDIR= ${PREFIX}/lib/${PORTNAME:S/+ME//} MIMETYPES= elm.mimetypes + +# +# Post-patch +# + +# d_savegrpmboxid is currently broken using setgid(2) instead of setegid(2). +# will probably be fixed in the next release, for instance, fake a patch. +# the alternative would be to disable this option in pre-configure script. +post-patch: + @${PERL} -pi.bsd -e 's,setgid,setegid,' ${WRKSRC}/lib/localmbx.c # # Post-configure Index: distinfo =================================================================== RCS file: /home/ncvs/ports/mail/elm+ME/distinfo,v retrieving revision 1.36 diff -u -r1.36 distinfo --- distinfo 2001/01/31 17:16:05 1.36 +++ distinfo 2001/02/07 00:58:27 @@ -1 +1 @@ -MD5 (elm-2.4ME+87.tar.gz) = 26d6cac03fdb6ba5cd3385d77695acb6 +MD5 (elm-2.4ME+88.tar.gz) = 96704eae50aace159a752caafb9bcd44 Index: files/elm.mimetypes =================================================================== RCS file: /home/ncvs/ports/mail/elm+ME/files/elm.mimetypes,v retrieving revision 1.2 diff -u -r1.2 elm.mimetypes --- files/elm.mimetypes 2001/01/31 17:16:07 1.2 +++ files/elm.mimetypes 2001/02/07 00:51:35 @@ -129,9 +129,11 @@ # ---- ------- ----------- --------- # # message rfc822 [RFC2045,RFC2046] +eml message/rfc822 # partial [RFC2045,RFC2046] # external-body [RFC2045,RFC2046] # news [RFC 1036, Henry Spencer] +nws message/news # http [RFC2616] # delivery-status [RFC1894] # disposition-notification [RFC2298] Index: scripts/pre-configure =================================================================== RCS file: /home/ncvs/ports/mail/elm+ME/scripts/pre-configure,v retrieving revision 1.26 diff -u -r1.26 pre-configure --- scripts/pre-configure 2001/01/31 17:16:07 1.26 +++ scripts/pre-configure 2001/02/07 04:24:27 @@ -162,7 +162,7 @@ execmail='' libswanted='sun nls c_s' noaddlib='yes' -c_date='Sun Jan 7 05:51:19 CET 2001' +c_date='Wed Feb 7 02:17:00 CET 2001' d_ascii='undef' d_broke_ctype='undef' d_calendar='define' @@ -204,7 +204,7 @@ d_8bitmime='define' d_binarymime='undef' d_dsn='define' -defsystemcharset='US-ASCII' +defsystemcharset='ISO-8859-1' d_mmdf='undef' d_newauto='define' d_noaddfrom='define' @@ -251,7 +251,7 @@ editoropts='' hostname='' phostname='hostname' -mydomain='' +mydomain='tld.invalid' autohostname='define' i_memory='define' i_time='define' >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 Feb 6 21:41:10 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dante.naver.co.id (unknown [202.155.86.83]) by hub.freebsd.org (Postfix) with ESMTP id 804B037B401 for ; Tue, 6 Feb 2001 21:40:53 -0800 (PST) Received: by dante.naver.co.id (Postfix, from userid 1000) id E04071CB441; Wed, 7 Feb 2001 12:40:51 +0700 (JAVT) Date: Wed, 7 Feb 2001 12:40:51 +0700 From: John Indra To: "Michael C . Wu" Cc: freebsd-ports@freebsd.org Subject: Re: KDE2 port is broken Message-ID: <20010207124050.C7903@office.naver.co.id> Mail-Followup-To: "Michael C . Wu" , freebsd-ports@freebsd.org References: <20010207113429.B7903@office.naver.co.id> <20010206232202.C13708@peorth.iteration.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010206232202.C13708@peorth.iteration.net>; from keichii@iteration.net on Tue, Feb 06, 2001 at 11:22:02PM -0600 X-Mailer: Mutt 1.2.5i on FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 11:22:02PM -0600, Michael C . Wu wrote: >KDE2 built fine for me on fresh -current world, kernel, and ports >two days ago. Hmm... 2 days ago... Using qt version 2.3.x or 2.4? /john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 21:55: 9 2001 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 EB36337B491 for ; Tue, 6 Feb 2001 21:54:52 -0800 (PST) Received: by peorth.iteration.net (Postfix, from userid 1001) id CA98257622; Tue, 6 Feb 2001 23:55:26 -0600 (CST) Date: Tue, 6 Feb 2001 23:55:26 -0600 From: "Michael C . Wu" To: freebsd-ports@freebsd.org Subject: Re: KDE2 port is broken Message-ID: <20010206235526.A14120@peorth.iteration.net> Reply-To: "Michael C . Wu" Mail-Followup-To: "Michael C . Wu" , freebsd-ports@freebsd.org References: <20010207113429.B7903@office.naver.co.id> <20010206232202.C13708@peorth.iteration.net> <20010207124050.C7903@office.naver.co.id> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010207124050.C7903@office.naver.co.id>; from john@office.naver.co.id on Wed, Feb 07, 2001 at 12:40:51PM +0700 X-PGP-Fingerprint: 5025 F691 F943 8128 48A8 5025 77CE 29C5 8FA1 2E20 X-PGP-Key-ID: 0x8FA12E20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 12:40:51PM +0700, John Indra scribbled: | On Tue, Feb 06, 2001 at 11:22:02PM -0600, Michael C . Wu wrote: | | >KDE2 built fine for me on fresh -current world, kernel, and ports | >two days ago. | | Hmm... 2 days ago... Using qt version 2.3.x or 2.4? It was a completely clean system. I simply did cd /usr/ports/x11/kde2 ; make install Whatever kde2 depends is the QT I used. -- +------------------------------------------------------------------+ | 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 Tue Feb 6 22: 9:59 2001 Delivered-To: freebsd-ports@freebsd.org Received: from camus.cybercable.fr (camus.cybercable.fr [212.198.0.200]) by hub.freebsd.org (Postfix) with SMTP id 40D9537B491 for ; Tue, 6 Feb 2001 22:09:40 -0800 (PST) Received: (qmail 3540103 invoked from network); 7 Feb 2001 06:09:38 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by camus.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 7 Feb 2001 06:09:38 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f1769MQ50964; Wed, 7 Feb 2001 07:09:22 +0100 (CET) (envelope-from clefevre@citeweb.net) To: Maxim Sobolev Cc: ports@FreeBSD.ORG, jkh@FreeBSD.ORG, Peter Pentchev , Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] References: <3A7EBA0D.A293FF21@FreeBSD.org> X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C In-Reply-To: Maxim Sobolev's message of "Mon, 05 Feb 2001 16:34:53 +0200" From: Cyrille Lefevre Reply-To: clefevre@noos.fr Mail-Copies-To: never Date: 07 Feb 2001 07:09:20 +0100 Message-ID: <1ytb2fe7.fsf@gits.dyndns.org> Lines: 29 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev writes: > What do ppl think about proposed feature? I personally think that at least > prefix part could be solved easily with appropriate autocompletion rule, > however if there is enough interest I could go on and add this feature. would it be possible to make pkg_install enough intelligent to find it's .tgz file in the current directory w/o any options if just the package name is given ? that's may help scripting. here is an example : # ls -l -rw-r--r-- 1 root wheel 95572 Jan 11 08:51 wget-1.6.tgz # pkg_add wget pkg_add: can't find package `wget' # pkg_add wget-1.6 pkg_add: can't find package `wget-1.6' pkg_add -r doesn't solve the problem, since it doesn't search the current directory and directly download/delete the package from the FreeBSD repository. a store option would be apreciable also to automaticaly fetch the requested package but not delete it after install. Cyrille. -- home: mailto:clefevre@citeweb.net UNIX is user-friendly; it's just particular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 22:29:42 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dante.naver.co.id (unknown [202.155.86.83]) by hub.freebsd.org (Postfix) with ESMTP id 9EDFE37B491 for ; Tue, 6 Feb 2001 22:29:25 -0800 (PST) Received: by dante.naver.co.id (Postfix, from userid 1000) id B4EFA1CB461; Wed, 7 Feb 2001 13:29:23 +0700 (JAVT) Date: Wed, 7 Feb 2001 13:29:23 +0700 From: John Indra To: "Michael C . Wu" Cc: freebsd-ports@freebsd.org Subject: Re: KDE2 port is broken Message-ID: <20010207132923.A72718@office.naver.co.id> Mail-Followup-To: "Michael C . Wu" , freebsd-ports@freebsd.org References: <20010207113429.B7903@office.naver.co.id> <20010206232202.C13708@peorth.iteration.net> <20010207124050.C7903@office.naver.co.id> <20010206235526.A14120@peorth.iteration.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20010206235526.A14120@peorth.iteration.net>; from keichii@iteration.net on Tue, Feb 06, 2001 at 11:55:26PM -0600 X-Mailer: Mutt 1.2.5i on FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 11:55:26PM -0600, Michael C . Wu wrote: >It was a completely clean system. I simply did >cd /usr/ports/x11/kde2 ; make install > >Whatever kde2 depends is the QT I used. Please check your qt version. If it is qt 2.3.x, then your condition is not the same is mine ;) I am building x11/kde2 that uses qt 2.4 from x11-toolkits/qt22 /john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 6 23:33:11 2001 Delivered-To: freebsd-ports@freebsd.org Received: from homer.softweyr.com (bsdconspiracy.net [208.187.122.220]) by hub.freebsd.org (Postfix) with ESMTP id 45AA037B491; Tue, 6 Feb 2001 23:32:49 -0800 (PST) Received: from [127.0.0.1] (helo=softweyr.com ident=Fools trust ident!) by homer.softweyr.com with esmtp (Exim 3.16 #1) id 14QPEh-0000Fs-00; Wed, 07 Feb 2001 00:41:55 -0700 Message-ID: <3A80FC43.AE335524@softweyr.com> Date: Wed, 07 Feb 2001 00:41:55 -0700 From: Wes Peters Organization: Softweyr LLC X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Roelof Osinga Cc: Garrett Wollman , freebsd-security@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: Package integrity check? References: <20010205210459.A2479@acc.umu.se> <3A7F9AB6.5CAA983B@softweyr.com> <200102061526.KAA31832@khavrinen.lcs.mit.edu> <3A802FAF.792F61F5@softweyr.com> <3A809970.EC5D31FF@nisser.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Roelof Osinga wrote: > > Wes Peters wrote: > > > > ... > > That's pretty much at the discretion of the parties signing and verifying > > the packages. One of the signatures is a simple SHA1 crypto checksum, > > that implies little other than you got what the package creator put > > together to a fair degree of certainty. > > That - 'simple' - was not my impression. I 'needed' to implement > both MD-4/5 and SHA-1 in Delphi a while ago and the thing that > struck me from the FIPS notes was that it claimed - hah, here's the > print-out - the following properties: "it is computationally > infeasible to find a message which corresponds to a given MD, > or to find two different messages which produce the same MD." > > That's pretty plain language. It does not say "it is CURRENTLY...". > Nope. Just that it is infeasible. Then again, I'm neither a > lawyer nor a cryptologist so... A "simple SHA1" as opposed to "digital certificate that contains data other than the crypto checksum." -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 0:42:33 2001 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 4275A37B4EC for ; Wed, 7 Feb 2001 00:42:09 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f178fP815412 for ; Wed, 7 Feb 2001 10:41:35 +0200 Received: (from max@localhost) by vic.sabbo.net (8.11.2/8.11.2) id f17860B02163; Wed, 7 Feb 2001 10:06:00 +0200 (EET) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200102070806.f17860B02163@vic.sabbo.net> Subject: Re: Change XLIB location... To: john@office.naver.co.id (John Indra) Date: Wed, 7 Feb 2001 10:04:52 +0200 (EET) Cc: freebsd-ports@FreeBSD.org In-Reply-To: <20010207095734.E78692@office.naver.co.id> from "John Indra" at Feb 07, 2001 09:57:39 AM X-Mailer: ELM [version 2.5 PL3] 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 > > Oh yeah, and could Mesa port maintainer upgrade the Mesa port version to > Mesa 2.4 (if I'm not mistaken, that is the latest version right?) > Since Mesa included in XFree86 4.0.2 is Mesa 2.4, I don't see the reason of > not upgrading the Mesa port ASAP too... > No, there will not be an update to Mesa 2.4 for the followign reasons: 1. Mesa 2.4 has broken assembler routines (missed some files, broken detection in configure script etc.); 2. Mesa 2.4 is incompatible with utah-glx, therefore upgrade would make this port broken; 3. XFree86 4.0.2 uses only glut and GLU libraries from Mesa, they are contributes software for Mesa and do not change very much from release to release, so update would buy very little for XFree86 4.0.2 users. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 0:50:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C808737B684 for ; Wed, 7 Feb 2001 00:50:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f178o3L90828; Wed, 7 Feb 2001 00:50:03 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Feb 2001 00:50:03 -0800 (PST) Message-Id: <200102070850.f178o3L90828@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Yoichi NAKAYAMA Subject: Re: ports/24793: New port: japanese/kpcal (making postscript calendar) Reply-To: Yoichi NAKAYAMA Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24793; it has been noted by GNATS. From: Yoichi NAKAYAMA To: freebsd-gnats-submit@FreeBSD.org, yoichi@eken.phys.nagoya-u.ac.jp Cc: Subject: Re: ports/24793: New port: japanese/kpcal (making postscript calendar) Date: Wed, 7 Feb 2001 17:48:55 +0900 (JST) After the last mail(ports/24793), the patch for kpcal-2.0 revised. So, I want to fix the port as follows. --- Makefile 2001/02/05 11:17:59 1.1 +++ Makefile 2001/02/07 08:23:05 1.2 @@ -12,7 +12,7 @@ DISTNAME= ${PORTNAME}-${PORTVERSION} PATCH_SITES= http://www.tamaru.kuee.kyoto-u.ac.jp/~tsuchiya/misc/ -PATCHFILES= ${PORTNAME}-${PORTVERSION}-HappyMonday.patch +PATCHFILES= ${PORTNAME}-${PORTVERSION}-HappyMonday-v3.patch PATCH_DIST_STRIP= -p1 MAINTAINER= yoichi@eken.phys.nagoya-u.ac.jp --- distinfo 2001/02/05 11:17:59 1.1 +++ distinfo 2001/02/07 08:25:32 1.2 @@ -1,2 +1,2 @@ MD5 (kpcal-2.0.tar.gz) = 7eef81a0212bb7a413b364c25fba7de8 -MD5 (kpcal-2.0-HappyMonday.patch) = ae72ddf3b5309e6fbcfa1e0269f8b57e +MD5 (kpcal-2.0-HappyMonday-v3.patch) = e33e3062e3437f05bbff65ad10f2a4e1 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 0:51:11 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dante.naver.co.id (unknown [202.155.86.83]) by hub.freebsd.org (Postfix) with ESMTP id A860437B699 for ; Wed, 7 Feb 2001 00:50:28 -0800 (PST) Received: by dante.naver.co.id (Postfix, from userid 1000) id 3B63E1CB589; Wed, 7 Feb 2001 15:50:25 +0700 (JAVT) Date: Wed, 7 Feb 2001 15:50:24 +0700 From: John Indra To: freebsd-ports@freebsd.org Subject: About x11/kde2 port build failure... Message-ID: <20010207155024.C72718@office.naver.co.id> Mail-Followup-To: freebsd-ports@freebsd.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="FL5UXtIhxfXey3p5" Content-Disposition: inline X-Mailer: Mutt 1.2.5i on FreeBSD 5.0-CURRENT i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline To proof my post about x11/kde2 port build failure, here's an attached script log. Hope I'm not the only one experiencing this problem... /john --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=kde-error Script started on Wed Feb 7 15:43:47 2001 [root@dante kde2]% make ===> Extracting for kde-2.0.1 >> No MD5 checksum file. ===> kde-2.0.1 depends on shared library: kdecore.4 - not found ===> Verifying install for kdecore.4 in /usr/ports/x11/kdelibs2 ===> Extracting for kdelibs-2.0.1_2 >> Checksum OK for kdelibs-2.0.1.tar.bz2. ===> kdelibs-2.0.1_2 depends on executable: bzip2 - found ===> kdelibs-2.0.1_2 depends on executable: gmake - found ===> kdelibs-2.0.1_2 depends on shared library: tiff.4 - found ===> kdelibs-2.0.1_2 depends on shared library: audiofile.0 - found ===> kdelibs-2.0.1_2 depends on shared library: mimelib.3 - not found ===> Verifying install for mimelib.3 in /usr/ports/converters/kdesupport2 ===> Extracting for kdesupport-2.0.1 >> Checksum OK for kdesupport-2.0.1.tar.bz2. ===> kdesupport-2.0.1 depends on executable: bzip2 - found ===> kdesupport-2.0.1 depends on executable: gmake - found ===> kdesupport-2.0.1 depends on shared library: png.4 - found ===> kdesupport-2.0.1 depends on shared library: jpeg.9 - found ===> kdesupport-2.0.1 depends on shared library: qt2.4 - found ===> Patching for kdesupport-2.0.1 ===> Applying FreeBSD patches for kdesupport-2.0.1 ===> Configuring for kdesupport-2.0.1 /usr/bin/perl -pi -e "s@TOPSUBDIRS libaps@TOPSUBDIRS@g ; s@odbc libaps@odbc@g" /usr/ports/converters/kdesupport2/work/kdesupport-2.0.1/configure /usr/bin/perl -pi -e "s@-version-info 1:1@-version-info 3:0@g" /usr/ports/converters/kdesupport2/work/kdesupport-2.0.1/mimelib/Makefile.in creating cache ./config.cache checking host system type... i386--freebsd5.0 checking target system type... i386--freebsd5.0 checking build system type... i386--freebsd5.0 checking for a BSD compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking whether gmake sets ${MAKE}... yes checking for working aclocal... found checking for working autoconf... found checking for working automake... found checking for working autoheader... found checking for working makeinfo... found checking for a C-Compiler... cc checking whether the C compiler (cc -O -pipe -mcpu=i686 -march=i686 ) works... yes checking whether the C compiler (cc -O -pipe -mcpu=i686 -march=i686 ) is a cross-compiler... no checking whether we are using GNU C... yes checking how to run the C preprocessor... cc -E checking for a C++-Compiler... c++ checking whether the C++ compiler (c++ -O -pipe -mcpu=i686 -march=i686 ) works... yes checking whether the C++ compiler (c++ -O -pipe -mcpu=i686 -march=i686 ) is a cross-compiler... no checking whether we are using GNU C++... yes checking whether c++ supports -fno-exceptions... yes checking whether c++ supports -fno-check-new... yes checking whether c++ supports -Wno-long-long... yes checking whether c++ supports -fno-builtin... yes checking whether c++ supports -fexceptions... yes checking whether c++ supports -frtti... yes checking how to run the C++ preprocessor... c++ -E checking whether c++ supports -frepo... yes checking for ld used by GCC... /usr/libexec/elf/ld checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes checking for /usr/libexec/elf/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognise dependant libraries... pass_all checking for ranlib... ranlib checking for strip... strip checking for Cygwin environment... no checking for mingw32 environment... no updating cache ./config.cache loading cache ./config.cache within ltconfig checking whether -lc should be explicitly linked in... yes checking for objdir... .libs checking for cc option to produce PIC... -fPIC -DPIC checking if cc PIC flag -fPIC -DPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -fno-rtti -fno-exceptions ... yes checking whether the linker (/usr/libexec/elf/ld) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd5.0 ld.so checking command to parse /usr/bin/nm -B output... ok checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for dlopen in -ldl... no checking for dlopen... yes checking for dlfcn.h... yes checking whether a program can dlopen itself... yes checking whether a statically linked program can dlopen itself... no creating libtool updating cache ./config.cache loading cache ./config.cache loading cache ./config.cache within ltconfig checking host system type... i386--freebsd5.0 checking build system type... i386--freebsd5.0 ltcf-cxx: with_gcc=yes ; with_gnu_ld=yes checking for objdir... .libs checking for c++ option to produce PIC... -fPIC -DPIC checking if c++ PIC flag -fPIC -DPIC works... yes checking if c++ static flag -static works... yes checking if c++ supports -c -o file.o... yes checking if c++ supports -fno-rtti -fno-exceptions ... yes checking whether the linker (c++) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd5.0 ld.so checking command to parse /usr/bin/nm -B output... ok checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for dlfcn.h... (cached) yes checking whether a program can dlopen itself... (cached) yes checking whether a statically linked program can dlopen itself... (cached) no appending configuration tag "CXX" to libtool checking for object suffix... o checking for executable suffix... no checking for AIX... no checking for minix/config.h... no checking for main in -lcompat... yes checking for crypt in -lcrypt... yes checking for the third argument of getsockname... socklen_t checking for dnet_ntoa in -ldnet... no checking for dnet_ntoa in -ldnet_stub... no checking for inet_ntoa... yes checking for connect... yes checking for remove... yes checking for shmat... yes checking for killpg in -lucb... no checking size of int... 4 checking size of long... 4 checking size of char *... 4 checking for dlopen in -ldl... (cached) no checking for shl_unload in -ldld... no checking for bool... yes checking for extra includes... no checking for extra libs... added checking for libz... -lz checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for IceConnectionNumber in -lICE... yes checking for libXext... yes checking for libpng... -lpng -lz -lm checking for libjpeg6b... no checking for libjpeg... -ljpeg checking for Qt... configure: error: Qt (>= Qt 2.2.1) (libraries) not found. Please check your installation! For more details about this problem, look at the end of config.log. ===> 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:617: checking host system type configure:638: checking target system type configure:656: checking build system type configure:715: checking for a BSD compatible install configure:795: checking whether build environment is sane configure:833: checking whether gmake sets ${MAKE} configure:879: checking for working aclocal configure:892: checking for working autoconf configure:905: checking for working automake configure:918: checking for working autoheader configure:931: checking for working makeinfo configure:1020: checking for a C-Compiler configure:1132: checking whether the C compiler (cc -O -pipe -mcpu=i686 -march=i686 ) works configure:1148: cc -o conftest -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:1174: checking whether the C compiler (cc -O -pipe -mcpu=i686 -march=i686 ) is a cross-compiler configure:1179: checking whether we are using GNU C configure:1188: cc -E conftest.c configure:1290: checking how to run the C preprocessor configure:1311: cc -E -I/usr/local/include conftest.c >/dev/null 2>conftest.out configure:1352: checking for a C++-Compiler configure:1474: checking whether the C++ compiler (c++ -O -pipe -mcpu=i686 -march=i686 ) works configure:1495: rm -rf SunWS_cache; c++ -o conftest -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.C -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:1521: checking whether the C++ compiler (c++ -O -pipe -mcpu=i686 -march=i686 ) is a cross-compiler configure:1526: checking whether we are using GNU C++ configure:1535: c++ -E conftest.C configure:1610: checking whether c++ supports -fno-exceptions configure:1644: checking whether c++ supports -fno-check-new configure:1683: checking whether c++ supports -Wno-long-long configure:1715: checking whether c++ supports -fno-builtin configure:1760: checking whether c++ supports -fexceptions configure:1795: checking whether c++ supports -frtti configure:1875: checking how to run the C++ preprocessor configure:1897: c++ -E -I/usr/local/include conftest.C >/dev/null 2>conftest.out configure:1958: checking whether c++ supports -frepo configure:2153: checking for ld used by GCC configure:2221: checking if the linker (/usr/libexec/elf/ld) is GNU ld GNU ld version 2.10.1 (with BFD 2.10.1) configure:2238: checking for /usr/libexec/elf/ld option to reload object files configure:2250: checking for BSD-compatible nm configure:2287: checking whether ln -s works configure:2308: checking how to recognise dependant libraries configure:2594: checking for ranlib configure:2661: checking for strip configure:2833: checking for Cygwin environment configure:2849: cc -c -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c 1>&5 configure: In function `main': configure:2845: `__CYGWIN32__' undeclared (first use in this function) configure:2845: (Each undeclared identifier is reported only once configure:2845: for each function it appears in.) configure: failed program was: #line 2838 "configure" #include "confdefs.h" int main() { #ifndef __CYGWIN__ #define __CYGWIN__ __CYGWIN32__ #endif return __CYGWIN__; ; return 0; } configure:2866: checking for mingw32 environment configure:2878: cc -c -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c 1>&5 configure: In function `main': configure:2874: `__MINGW32__' undeclared (first use in this function) configure:2874: (Each undeclared identifier is reported only once configure:2874: for each function it appears in.) configure: failed program was: #line 2871 "configure" #include "confdefs.h" int main() { return __MINGW32__; ; return 0; } ltcf-c.sh:need_lc: cc -c -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c 1>&5 ltcf-c.sh:need_lc: cc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest ltconfig:670:checking for cc option to produce PIC ltconfig:679:checking that cc PIC flag -fPIC -DPIC works. ltconfig:689: cc -c -O2 -O -pipe -mcpu=i686 -march=i686 -fPIC -DPIC -DPIC -I/usr/local/include conftest.c 1>&5 ltconfig:741: checking if cc static flag -static works ltconfig:750: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include -static conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 ltconfig:787: checking if cc supports -c -o file.o ltconfig:788: cc -c -O2 -O -pipe -mcpu=i686 -march=i686 -o out/conftest2.o -I/usr/local/include conftest.c 1>&5 ltconfig:841: checking if cc supports -fno-rtti -fno-exceptions ltconfig:842: cc -c -O2 -O -pipe -mcpu=i686 -march=i686 -fno-rtti -fno-exceptions -c conftest.c -I/usr/local/include conftest.c 1>&5 ltconfig:1309: checking if global_symbol_pipe works ltconfig:1310: cc -c -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c 1>&5 ltconfig:1313: eval "/usr/bin/nm -B conftest.o | sed -n -e 's/^.*[ ]\([ABCDGISTW]\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' > conftest.nm" ltconfig:1365: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -fno-builtin -fno-rtti -fno-exceptions -I/usr/local/include conftest.c conftstm.o 1>&5 ltconfig:1469: checking for dlopen in -ldl ltconfig:1489: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -fno-builtin -fno-rtti -fno-exceptions -I/usr/local/include conftest.c -ldl -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 /usr/libexec/elf/ld: cannot find -ldl ltconfig: failed program was: /*#line 1476 "ltconfig"*/ /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen(); int main() { dlopen() ; return 0; } ltconfig:1508: checking for dlopen ltconfig:1538: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -fno-builtin -fno-rtti -fno-exceptions -I/usr/local/include conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 ltconfig:1706: checking for dlfcn.h ltconfig:1717: cc -c -O2 -O -pipe -mcpu=i686 -march=i686 -fno-builtin -fno-rtti -fno-exceptions -I/usr/local/include conftest.c 1>&5 >/dev/null 2>conftest.out ltconfig:1745: checking whether a program can dlopen itself ltconfig:1799: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -fno-builtin -fno-rtti -fno-exceptions -I/usr/local/include -DHAVE_DLFCN_H -Wl,--export-dynamic conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 ltconfig:1818: checking whether a statically linked program can dlopen itself ltconfig:1872: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -fno-builtin -fno-rtti -fno-exceptions -I/usr/local/include -DHAVE_DLFCN_H -Wl,--export-dynamic -static conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 ltconfig: failed program was: /*#line 1826 "ltconfig"*/ #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LTDL_GLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LTDL_GLOBAL DL_GLOBAL # else # define LTDL_GLOBAL 0 # endif #endif /* We may have to define LTDL_LAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LTDL_LAZY_OR_NOW # ifdef RTLD_LAZY # define LTDL_LAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LTDL_LAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LTDL_LAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LTDL_LAZY_OR_NOW DL_NOW # else # define LTDL_LAZY_OR_NOW 0 # endif # endif # endif # endif #endif void fnord() { int i=42;} int main() { void *self, *ptr1, *ptr2; self=dlopen(0,LTDL_GLOBAL|LTDL_LAZY_OR_NOW); if(self) { ptr1=dlsym(self,"fnord"); ptr2=dlsym(self,"_fnord"); if(ptr1 || ptr2) { dlclose(self); exit(0); } } exit(1); return 1; } c++ -E conftest.cc ltconfig:670:checking for c++ option to produce PIC ltconfig:679:checking that c++ PIC flag -fPIC -DPIC works. ltconfig:689: c++ -c -O2 -fno-exceptions -fno-check-new -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -fno-builtin -O -pipe -mcpu=i686 -march=i686 -fPIC -DPIC -DPIC -I/usr/local/include conftest.cc 1>&5 ltconfig:741: checking if c++ static flag -static works ltconfig:750: c++ -o conftest -O2 -fno-exceptions -fno-check-new -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -fno-builtin -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include -static conftest.cc -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 ltconfig:787: checking if c++ supports -c -o file.o ltconfig:788: c++ -c -O2 -fno-exceptions -fno-check-new -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -fno-builtin -O -pipe -mcpu=i686 -march=i686 -o out/conftest2.o -I/usr/local/include conftest.cc 1>&5 ltconfig:841: checking if c++ supports -fno-rtti -fno-exceptions ltconfig:842: c++ -c -O2 -fno-exceptions -fno-check-new -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -fno-builtin -O -pipe -mcpu=i686 -march=i686 -fno-rtti -fno-exceptions -c conftest.cc -I/usr/local/include conftest.cc 1>&5 ltconfig:1309: checking if global_symbol_pipe works ltconfig:1310: c++ -c -O2 -fno-exceptions -fno-check-new -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -fno-builtin -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.cc 1>&5 ltconfig:1313: eval "/usr/bin/nm -B conftest.o | sed -n -e 's/^.*[ ]\([ABCDGISTW]\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' > conftest.nm" ltconfig:1365: c++ -o conftest -O2 -fno-exceptions -fno-check-new -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -fno-builtin -O -pipe -mcpu=i686 -march=i686 -fno-builtin -fno-rtti -fno-exceptions -I/usr/local/include conftest.cc conftstm.o 1>&5 ltconfig:1706: checking for dlfcn.h ltconfig:1745: checking whether a program can dlopen itself ltconfig:1818: checking whether a statically linked program can dlopen itself configure:3014: checking for object suffix configure:3020: cc -c -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c 1>&5 configure:3040: checking for executable suffix configure:3050: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:3091: checking for AIX configure:3116: checking for minix/config.h configure:3126: cc -E -I/usr/local/include conftest.c >/dev/null 2>conftest.out configure:3122: minix/config.h: No such file or directory configure: failed program was: #line 3121 "configure" #include "confdefs.h" #include configure:3172: checking for main in -lcompat configure:3187: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -lcompat -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:3209: checking for crypt in -lcrypt configure:3228: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -lcrypt -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:3302: checking for the third argument of getsockname configure:3331: c++ -c -O2 -fno-exceptions -fno-check-new -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -fno-builtin -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.C 1>&5 configure:3402: checking for dnet_ntoa in -ldnet configure:3421: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -ldnet -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 /usr/libexec/elf/ld: cannot find -ldnet configure: failed program was: #line 3410 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dnet_ntoa(); int main() { dnet_ntoa() ; return 0; } configure:3443: checking for dnet_ntoa in -ldnet_stub configure:3462: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -ldnet_stub -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 /usr/libexec/elf/ld: cannot find -ldnet_stub configure: failed program was: #line 3451 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char dnet_ntoa(); int main() { dnet_ntoa() ; return 0; } configure:3484: checking for inet_ntoa configure:3512: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:3574: checking for connect configure:3602: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:3665: checking for remove configure:3693: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:3757: checking for shmat configure:3785: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:3851: checking for killpg in -lucb configure:3870: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -lucb -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 /usr/libexec/elf/ld: cannot find -lucb configure: failed program was: #line 3859 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char killpg(); int main() { killpg() ; return 0; } configure:3939: checking size of int configure:3958: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:3977: checking size of long configure:3996: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:4015: checking size of char * configure:4034: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:4055: checking for dlopen in -ldl configure:4099: checking for shl_unload in -ldld configure:4118: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -ldld -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 /usr/libexec/elf/ld: cannot find -ldld configure: failed program was: #line 4107 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ char shl_unload(); int main() { shl_unload() ; return 0; } configure:4146: checking for bool configure:4169: c++ -c -O2 -fno-exceptions -fno-check-new -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -fno-builtin -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.C 1>&5 configure: In function `int main()': configure:4165: warning: unused variable `bool aBool' configure:4193: checking for extra includes configure:4224: checking for extra libs configure:4258: checking for libz configure:4284: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -L/usr/local/lib -lz 1>&5 configure:4314: checking for X configure:4353: cc -E -I/usr/local/include conftest.c >/dev/null 2>conftest.out configure:4349: X11/Intrinsic.h: No such file or directory configure: failed program was: #line 4348 "configure" #include "confdefs.h" #include configure:4429: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -lXt -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 /usr/libexec/elf/ld: cannot find -lXt configure: failed program was: #line 4422 "configure" #include "confdefs.h" int main() { XtMalloc() ; return 0; } configure:4600: checking for IceConnectionNumber in -lICE configure:4619: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include -L/usr/X11R6/lib conftest.c -lICE -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc 1>&5 configure:4648: checking for libXext configure:4671: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include -L/usr/X11R6/lib -L/usr/local/lib conftest.c -lXext -lX11 1>&5 configure:4759: checking for libpng configure:4789: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/X11R6/include -I/usr/local/include conftest.c -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc -L/usr/X11R6/lib -L/usr/local/lib -lpng -lz -lm -lX11 1>&5 configure:4821: checking for libjpeg6b configure:4857: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -L/usr/X11R6/lib -L/usr/local/lib -ljpeg6b -lm 1>&5 /usr/libexec/elf/ld: cannot find -ljpeg6b configure: failed program was: #line 4836 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ struct jpeg_decompress_struct; typedef struct jpeg_decompress_struct * j_decompress_ptr; typedef int size_t; #ifdef __cplusplus extern "C" { #endif void jpeg_CreateDecompress(j_decompress_ptr cinfo, int version, size_t structsize); #ifdef __cplusplus } #endif /* We use char because int might match the return type of a gcc2 builtin and then its argument prototype would still apply. */ int main() { jpeg_CreateDecompress(0L, 0, 0); ; return 0; } configure:4879: checking for libjpeg configure:4915: cc -o conftest -O2 -O -pipe -mcpu=i686 -march=i686 -I/usr/local/include conftest.c -L/usr/X11R6/lib -L/usr/local/lib -ljpeg -lm 1>&5 configure:5019: checking for Qt configure:5180: rm -rf SunWS_cache; c++ -o conftest -O2 -fno-exceptions -fno-check-new -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -Wno-long-long -fno-builtin -O -pipe -mcpu=i686 -march=i686 -I/usr/X11R6/include/qt2 -I/usr/X11R6/include -I/usr/local/include -L/usr/X11R6/lib -L/usr/X11R6/lib -L/usr/local/lib conftest.C -Wl,-export-dynamic -L/usr/local/lib -ljpeg -lstdc++ -lgcc -lqt2 -lpng -lz -lm -ljpeg -lXext -lX11 -lSM -lICE 1>&5 conftest.C: In function `int main()': conftest.C:20: warning: unused variable `int magnolia' conftest.C:15: warning: unused variable `class QStringList * t' /usr/X11R6/lib/libGL.so.1: undefined reference to `pthread_getspecific' /usr/X11R6/lib/libGL.so.1: undefined reference to `pthread_key_create' /usr/X11R6/lib/libGL.so.1: undefined reference to `pthread_setspecific' configure: failed program was: #include "confdefs.h" #include #include #include #include #include #include #include #include #if ! (QT_VERSION >= 221) #error 1 #endif int main() { QStringList *t = new QStringList(); QIconView iv(0); iv.setWordWrapIconText(false); QString s; s.setLatin1("Elvis is alive", 14); int magnolia = QEvent::Speech; /* new in 2.2 beta2 */ return 0; } (end of "config.log") *** Error code 1 Stop in /usr/ports/converters/kdesupport2. *** Error code 1 Stop in /usr/ports/converters/kdesupport2. *** Error code 1 Stop in /usr/ports/converters/kdesupport2. *** Error code 1 Stop in /usr/ports/converters/kdesupport2. *** Error code 1 Stop in /usr/ports/converters/kdesupport2. *** Error code 1 Stop in /usr/ports/x11/kdelibs2. *** Error code 1 Stop in /usr/ports/x11/kdelibs2. *** Error code 1 Stop in /usr/ports/x11/kdelibs2. *** Error code 1 Stop in /usr/ports/x11/kdelibs2. *** Error code 1 Stop in /usr/ports/x11/kdelibs2. *** Error code 1 Stop in /usr/ports/x11/kdelibs2. *** Error code 1 Stop in /usr/ports/x11/kdelibs2. *** Error code 1 Stop in /usr/ports/x11/kde2. *** Error code 1 Stop in /usr/ports/x11/kde2. *** Error code 1 Stop in /usr/ports/x11/kde2. *** Error code 1 Stop in /usr/ports/x11/kde2. *** Error code 1 Stop in /usr/ports/x11/kde2. [root@dante kde2]% exit exit Script done on Wed Feb 7 15:44:32 2001 --FL5UXtIhxfXey3p5-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 1:26:15 2001 Delivered-To: freebsd-ports@freebsd.org Received: from katrien.skystream.nl (katrien.skystream.nl [195.7.130.55]) by hub.freebsd.org (Postfix) with ESMTP id 76F4F37B491 for ; Wed, 7 Feb 2001 01:25:57 -0800 (PST) Received: from dyn.dailup.c227129225.isd.to (dyn.dailup.c227129225.isd.to [213.227.129.225]) by katrien.skystream.nl (8.11.1/8.11.0) with ESMTP id f179Niq03747 for ; Wed, 7 Feb 2001 10:23:44 +0100 Received: (qmail 816 invoked by uid 1000); 7 Feb 2001 09:26:37 -0000 From: "Andre Goeree" Date: Wed, 7 Feb 2001 10:26:37 +0100 To: ports@freebsd.org Subject: Mesa-3.* and XFree86-4.0.2 Message-ID: <20010207102637.B749@mandark.attica.home> Reply-To: abgoeree@uwnet.nl Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Sender: abgoeree@uwnet.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, The Mesa part shipped with XFree86-4.0.2 is of version 3.4 while Mesa in ports/graphics is still at version 3.2.1. (why?) If you try to configure xscreensaver, with Mesa-3.2.1 installed, you get no GL. The message is "we found headers but no libraries" or something alike telling you your Mesa is screwed up.. I have finished a script that fixes some bugs in Mesa-3.4 distrib. Also some m4 files where missing from Mesa-3.4 (which i have taken from a Mesa-3.3 distrib, as 3.4 is a bugfix version of 3.3). Everything (including src/X86) will compile, run and "gmake check" after running this script :) If anyone here is interested, i'd be happy to mail these files to them. I think it's time that Mesa-3.4 makes it into ports.. Even if it's only for those who have XFree86-4.0.2. Please reply/cc me off-list, i'm not on this list. -- Andre. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 1:31:17 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (pop3.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 8851537B503 for ; Wed, 7 Feb 2001 01:30:54 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f179Ukc16713; Wed, 7 Feb 2001 11:30:49 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f179UUa02443; Wed, 7 Feb 2001 11:30:33 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A8115B5.8324179F@FreeBSD.org> Date: Wed, 07 Feb 2001 11:30:29 +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: abgoeree@uwnet.nl Cc: ports@FreeBSD.org Subject: Re: Mesa-3.* and XFree86-4.0.2 References: <20010207102637.B749@mandark.attica.home> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andre Goeree wrote: > Hello, > > The Mesa part shipped with XFree86-4.0.2 is of version 3.4 while > Mesa in ports/graphics is still at version 3.2.1. (why?) > > If you try to configure xscreensaver, with Mesa-3.2.1 installed, > you get no GL. The message is "we found headers but no libraries" > or something alike telling you your Mesa is screwed up.. > > I have finished a script that fixes some bugs in Mesa-3.4 distrib. > Also some m4 files where missing from Mesa-3.4 (which i have taken > from a Mesa-3.3 distrib, as 3.4 is a bugfix version of 3.3). > Everything (including src/X86) will compile, run and "gmake check" > after running this script :) > > If anyone here is interested, i'd be happy to mail these files to them. > > I think it's time that Mesa-3.4 makes it into ports.. > Even if it's only for those who have XFree86-4.0.2. > > Please reply/cc me off-list, i'm not on this list. -------- Original Message -------- Subject: Re: Change XLIB location... Date: Wed, 7 Feb 2001 10:04:52 +0200 (EET) From: Maxim Sobolev To: john@office.naver.co.id (John Indra) CC: freebsd-ports@FreeBSD.ORG > > Oh yeah, and could Mesa port maintainer upgrade the Mesa port version to > Mesa 2.4 (if I'm not mistaken, that is the latest version right?) > Since Mesa included in XFree86 4.0.2 is Mesa 2.4, I don't see the reason of > not upgrading the Mesa port ASAP too... > No, there will not be an update to Mesa 2.4 for the followign reasons: 1. Mesa 2.4 has broken assembler routines (missed some files, broken detection in configure script etc.); 2. Mesa 2.4 is incompatible with utah-glx, therefore upgrade would make this port broken; 3. XFree86 4.0.2 uses only glut and GLU libraries from Mesa, they are contributes software for Mesa and do not change very much from release to release, so update would buy very little for XFree86 4.0.2 users. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 1:47:31 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mta6.snfc21.pbi.net (mta6.snfc21.pbi.net [206.13.28.240]) by hub.freebsd.org (Postfix) with ESMTP id B58CF37B65D for ; Wed, 7 Feb 2001 01:47:14 -0800 (PST) Received: from xor.obsecurity.org ([64.165.226.103]) by mta6.snfc21.pbi.net (Sun Internet Mail Server sims.3.5.2000.01.05.12.18.p9) with ESMTP id <0G8D000AMS2HPA@mta6.snfc21.pbi.net> for ports@FreeBSD.org; Wed, 7 Feb 2001 01:37:30 -0800 (PST) Received: by xor.obsecurity.org (Postfix, from userid 1000) id 85E5A66B62; Wed, 07 Feb 2001 01:40:12 -0800 (PST) Date: Wed, 07 Feb 2001 01:40:12 -0800 From: Kris Kennaway Subject: Needed: apache/httpd ports to use 'www' user To: ports@FreeBSD.org Message-id: <20010207014012.B22502@mollari.cthul.hu> MIME-version: 1.0 Content-type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="NMuMz9nt05w80d4+" Content-disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --NMuMz9nt05w80d4+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject says it all - we need to update the various webserver ports (and any others) to not use the 'nobody' user, but to use a 'www' user (which should be added to the base system, IMO). The 'nobody' user should NOT confer any privileges on people who hold it - the fact that e.g. apache runs as the nobody user is certainly a privilege, as it will let attackers compromise the website if they gain access to the nobody user by breaking some other utility. I've had discussions with Ade about this before, but don't know the current status of the changes. Kris --NMuMz9nt05w80d4+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6gRf8Wry0BWjoQKURAhUJAJ4skurKM9LgJOo6/85E6haaa3DsaQCcCgRp vU02/1IVT/MtBnosLO4DKaU= =NoEd -----END PGP SIGNATURE----- --NMuMz9nt05w80d4+-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 1:58:17 2001 Delivered-To: freebsd-ports@freebsd.org Received: from rapier.smartspace.co.za (rapier.smartspace.co.za [66.8.25.34]) by hub.freebsd.org (Postfix) with SMTP id 1B09037B6A0 for ; Wed, 7 Feb 2001 01:57:58 -0800 (PST) Received: (qmail 38270 invoked by uid 1001); 7 Feb 2001 09:57:37 -0000 Date: Wed, 7 Feb 2001 11:57:37 +0200 From: Neil Blakey-Milner To: Kris Kennaway Cc: ports@FreeBSD.org Subject: Re: Needed: apache/httpd ports to use 'www' user Message-ID: <20010207115736.A37769@rapier.smartspace.co.za> References: <20010207014012.B22502@mollari.cthul.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010207014012.B22502@mollari.cthul.hu>; from kris@obsecurity.org on Wed, Feb 07, 2001 at 01:40:12AM -0800 Organization: Building Intelligence X-Operating-System: FreeBSD 4.2-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed 2001-02-07 (01:40), Kris Kennaway wrote: > Subject says it all - we need to update the various webserver ports > (and any others) to not use the 'nobody' user, but to use a 'www' user > (which should be added to the base system, IMO). The 'nobody' user > should NOT confer any privileges on people who hold it - the fact that > e.g. apache runs as the nobody user is certainly a privilege, as it > will let attackers compromise the website if they gain access to the > nobody user by breaking some other utility. > > I've had discussions with Ade about this before, but don't know the > current status of the changes. I prefer a "httpd" bikeshed - it's less likely to have been used by others (and I've seen lots of places with a "www" group, and group-writable web pages). I personally use "apache", but that may be too specific; but I like specific. I've been working on moving zope to user zope - it's also the way I run it by default. "squid" is another good target. Neil -- Neil Blakey-Milner nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 2: 8:40 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (smtp.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id F024337B401 for ; Wed, 7 Feb 2001 02:08:13 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f17A7iI17545; Wed, 7 Feb 2001 12:07:54 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f17A7lm02720; Wed, 7 Feb 2001 12:07:47 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A811E72.125885CD@FreeBSD.org> Date: Wed, 07 Feb 2001 12:07:46 +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: Wes Peters Cc: ports@FreeBSD.org Subject: Re: Package integrity check? References: <20010205210459.A2479@acc.umu.se> <3A7F9AB6.5CAA983B@softweyr.com> <200102061526.KAA31832@khavrinen.lcs.mit.edu> <3A802FAF.792F61F5@softweyr.com> <3A8030F0.EA4D3A99@FreeBSD.org> <3A8108A2.DB335434@softweyr.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Wes Peters wrote: > Maxim Sobolev wrote: > > > > Wes Peters wrote: > > > > Are you going to reply to my question why general utility for signing > > gzip-compressed files has been added into pkg_install module? IMHO it's better to > > add it in its own directory under usr.bin, because it's not pkg_install specific at > > all. > > If you'd just read the code you'd find that your assertion isn't true. I'm > really astonished at the amount of rhetoric being flung about by this commit > from people who obviously haven't bothered to look at the code. Please feel > free to return with sensible comments when you have actually read the code. It's wrong assertion. I did read the code but was unable to find any traces indicating that pkg_sign is using any pkg_install infrastructure. Moreover, even pkg_sign manpage indicates that it's just a general utility to sign gzip-compressed archives, so my question is a pretty valid. You are partially answered it in your another e-mail on the topic (it's where it located in OpenBSD), but this is not a very strong point, as poor architectural choices of one project should not be automatically inherited by another just because 'it's how they did it'. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 2:28:20 2001 Delivered-To: freebsd-ports@freebsd.org Received: from katrien.skystream.nl (katrien.skystream.nl [195.7.130.55]) by hub.freebsd.org (Postfix) with ESMTP id E74C737B67D for ; Wed, 7 Feb 2001 02:27:58 -0800 (PST) Received: from dyn.dailup.c227128171.isd.to (dyn.dailup.c227128171.isd.to [213.227.128.171]) by katrien.skystream.nl (8.11.1/8.11.0) with ESMTP id f17APkq04908 for ; Wed, 7 Feb 2001 11:25:47 +0100 Received: (qmail 55329 invoked by uid 1000); 7 Feb 2001 10:28:29 -0000 From: "Andre Goeree" Date: Wed, 7 Feb 2001 11:28:29 +0100 To: Maxim Sobolev Cc: ports@freebsd.org Subject: Re: Mesa-3.* and XFree86-4.0.2 Message-ID: <20010207112829.C55281@mandark.attica.home> Reply-To: abgoeree@uwnet.nl References: <20010207102637.B749@mandark.attica.home> <3A8115B5.8324179F@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: <3A8115B5.8324179F@FreeBSD.org>; from sobomax@FreeBSD.org on Wed, Feb 07, 2001 at 11:30:29AM +0200 X-Sender: abgoeree@uwnet.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 11:30:29AM +0200, Maxim Sobolev wrote: > Andre Goeree wrote: > > > Hello, > > > > The Mesa part shipped with XFree86-4.0.2 is of version 3.4 while > > Mesa in ports/graphics is still at version 3.2.1. (why?) > > > > If you try to configure xscreensaver, with Mesa-3.2.1 installed, > > you get no GL. The message is "we found headers but no libraries" > > or something alike telling you your Mesa is screwed up.. > > > > I have finished a script that fixes some bugs in Mesa-3.4 distrib. > > Also some m4 files where missing from Mesa-3.4 (which i have taken > > from a Mesa-3.3 distrib, as 3.4 is a bugfix version of 3.3). > > Everything (including src/X86) will compile, run and "gmake check" > > after running this script :) > > > > If anyone here is interested, i'd be happy to mail these files to them. > > > > I think it's time that Mesa-3.4 makes it into ports.. > > Even if it's only for those who have XFree86-4.0.2. > > > > Please reply/cc me off-list, i'm not on this list. > > -------- Original Message -------- > Subject: Re: Change XLIB location... > Date: Wed, 7 Feb 2001 10:04:52 +0200 (EET) > From: Maxim Sobolev > To: john@office.naver.co.id (John Indra) > CC: freebsd-ports@FreeBSD.ORG > > > > > Oh yeah, and could Mesa port maintainer upgrade the Mesa port version to > > Mesa 2.4 (if I'm not mistaken, that is the latest version right?) > > Since Mesa included in XFree86 4.0.2 is Mesa 2.4, I don't see the reason of > > not upgrading the Mesa port ASAP too... > > > > No, there will not be an update to Mesa 2.4 for the followign reasons: I believe you mean Mesa-3.4 ;) 2.4 is long gone.... > > 1. Mesa 2.4 has broken assembler routines (missed some files, broken > detection in configure script etc.); This is *exactly* what my script (+ modified m4 files from Mesa-3.3) fixes:) > 2. Mesa 2.4 is incompatible with utah-glx, therefore upgrade would make this > port broken; utah-glx is allready marked broken for XFree86-4.0.2 so i don't see the problem. > 3. XFree86 4.0.2 uses only glut and GLU libraries from Mesa, they are > contributes software for Mesa and do not change very much from release > to release, so update would buy very little for XFree86 4.0.2 users. > IMHO, This is incorrect, the Mesa files included with XFree86-4.0.2 are of version 3.4 so a update/addition of Mesa-3.4 to ports would be a logical step. > -Maxim > > Regards, -- Andre. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 3:10:25 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 46B8337B401 for ; Wed, 7 Feb 2001 03:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17BA4P19104; Wed, 7 Feb 2001 03:10:04 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Feb 2001 03:10:04 -0800 (PST) Message-Id: <200102071110.f17BA4P19104@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: User Raymond Subject: ports/24824: gphoto fails to start Reply-To: User Raymond Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24824; it has been noted by GNATS. From: User Raymond To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: ports/24824: gphoto fails to start Date: Wed, 7 Feb 2001 21:10:49 +1000 (EST) Subj: ports/24824: gphoto fails to start To: freebsd-gnats-submit@FreeBSD.org From: raymond@one.com.au I managed to get this going by completely re-installing FreeBSD from scratch then re-installling gphoto (from the package). Now it works well and I can do away with the linux box. Ray Newman Message sent at 09:07 PM on 07 Feb 2001 by PUP::RAYMOND. Id: 63681. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 3:28:41 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 9828137B4EC for ; Wed, 7 Feb 2001 03:28:09 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f17BRkI19516; Wed, 7 Feb 2001 13:27:55 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f17BRom02857; Wed, 7 Feb 2001 13:27:50 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A813135.9BF6C277@FreeBSD.org> Date: Wed, 07 Feb 2001 13:27:49 +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: abgoeree@uwnet.nl Cc: ports@FreeBSD.org Subject: Re: Mesa-3.* and XFree86-4.0.2 References: <20010207102637.B749@mandark.attica.home> <3A8115B5.8324179F@FreeBSD.org> <20010207112829.C55281@mandark.attica.home> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andre Goeree wrote: > On Wed, Feb 07, 2001 at 11:30:29AM +0200, Maxim Sobolev wrote: > > Andre Goeree wrote: > > > > > Hello, > > > > > > The Mesa part shipped with XFree86-4.0.2 is of version 3.4 while > > > Mesa in ports/graphics is still at version 3.2.1. (why?) > > > > > > If you try to configure xscreensaver, with Mesa-3.2.1 installed, > > > you get no GL. The message is "we found headers but no libraries" > > > or something alike telling you your Mesa is screwed up.. > > > > > > I have finished a script that fixes some bugs in Mesa-3.4 distrib. > > > Also some m4 files where missing from Mesa-3.4 (which i have taken > > > from a Mesa-3.3 distrib, as 3.4 is a bugfix version of 3.3). > > > Everything (including src/X86) will compile, run and "gmake check" > > > after running this script :) > > > > > > If anyone here is interested, i'd be happy to mail these files to them. > > > > > > I think it's time that Mesa-3.4 makes it into ports.. > > > Even if it's only for those who have XFree86-4.0.2. > > > > > > Please reply/cc me off-list, i'm not on this list. > > > > -------- Original Message -------- > > Subject: Re: Change XLIB location... > > Date: Wed, 7 Feb 2001 10:04:52 +0200 (EET) > > From: Maxim Sobolev > > To: john@office.naver.co.id (John Indra) > > CC: freebsd-ports@FreeBSD.ORG > > > > > > > > Oh yeah, and could Mesa port maintainer upgrade the Mesa port version to > > > Mesa 2.4 (if I'm not mistaken, that is the latest version right?) > > > Since Mesa included in XFree86 4.0.2 is Mesa 2.4, I don't see the reason of > > > not upgrading the Mesa port ASAP too... > > > > > > > No, there will not be an update to Mesa 2.4 for the followign reasons: > > I believe you mean Mesa-3.4 ;) 2.4 is long gone.... Yeah, it's typo. > > > > 1. Mesa 3.4 has broken assembler routines (missed some files, broken > > detection in configure script etc.); > > This is *exactly* what my script (+ modified m4 files from Mesa-3.3) fixes:) > > > 2. Mesa 3.4 is incompatible with utah-glx, therefore upgrade would make this > > port broken; > > utah-glx is allready marked broken for XFree86-4.0.2 so i don't see the > problem. The problem is that utah-glx is still useful for those whose 3D hardware is unsupported yet by the DRI (me including). Those ones can still use XFree86-3.3.6 + utah-glx quite nicely. > > 3. XFree86 4.0.2 uses only glut and GLU libraries from Mesa, they are > > contributes software for Mesa and do not change very much from release > > to release, so update would buy very little for XFree86 4.0.2 users. > > > > IMHO, This is incorrect, the Mesa files included with XFree86-4.0.2 are of > version 3.4 so a update/addition of Mesa-3.4 to ports would be a logical step. You have misunderstood my sentence, I mean that XFree86-4 based systems take only GLU and glut parts of Mesa port, so it should not be a big deal for XFree86-4 users. I understand, however, that you are probably invested some time into fixing Mesa 3.4 and don't like your work to be vanished. I promise that as long as utah-glx has been updated to work correctly with Mesa3.4 I'll commit your patches. In the meantime, please submit them as a PR and send a copy to the Mesa developers. Thank you! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 4:36:54 2001 Delivered-To: freebsd-ports@freebsd.org Received: from london.physics.purdue.edu (london.physics.purdue.edu [128.210.67.35]) by hub.freebsd.org (Postfix) with ESMTP id AB99D37B6A1 for ; Wed, 7 Feb 2001 04:36:32 -0800 (PST) Received: (from will@localhost) by london.physics.purdue.edu (8.8.8/8.8.8) id HAA01836; Wed, 7 Feb 2001 07:36:23 -0500 (EST) X-Authentication-Warning: london.physics.purdue.edu: will set sender to will@physics.purdue.edu using -f Date: Wed, 7 Feb 2001 07:36:22 -0500 From: Will Andrews To: John Indra Cc: freebsd-ports@FreeBSD.ORG Subject: Re: KDE2 port is broken Message-ID: <20010207073622.H3206@london.physics.purdue.edu> Reply-To: Will Andrews References: <20010207113429.B7903@office.naver.co.id> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010207113429.B7903@office.naver.co.id>; from john@office.naver.co.id on Wed, Feb 07, 2001 at 11:34:29AM +0700 X-Operating-System: SunOS 4.1.3_U1 sun4m Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 11:34:29AM +0700, John Indra wrote: > -CURRENT world, kernel, and ports tree can't build x11/kde2 port. Something > is broken. Please submit a real bug report. BTW, it's QT 2.2.4, not 2.4. -- wca To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 5:24:33 2001 Delivered-To: freebsd-ports@freebsd.org Received: from flux.ptc.spbu.ru (flux.ptc.spbu.ru [195.19.225.195]) by hub.freebsd.org (Postfix) with ESMTP id 2952037B401 for ; Wed, 7 Feb 2001 05:24:11 -0800 (PST) Received: from snark.ptc.spbu.ru (snark.ptc.spbu.ru [195.19.225.131]) by flux.ptc.spbu.ru (8.9.3/8.9.3/cf-1.0.rbl) with ESMTP id QAA48008 for ; Wed, 7 Feb 2001 16:24:03 +0300 (MSK) Received: (from uwe@localhost) by snark.ptc.spbu.ru (8.8.8+Sun/8.8.8) id QAA02097 for ports@FreeBSD.ORG; Wed, 7 Feb 2001 16:24:02 +0300 (MSK) Date: Wed, 7 Feb 2001 16:24:02 +0300 From: "Valeriy E. Ushakov" To: ports@FreeBSD.ORG Subject: Re: XFree86-4 and /etc Message-ID: <20010207162402.A2074@snark.ptc.spbu.ru> Mail-Followup-To: ports@FreeBSD.ORG References: <200102062303.f16N3Vr03460@freefall.freebsd.org> <200102070249.f172nP434107@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.3i In-Reply-To: <200102070249.f172nP434107@freefall.freebsd.org>; from "Jean-Marc Zucconi" on Tue, Feb 06, 2001 at 18:49:25 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 18:49:25 -0800, Jean-Marc Zucconi wrote: > > let the system administrator choose the policy. > > But the *default* in XFree-4 is to install in /etc, not in > /usr/X11R6/etc (look at the Xserver man page for instance). XFree is influenced by Linux too heavily, and we all know that Linux is only a "Unix-like" OS ;-), so I wouldn't trust their ideas of how things should be laid out in real Unix (whatever Rev. Don Kool says :). > However it is easy to choose the location of the etc files before > compiling XFree. I will add an option in the configure script. Hmm, incidentally, prebuild package from ftp.freebsd.org installs /usr/X11R6/lib/X11/xkb -> ../../../../etc/X11/xkb and /etc/X11/xkb/compiled -> ../../../../../var/db/xkb And from the number of ..'s it's clear that symlink for "compiled" was made not for /etc but for /usr/X11R6/lib/X11/xkb. Somehow this gives me a hint that /etc is not a default location. Fortunately, hierarchy in /etc is more shallow and /.. points back to / so the symlink works (well, sort of, as the symlink is dangling as installed). SY, Uwe -- uwe@ptc.spbu.ru | Zu Grunde kommen http://www.ptc.spbu.ru/~uwe/ | Ist zu Grunde gehen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 5:30:41 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.mdanderson.org (mail.mdanderson.org [143.111.87.47]) by hub.freebsd.org (Postfix) with ESMTP id 7F54B37B491 for ; Wed, 7 Feb 2001 05:30:24 -0800 (PST) Received: from mail.mdanderson.org (jef-nt.mdacc.tmc.edu [143.111.64.202]) by mail.mdanderson.org (8.9.1b+Sun/8.9.1) with ESMTP id HAA14843; Wed, 7 Feb 2001 07:26:36 -0600 (CST) Message-ID: <3A814DEF.2050301@mail.mdanderson.org> Date: Wed, 07 Feb 2001 07:30:23 -0600 From: Jonathan Fosburgh Reply-To: wotan@fosburgh.org User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; m18) Gecko/20001108 Netscape6/6.0 X-Accept-Language: en MIME-Version: 1.0 To: John Indra Cc: freebsd-ports@freebsd.org Subject: Re: About x11/kde2 port build failure... References: <20010207155024.C72718@office.naver.co.id> 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 John Indra wrote: > ===> kdesupport-2.0.1 depends on shared library: qt2.4 - found > checking for Qt... configure: error: Qt (>= Qt 2.2.1) (libraries) not found. Please check your installation! Confirm the version of qt you have installed. The ports systems thinks it is finding the most recent version, but the configure script thinks it is finding a much, much older version. Are you upgrading from KDE pre2.0, or is this a brand new install of KDE? -- Jonathan Fosburgh Open Systems Communications and Computer Services UT MD Anderson Cancer Center Houston, TX To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 5:35:48 2001 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 39BBD37B491 for ; Wed, 7 Feb 2001 05:35:30 -0800 (PST) Received: by peorth.iteration.net (Postfix, from userid 1001) id C574357627; Wed, 7 Feb 2001 07:36:04 -0600 (CST) Date: Wed, 7 Feb 2001 07:36:04 -0600 From: "Michael C . Wu" To: "Valeriy E. Ushakov" Cc: ports@FreeBSD.ORG Subject: Re: XFree86-4 and /etc Message-ID: <20010207073604.A16642@peorth.iteration.net> Reply-To: "Michael C . Wu" References: <200102062303.f16N3Vr03460@freefall.freebsd.org> <200102070249.f172nP434107@freefall.freebsd.org> <20010207162402.A2074@snark.ptc.spbu.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010207162402.A2074@snark.ptc.spbu.ru>; from uwe@ptc.spbu.ru on Wed, Feb 07, 2001 at 04:24:02PM +0300 X-PGP-Fingerprint: 5025 F691 F943 8128 48A8 5025 77CE 29C5 8FA1 2E20 X-PGP-Key-ID: 0x8FA12E20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 04:24:02PM +0300, Valeriy E. Ushakov scribbled: | On Tue, Feb 06, 2001 at 18:49:25 -0800, Jean-Marc Zucconi wrote: | > > let the system administrator choose the policy. | > But the *default* in XFree-4 is to install in /etc, not in | > /usr/X11R6/etc (look at the Xserver man page for instance). | | XFree is influenced by Linux too heavily, and we all know that Linux | is only a "Unix-like" OS ;-), so I wouldn't trust their ideas of how | things should be laid out in real Unix (whatever Rev. Don Kool says :). We try to not use discriminating unjustified arguments like "Linux sucks" in technical discussions. :) | > However it is easy to choose the location of the etc files before | > compiling XFree. I will add an option in the configure script. | Hmm, incidentally, prebuild package from ftp.freebsd.org installs | /usr/X11R6/lib/X11/xkb -> ../../../../etc/X11/xkb | and | /etc/X11/xkb/compiled -> ../../../../../var/db/xkb | And from the number of ..'s it's clear that symlink for "compiled" was | made not for /etc but for /usr/X11R6/lib/X11/xkb. Somehow this gives | me a hint that /etc is not a default location. No, it just means that XFree86 has a large code base and someone may have forgotten to change it. | Fortunately, hierarchy in /etc is more shallow and /.. points back to | / so the symlink works (well, sort of, as the symlink is dangling as | installed). I really do not see the validity of raising an issue that has been there since XFree86 3.*. In any case, not very many people has been objecting about /etc/XF86Config or /etc/X11/* There is no need to raise an unnecessary bikeshed. [Let's paint that bikeshed blue] "Let's move /etc/X11 to /usr/local" [No, let's not] "No, let's not" Back to daily scheduled supposedly technical discussion. :) -- +------------------------------------------------------------------+ | 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 Wed Feb 7 5:42: 0 2001 Delivered-To: freebsd-ports@freebsd.org Received: from peak.mountin.net (peak.mountin.net [207.227.119.2]) by hub.freebsd.org (Postfix) with ESMTP id 5066737B401 for ; Wed, 7 Feb 2001 05:41:43 -0800 (PST) Received: (from daemon@localhost) by peak.mountin.net (8.9.1/8.9.1) id HAA26196; Wed, 7 Feb 2001 07:41:20 -0600 (CST) (envelope-from jeff-ml@mountin.net) Received: from dial-85.max1.wa.cyberlynk.net(207.227.118.85) by peak.mountin.net via smap (V1.3) id sma026192; Wed Feb 7 07:41:18 2001 Message-Id: <4.3.2.20010207072120.00b21730@207.227.119.2> X-Sender: jeff-ml@207.227.119.2 X-Mailer: QUALCOMM Windows Eudora Version 4.3 Date: Wed, 07 Feb 2001 07:39:14 -0600 To: Neil Blakey-Milner , Kris Kennaway From: "Jeffrey J. Mountin" Subject: Re: Needed: apache/httpd ports to use 'www' user Cc: ports@FreeBSD.ORG In-Reply-To: <20010207115736.A37769@rapier.smartspace.co.za> References: <20010207014012.B22502@mollari.cthul.hu> <20010207014012.B22502@mollari.cthul.hu> 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 At 11:57 AM 2/7/01 +0200, Neil Blakey-Milner wrote: >On Wed 2001-02-07 (01:40), Kris Kennaway wrote: > > Subject says it all - we need to update the various webserver ports > > (and any others) to not use the 'nobody' user, but to use a 'www' user > > (which should be added to the base system, IMO). The 'nobody' user > > should NOT confer any privileges on people who hold it - the fact that > > e.g. apache runs as the nobody user is certainly a privilege, as it > > will let attackers compromise the website if they gain access to the > > nobody user by breaking some other utility. > > > > I've had discussions with Ade about this before, but don't know the > > current status of the changes. > >I prefer a "httpd" bikeshed - it's less likely to have been used by >others (and I've seen lots of places with a "www" group, and >group-writable web pages). I personally use "apache", but that may be >too specific; but I like specific. Same here. A generic user/group for www (or httpd) could easily be changed to "apache" or just change the user name. There was brief talk of this ages back, but mention of running more than one daemon or clobbering/touching /etc files seemed to kill the idea. Forget the specifics. www:*:80:80::0:0:Apache Web Server:/nonexistent:/sbin/nologin Or "HTTP Daemon" if you prefer that color. Jeff Mountin - jeff@mountin.net Systems/Network Administrator 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 Feb 7 6: 6: 5 2001 Delivered-To: freebsd-ports@freebsd.org Received: from smarthost1.mail.easynet.fr (smarthost1.mail.easynet.fr [212.180.1.68]) by hub.freebsd.org (Postfix) with ESMTP id 46C3837B491 for ; Wed, 7 Feb 2001 06:05:48 -0800 (PST) Received: from smtp1.mail.easynet.fr (slb-1-sippriv.mail.easynet.fr [10.0.1.57]) by smarthost1.mail.easynet.fr (Postfix) with ESMTP id 9158FB739 for ; Wed, 7 Feb 2001 15:05:46 +0100 (CET) Received: from pp (unknown [195.114.70.2]) by smtp1.mail.easynet.fr (Postfix) with SMTP id 269E2B6B0 for ; Wed, 7 Feb 2001 15:05:42 +0100 (CET) Message-ID: <01f001c0910f$1755a680$024672c3@moveyourdesk.com> From: "Eric Poiret" To: Subject: FreeBSD Port: cclient-4.8_1 Date: Wed, 7 Feb 2001 15:05:49 +0100 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 Hello. In port cclient-4.8_1, imap2000b.tar.Z is not anymore on FTP servers. It has been replaced by imap2000c.tar.Z. Patches applying fails on this new version. Thanks. Eric Poiret To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 6:17:17 2001 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (pool57-tch-1.Sofia.0rbitel.net [212.95.170.57]) by hub.freebsd.org (Postfix) with SMTP id 763B537B684 for ; Wed, 7 Feb 2001 06:16:58 -0800 (PST) Received: (qmail 15713 invoked by uid 1000); 7 Feb 2001 14:15:17 -0000 Date: Wed, 7 Feb 2001 16:15:17 +0200 From: Peter Pentchev To: Eric Poiret Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: cclient-4.8_1 Message-ID: <20010207161517.L487@ringworld.oblivion.bg> Mail-Followup-To: Eric Poiret , ports@FreeBSD.org References: <01f001c0910f$1755a680$024672c3@moveyourdesk.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <01f001c0910f$1755a680$024672c3@moveyourdesk.com>; from eric@moveyourdesk.com on Wed, Feb 07, 2001 at 03:05:49PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 03:05:49PM +0100, Eric Poiret wrote: > Hello. > > In port cclient-4.8_1, imap2000b.tar.Z is not anymore on FTP servers. It has > been replaced by imap2000c.tar.Z. > Patches applying fails on this new version. If you are really using the latest port, the 'SUBDIR= . old' line makes the port makefiles search the old/ directory, too, when you do 'make fetch'. I just checked, and imap-2000b.tar.Z is in the old/ subdir. Or were you trying to fetch the file manually, not using the 'make fetch' target? Why? 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 Wed Feb 7 7: 0:55 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mydomain.com (unknown [200.46.27.34]) by hub.freebsd.org (Postfix) with ESMTP id 51CDC37B401; Wed, 7 Feb 2001 07:00:28 -0800 (PST) Date: Wed, 07 Feb 2001 09:46:19 -0500 From: news@theoffshorecentre.com To: Subscribers@FreeBSD.ORG Subject: INSIDE THE OFFSHORE CENTRE Message-Id: <20010207150028.51CDC37B401@hub.freebsd.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org INSIDE THE OFFSHORE CENTRE.COM _____________________________________________________ Dear Investor, As the New Year begins, theoffshorecentre.com is making it even easier for you to stay informed on matters dealing with asset protection and taxation. You can now choose from a multitude of topics that provide you with the best offshore news and features. You can also subscribe to FREE in-depth E-wires and newsletters that are sent directly to your in-box. And, if you need to talk to someone in a hurry: FREE 30-minute consultations with offshore specialists are available! ------ OFFSHORE FEATURES ------ 1. What's ahead for the offshore industry in 2001? 2. Learn which asset protection plans make the grade 3. Critique the changes in taxation laws and what's ahead for the New Year 4. Make an impressive offshore on-line discovery 5. Need a new financial twist in the New Year? 6. Help us plan a new section 7. Listen to an interview with Marc M. Harris, the offshore guru, as Business Week calls him ------ 1. What's ahead for the offshore industry in 2001? ------ Get the offshore perspective on asset protection and global taxation for 2001. Only on theoffshorecentre.com, you can explore our interactive news and articles, ranging from the disconcerting OECD regulations to global privacy matters concerning expatriates. Visit: http://www.theoffshorecentre.com/offshore/News/ ------- 2. Learn which asset protection plans make the grade ------ Find out what the editors of theoffshorecentre.com and others think about the current strategies being advertised and how to choose one that is in line with your financial goals. An A-to-Z list of the best articles, from offshore brokerages to global tax havens and their benefits. Visit: http://www.theoffshorecentre.com/offshore/secciones/Asset_Protection/ ------ 3. Critique the changes in taxation laws and what's ahead for the New Year ------ Our offshore forums are a great place for critics (or proponents) to argue about the recent changes in tax laws and how the OECD is affecting the offshore industry. Discuss your own views on which tax havens you believe will be left standing after the dust has cleared. Visit: http://www.theoffshorecentre.com/ ------- 4. Make an impressive offshore on-line discovery ------- In our sidebars, you will learn about other websites that will help you learn the latest and most innovative offshore services and products: like the new online HOTrade offshore brokerage service or residency programs like Oro Verde in Costa Rica. Look through our directories and find a milieu of sites that could help you in your quest for financial freedom. Visit: http://www.theoffshorecentre.com/ ------ 5. Need a new financial twist in the New Year? ------ Check out the free offshore evaluator! It's the easiest way to create the best plans for your needs by letting those in the know explore the best opportunities for you. Plus, you are entitled to a FREE 30-minute consultation with an offshore specialist that will talk you through the best strategies suited to your personal situation. Visit: http://www.theoffshorecentre.com/infoguides/evaluator.asp ------ 6. Help us plan a new section ------ We are considering launching a new area of the site devoted especially to those of you who have an interesting story to tell about your experiences with taxation, privacy abuse and offshore investing, and we're interested in your thoughts. Help us develop this section by sending us, anonymously, your "close encounters" and views. Email us at: portal@marc-harris.com ------ 7. Listen to Marc M. Harris, the offshore guru, as Business Week calls him ------ The digital era has certain impersonality, so we're trying hard to bring the human aspect into the picture. Hence, we have interviewed Marc M. Harris on his thoughts regarding the offshore culture and expatriate life in Panama. This audio interview reveals why this man is at the cutting edge of the offshore industry. Visit: http://www.theoffshorecentre.com/ ------ E-ZINES & NEWSLETTERS ------ Everyday, you will receive the e-zine of your choice, DAILY EDITORIAL or HARRIS WIRE. These e-zines bring you a wealth of analysis and information about offshore investing, including a look at new asset protection strategies and privacy issues affecting the major global financial events today. On Friday, the HARRIS WIRE plugs you into the latest Q&A on offshore with personal questions sent in by our readers. (You'll also get the latest updates to tax laws and tax havens, with guides to the best of them.) Bi-weekly, THE ANALYSIS NEWSLETTER offers you a jump on specialized, in-depth articles covering the entire offshore spectrum, plus a look at additional topics, such as offshore insurance, business re-invoicing and expatriate living. It will also provide you with a preview of what is happening across the globe in its segmented country/continent modules. Make your new e-mail subscriptions here: Visit: http://www.theoffshorecentre.com/ Thanks for your time. We hope you'll make a point of visiting us at theoffshorecentre.com today and every day. Sincerely, Mari Boyd Editor The Offshore Centre.com P.S. If you have a friend or colleague who might be interested, feel free to forward this e-mail. HOW TO UNSUBSCRIBE ----------------------------------------------------------- To unsubscribe from future mailings, visit: Visit: http://www.theoffshorecentre.com/contactus.htm Suggestions and feedback are welcome at: Visit: http://www.theoffshorecentre.com/contactus.htm PLEASE DO NOT RESPOND TO THIS EMAIL DIRECTLY. THANK YOU. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 7:18: 7 2001 Delivered-To: freebsd-ports@freebsd.org Received: from snark.ptc.spbu.ru (snark.ptc.spbu.ru [195.19.225.131]) by hub.freebsd.org (Postfix) with ESMTP id AF5BA37B401 for ; Wed, 7 Feb 2001 07:17:42 -0800 (PST) Received: (from uwe@localhost) by snark.ptc.spbu.ru (8.8.8+Sun/8.8.8) id SAA02284 for ports@FreeBSD.ORG; Wed, 7 Feb 2001 18:17:32 +0300 (MSK) Date: Wed, 7 Feb 2001 18:17:32 +0300 From: "Valeriy E. Ushakov" To: ports@FreeBSD.ORG Subject: Re: XFree86-4 and /etc Message-ID: <20010207181732.A2232@snark.ptc.spbu.ru> Mail-Followup-To: ports@FreeBSD.ORG References: <200102062303.f16N3Vr03460@freefall.freebsd.org> <200102070249.f172nP434107@freefall.freebsd.org> <20010207162402.A2074@snark.ptc.spbu.ru> <20010207073604.A16642@peorth.iteration.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.3i In-Reply-To: <20010207073604.A16642@peorth.iteration.net>; from "Michael C . Wu" on Wed, Feb 07, 2001 at 07:36:04 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 07:36:04 -0600, Michael C . Wu wrote: > | XFree is influenced by Linux too heavily, and we all know that Linux > | is only a "Unix-like" OS ;-), so I wouldn't trust their ideas of how > | things should be laid out in real Unix (whatever Rev. Don Kool says :). > > We try to not use discriminating unjustified arguments like > "Linux sucks" in technical discussions. :) Well, mea culpa. Few friends of mine hack Linux kernel and we exchange frienly jokes all the time. Sometimes I just forgot that internal jokes like that may spark a flame out there... Sorry. > I really do not see the validity of raising an issue that has > been there since XFree86 3.*. Was it? I don't remember XFree86 3.x bundle *installing* stuff in /etc. > There is no need to raise an unnecessary bikeshed. > "Let's move /etc/X11 to /usr/local" I'm *not* proposing that. This is not about personal preferences. What I complain about is that prefix is not respected. Having 1.5M *installed* in /etc (including a copy of xkbcomp and few other binaries) without any good reason is worrisome. SY, Uwe -- uwe@ptc.spbu.ru | Zu Grunde kommen http://www.ptc.spbu.ru/~uwe/ | Ist zu Grunde gehen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 7:33:15 2001 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by hub.freebsd.org (Postfix) with ESMTP id 07CFA37B491; Wed, 7 Feb 2001 07:32:57 -0800 (PST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 31B172E440; Wed, 7 Feb 2001 10:32:56 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id f17FWuB95491; Wed, 7 Feb 2001 10:32:56 -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: <14977.27303.940214.219475@onceler.kciLink.com> Date: Wed, 7 Feb 2001 10:32:55 -0500 To: freebsd-ports@freebsd.org Cc: freebsd-stable@FreeBSD.ORG Subject: Re: scripts in /usr/local/etc/rc.d depend on each other In-Reply-To: <3A80EEF6.1BC0B35A@fernuni-hagen.de> References: <3A80EEF6.1BC0B35A@fernuni-hagen.de> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "FH" == Fritz Heinrichmeyer writes: FH> Apache.sh starts with an a, so it is executed before pgsql.sh and FH> mysql.sh, but it may depend on the former scripts to be executed. FH> Rename it to q_apache.sh i.e. . I personally think that any port that installs an init script that alters the ldconfig path should prefix with 00 or some such, like 00-mysql-client.sh. I do this on my systems that use mod_perl inside apache since I almost always also use DBI with mysql in mod_perl. -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= 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 Wed Feb 7 8: 0:25 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D4AF837B4EC for ; Wed, 7 Feb 2001 08:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17G02Z71393; Wed, 7 Feb 2001 08:00:02 -0800 (PST) (envelope-from gnats) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 1F5DB37B401 for ; Wed, 7 Feb 2001 07:57:05 -0800 (PST) Received: (from jeh@localhost) by thehousleys.net (8.11.2/8.11.2) id f17Fv4l20582; Wed, 7 Feb 2001 10:57:04 -0500 (EST) (envelope-from jeh) Message-Id: <200102071557.f17Fv4l20582@thehousleys.net> Date: Wed, 7 Feb 2001 10:57:04 -0500 (EST) From: jeh@freebsd.org Reply-To: jeh@freebsd.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24924: Update databases/mysql323-client to run .sh eariler on boot Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24924 >Category: ports >Synopsis: Update databases/mysql323-client to run .sh eariler on boot >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 Feb 07 08:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: James E. Housley >Release: FreeBSD 4.2-STABLE i386 >Organization: The Housleys.net >Environment: >Description: During boot the files in /usr/local/etc/rc.d are run in alphabetical order. apache.sh will be run before mysql-client.sh. This causes problems if mod_php[34], mod_auth_mysql, or any other port that requires the mysql client .so to be found. Any port that runs ldconfig in its .sh file should be named such it runs before the rest of the scripts. >How-To-Repeat: >Fix: Index: mysql323-client/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/mysql323-client/Makefile,v retrieving revision 1.71 diff -u -r1.71 Makefile --- mysql323-client/Makefile 2001/01/25 00:44:32 1.71 +++ mysql323-client/Makefile 2001/02/07 15:52:48 @@ -6,7 +6,7 @@ # PORTNAME= ${MASTERPORTNAME:S/-server/-client/g} -PORTREVISION= 0 +PORTREVISION= 1 MASTERDIR= ${.CURDIR}/../mysql323-server COMMENT= ${PKGDIR}/pkg-comment.client Index: mysql323-server/Makefile =================================================================== RCS file: /home/ncvs/ports/databases/mysql323-server/Makefile,v retrieving revision 1.104 diff -u -r1.104 Makefile --- mysql323-server/Makefile 2001/01/25 01:03:09 1.104 +++ mysql323-server/Makefile 2001/02/07 15:52:48 @@ -129,8 +129,8 @@ MAKE_ENV= CLIENT_ONLY="${CLIENT_ONLY}" post-install: - @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/mysql-client.sh - @${CHMOD} 750 ${PREFIX}/etc/rc.d/mysql-client.sh + @${SED} "s|%%PREFIX%%|${PREFIX}|g" < ${FILESDIR}/mysql-client.sh > ${PREFIX}/etc/rc.d/00mysql-client.sh + @${CHMOD} 750 ${PREFIX}/etc/rc.d/00mysql-client.sh .endif Index: mysql323-server/pkg-plist.client =================================================================== RCS file: /home/ncvs/ports/databases/mysql323-server/pkg-plist.client,v retrieving revision 1.8 diff -u -r1.8 pkg-plist.client --- mysql323-server/pkg-plist.client 2001/01/21 15:40:34 1.8 +++ mysql323-server/pkg-plist.client 2001/02/07 15:52:48 @@ -4,7 +4,7 @@ bin/mysqlimport bin/mysqlshow bin/mysqltest -etc/rc.d/mysql-client.sh +etc/rc.d/00mysql-client.sh include/mysql/dbug.h include/mysql/errmsg.h include/mysql/m_ctype.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 Feb 7 8: 1: 9 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1639E37B503; Wed, 7 Feb 2001 08:00:53 -0800 (PST) Received: (from jeh@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17G0r471524; Wed, 7 Feb 2001 08:00:53 -0800 (PST) (envelope-from jeh) Date: Wed, 7 Feb 2001 08:00:53 -0800 (PST) From: Message-Id: <200102071600.f17G0r471524@freefall.freebsd.org> To: jeh@FreeBSD.org, freebsd-ports@FreeBSD.org, dirk@FreeBSD.org Subject: Re: ports/24924: Update databases/mysql323-client to run .sh eariler on boot Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update databases/mysql323-client to run .sh eariler on boot Responsible-Changed-From-To: freebsd-ports->dirk Responsible-Changed-By: jeh Responsible-Changed-When: Wed Feb 7 08:00:36 PST 2001 Responsible-Changed-Why: Over to MAINTAINER http://www.freebsd.org/cgi/query-pr.cgi?pr=24924 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 8:19:31 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 2E37837B401; Wed, 7 Feb 2001 08:19:00 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f17GH6g02123; Wed, 7 Feb 2001 18:17:13 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f17GH9m04295; Wed, 7 Feb 2001 18:17:09 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A8174FF.C79215AA@FreeBSD.org> Date: Wed, 07 Feb 2001 18:17:03 +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: Peter Pentchev Cc: Jordan Hubbard , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] References: <10197.981450491@winston.osd.bsdi.com> <3A7FC36A.1434D2CC@FreeBSD.org> <3A801D32.DE73F780@FreeBSD.org> <20010206180825.A406@ringworld.oblivion.bg> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Peter Pentchev wrote: > On Tue, Feb 06, 2001 at 05:50:10PM +0200, Maxim Sobolev wrote: > > Maxim Sobolev wrote: > > > > > Jordan Hubbard wrote: > > > > > > > > but was away from e-mail) ;). What do you think if I reimplement 'fuzzy' and > > > > > 'prefix' options from original proposal into `glob' and `regex' options? So > > > > > regex kidz would be able say "-x .*foo.*", while glob-lovers "-g *foo*". > > > > > > > > I love it. You could even make -g "implicit", e.g. I don't see any > > > > reason why "pkg_info emacs*" shouldn't just work, right? The only > > > > time you really need to pass a flag is to indicate a particular type > > > > of globbing, e.g. regex. > > > > > > Agreed. I already have globbing in place, so expect patches soon ;). > > > > Here it is. With this patch pkg_install treats any arguments as shell globs by > > default and as regexs with -x, so for example the following is equivalent: > > $ pkg_info foo\* > > $ pkg_info -x ^foo.\* > > > > Please let me know what do you think about those patches. > > > > -Maxim > > The patches look great! I'll test them in an hour or two.. Any further comments? > Just a minor comment: in the rexs_match() function, you compile > each pattern time and again, for each package. Not that it would > matter a lot (the actual performance bottleneck would be disk I/O, > I suppose), but it could fasten things a bit if you precompiled > all patterns into a regex_t array at the start. Yes, I'm considering it, but have not decided finally yet (code bloat vs. performance). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 8:42:47 2001 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 EDBBE37B491 for ; Wed, 7 Feb 2001 08:42:29 -0800 (PST) Received: from ade by hub.lovett.com with local (Exim 3.20 #1) id 14QXfk-0003A7-00; Wed, 07 Feb 2001 10:42:24 -0600 Date: Wed, 7 Feb 2001 10:42:24 -0600 From: Ade Lovett To: Kris Kennaway Cc: ports@FreeBSD.org Subject: Re: Needed: apache/httpd ports to use 'www' user Message-ID: <20010207104224.J6750@FreeBSD.org> References: <20010207014012.B22502@mollari.cthul.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010207014012.B22502@mollari.cthul.hu>; from kris@obsecurity.org on Wed, Feb 07, 2001 at 01:40:12AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 01:40:12AM -0800, Kris Kennaway wrote: > I've had discussions with Ade about this before, but don't know the > current status of the changes. Well, short of allocating a uid/gid and name for it, it will be a trivial matter for me to update the one singular apache port in my tree (see previous recent posts to -ports for more details). Addressing the 'www' user, so that both apache and zope (any others?) use it, should probably be done at the same time as the single apache port, so that we only go through a few days of breakage once. -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 Feb 7 9:20:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6204437B491 for ; Wed, 7 Feb 2001 09:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17HK1285903; Wed, 7 Feb 2001 09:20:01 -0800 (PST) (envelope-from gnats) Received: from katrien.skystream.nl (katrien.skystream.nl [195.7.130.55]) by hub.freebsd.org (Postfix) with ESMTP id 65A5837B491 for ; Wed, 7 Feb 2001 09:15:19 -0800 (PST) Received: from dyn.dailup.c227129231.isd.to (dyn.dailup.c227129231.isd.to [213.227.129.231]) by katrien.skystream.nl (8.11.1/8.11.0) with ESMTP id f17HD6q10333 for ; Wed, 7 Feb 2001 18:13:06 +0100 Received: (qmail 1908 invoked by uid 1000); 7 Feb 2001 16:32:52 -0000 Message-Id: <20010207163252.1907.qmail@mandark.attica.home> Date: 7 Feb 2001 16:32:52 -0000 From: "Andre Goeree" Reply-To: abgoeree@uwnet.nl To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24926: Addition of Mesa-3.4 to ports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24926 >Category: ports >Synopsis: Addition of Mesa-3.4 to ports >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 Feb 07 09:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Andre Goeree >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD 4.2-STABLE #1: Sun Feb 4 09:58:31 CET 2001 >Description: I would like to see that Mesa-3.4 would be added to the ports tree. However, the Mesa-3.4 distrib is broken. I have submitted a PR to mesa3d.org (bug_id 131419) about this. In the meanwhile i have temporary fix which makes it possible to configure, compile and run mesa-3.4. I have successfully ran "gmake check" to see if things where ok. I believe everything works as it should be:) The fix is included with this message. >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 Wed Feb 7 9:40:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A7F137B503 for ; Wed, 7 Feb 2001 09:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17He4o88074; Wed, 7 Feb 2001 09:40:04 -0800 (PST) (envelope-from gnats) Date: Wed, 7 Feb 2001 09:40:04 -0800 (PST) Message-Id: <200102071740.f17He4o88074@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Steven Davidson Subject: Re: ports/24049: SO5.2 fails to install on FreeBSD 4.2-RELEASE Reply-To: Steven Davidson Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24049; it has been noted by GNATS. From: Steven Davidson To: freebsd-gnats-submit@FreeBSD.org, dkwiebe@hagenhomes.com, mb@imp.ch Cc: Subject: Re: ports/24049: SO5.2 fails to install on FreeBSD 4.2-RELEASE Date: Wed, 07 Feb 2001 09:47:30 -0800 FreeBSD 4.2-RELEASE It appears that others are not having problems. Why does Staroffice install for everyone but me? Here are the results after a fresh 4.2-RELEASE install: % setenv CD_MOUNTPT /cdrom % make -DWITH_CDROM ===> staroffice-5.2 depends on file: /compat/linux/lib/libc.so.6 - found ===> Extracting for staroffice-5.2 >> Checksum OK for staroffice52/soa-5_2-ga-bin-linux-en.bin. >> Checksum OK for staroffice52/so-5_2-ga-bin-linux-en.bin. glibc version: 2.1.2 extracting files please wait... ===> Patching for staroffice-5.2 ===> Configuring for staroffice-5.2 So far, so good. Now, % make -DWITH_CDROM 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. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 9:42:56 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (pop3.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 1136B37B491; Wed, 7 Feb 2001 09:42:26 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f17Hg6g03628; Wed, 7 Feb 2001 19:42:13 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f17HgBm04498; Wed, 7 Feb 2001 19:42:11 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A8188ED.FC2A6241@FreeBSD.org> Date: Wed, 07 Feb 2001 19:42:06 +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: FUJISHIMA Satsuki Cc: John Polstra , ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: Strange problems with dynamic linking of libGL.so.1 from XFree86-4.0.2_5 References: <3A6C3D19.E1F56291@FreeBSD.org> <3A6FE52B.AC9970C2@FreeBSD.org> <200101251842.f0PIgTL32394@vashon.polstra.com> <3A70756F.D8A7ED75@FreeBSD.org> <200101251903.f0PJ3qF32488@vashon.polstra.com> <3A755D84.266A80E7@FreeBSD.org> <86vgqn7vj4.wl@cheerful.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org FUJISHIMA Satsuki wrote: > As libc_r does not have libc feature now, there's no reason to avoid > linking -lc_r against shared libraries, I think. > > Index: contrib/gcc.295/config/freebsd.h > =================================================================== > RCS file: /home/ncvs/src/contrib/gcc.295/config/freebsd.h,v > retrieving revision 1.31 > diff -u -r1.31 freebsd.h > --- contrib/gcc.295/config/freebsd.h 2001/01/25 18:57:13 1.31 > +++ contrib/gcc.295/config/freebsd.h 2001/02/06 08:54:23 > @@ -76,10 +76,8 @@ > (like the default, except no -lg, and no -p). */ > #undef LIB_SPEC > #define LIB_SPEC "\ > - %{!shared: \ > - %{!pg: %{pthread:-lc_r} -lc} \ > - %{pg: %{pthread:-lc_r_p} -lc_p} \ > - }" > + %{!pg: %{pthread:-lc_r} %{!shared:-lc}} \ > + %{pg: %{pthread:-lc_r_p} %{!shared:-lc_p}}" > > > /************************[ Target stuff ]***********************************/ David, John what do you think about this patch? -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 9:47:55 2001 Delivered-To: freebsd-ports@freebsd.org Received: from rapier.smartspace.co.za (rapier.smartspace.co.za [66.8.25.34]) by hub.freebsd.org (Postfix) with SMTP id 470A337B491 for ; Wed, 7 Feb 2001 09:47:32 -0800 (PST) Received: (qmail 70692 invoked by uid 1001); 7 Feb 2001 17:47:14 -0000 Date: Wed, 7 Feb 2001 19:47:14 +0200 From: Neil Blakey-Milner To: Ade Lovett Cc: Kris Kennaway , ports@FreeBSD.org Subject: Re: Needed: apache/httpd ports to use 'www' user Message-ID: <20010207194713.A70483@rapier.smartspace.co.za> References: <20010207014012.B22502@mollari.cthul.hu> <20010207104224.J6750@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: <20010207104224.J6750@FreeBSD.org>; from ade@FreeBSD.org on Wed, Feb 07, 2001 at 10:42:24AM -0600 Organization: Building Intelligence X-Operating-System: FreeBSD 4.2-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed 2001-02-07 (10:42), Ade Lovett wrote: > On Wed, Feb 07, 2001 at 01:40:12AM -0800, Kris Kennaway wrote: > > I've had discussions with Ade about this before, but don't know the > > current status of the changes. > > Well, short of allocating a uid/gid and name for it, it will be > a trivial matter for me to update the one singular apache port in > my tree (see previous recent posts to -ports for more details). > > Addressing the 'www' user, so that both apache and zope (any others?) > use it, should probably be done at the same time as the single > apache port, so that we only go through a few days of breakage once. Er, no, that's exactly what you don't want. You want one user for apache (apache or httpd), and one for zope (zope), and one for squid (squid), &c. We also have any number of ports that install users by themselves. It only really makes a problem when ports require a specific uid, not username. (number, not name) Neil -- Neil Blakey-Milner nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 10: 0:29 2001 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 7BA2337B699 for ; Wed, 7 Feb 2001 10:00:11 -0800 (PST) Received: (from fenner@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17I0BU90444 for ports@freebsd.org; Wed, 7 Feb 2001 10:00:11 -0800 (PST) (envelope-from fenner) Date: Wed, 7 Feb 2001 10:00:11 -0800 (PST) From: Message-Id: <200102071800.f17I0BU90444@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 Wed Feb 7 10:23:36 2001 Delivered-To: freebsd-ports@freebsd.org Received: from m08.alpha-net.ne.jp (m08.alpha-net.ne.jp [210.229.64.38]) by hub.freebsd.org (Postfix) with ESMTP id 0197737B401 for ; Wed, 7 Feb 2001 10:23:19 -0800 (PST) Received: from kyoto-tc012-p157.alpha-net.ne.jp (kyoto-tc012-p157.alpha-net.ne.jp [210.237.118.201]) by m08.alpha-net.ne.jp (8.9.3/3.7W) with ESMTP id DAA12432; Thu, 8 Feb 2001 03:23:01 +0900 (JST) Received: from souffle.bogus-local.net (localhost [127.0.0.1]) by kyoto-tc012-p157.alpha-net.ne.jp (Postfix) with ESMTP id DDAEF16B3C; Thu, 8 Feb 2001 03:23:04 +0900 (JST) Date: Thu, 08 Feb 2001 03:23:04 +0900 Message-ID: <86elxaqrnb.wl@cheerful.com> From: FUJISHIMA Satsuki To: Will Andrews Cc: John Indra , freebsd-ports@FreeBSD.ORG Subject: Re: KDE2 port is broken In-Reply-To: <20010207073622.H3206@london.physics.purdue.edu> References: <20010207113429.B7903@office.naver.co.id> <20010207073622.H3206@london.physics.purdue.edu> User-Agent: Wanderlust/2.4.0 (Rio) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.1 (AOI) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Wed, 7 Feb 2001 07:36:22 -0500, Will Andrews wrote: > > On Wed, Feb 07, 2001 at 11:34:29AM +0700, John Indra wrote: > > -CURRENT world, kernel, and ports tree can't build x11/kde2 port. Something > > is broken. > > Please submit a real bug report. BTW, it's QT 2.2.4, not 2.4. kdesupport2 is actually broken on -CURRENT with *XFree86-4* due to -pthread issue. This is not a KDE problem but an OS problem. Workaround is quite handy(LIBS+=-pthread), but it is not a real solusion. Please look at my previous post to this list. http://docs.freebsd.org/cgi/getmsg.cgi?fetch=412414+0+current/freebsd-ports -- FUJISHIMA Satsuki To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 10:30:51 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A8BCC37B4EC for ; Wed, 7 Feb 2001 10:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17IU1P95605; Wed, 7 Feb 2001 10:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5D26D37B491 for ; Wed, 7 Feb 2001 10:20:14 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17IKEa94410; Wed, 7 Feb 2001 10:20:14 -0800 (PST) (envelope-from nobody) Message-Id: <200102071820.f17IKEa94410@freefall.freebsd.org> Date: Wed, 7 Feb 2001 10:20:14 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24927: Update port: games/gnomebreakout to 0.5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24927 >Category: ports >Synopsis: Update port: games/gnomebreakout to 0.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: Wed Feb 07 10:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 0.5 - Add WWW: line >How-To-Repeat: >Fix: diff -urN /usr/ports/games/gnomebreakout/Makefile games/gnomebreakout/Makefile --- /usr/ports/games/gnomebreakout/Makefile Tue Dec 12 22:51:51 2000 +++ games/gnomebreakout/Makefile Tue Feb 6 21:22:01 2001 @@ -6,9 +6,9 @@ # PORTNAME= gnomebreakout -PORTVERSION= 0.4 +PORTVERSION= 0.5 CATEGORIES= games gnome -MASTER_SITES= http://linux.tucows.com/files/gnome/entertain/ +MASTER_SITES= http://www.senet.com.au/~alcaron/ DISTNAME= gnome-breakout-${PORTVERSION} MAINTAINER= ports@FreeBSD.org diff -urN /usr/ports/games/gnomebreakout/distinfo games/gnomebreakout/distinfo --- /usr/ports/games/gnomebreakout/distinfo Tue Sep 12 23:59:20 2000 +++ games/gnomebreakout/distinfo Tue Feb 6 21:24:07 2001 @@ -1 +1 @@ -MD5 (gnome-breakout-0.4.tar.gz) = 0e6c125315dd8524a2518fa7bfd4849c +MD5 (gnome-breakout-0.5.tar.gz) = de25b219660af74df9a68d7843d2226a diff -urN /usr/ports/games/gnomebreakout/files/patch-aa games/gnomebreakout/files/patch-aa --- /usr/ports/games/gnomebreakout/files/patch-aa Tue Sep 12 23:59:20 2000 +++ games/gnomebreakout/files/patch-aa Tue Feb 6 21:56:56 2001 @@ -1,13 +1,14 @@ ---- Makefile.in.orig Tue Apr 18 19:05:53 2000 -+++ Makefile.in Sat Sep 2 04:04:58 2000 -@@ -422,8 +422,8 @@ +--- Makefile.in.orig Tue Feb 6 21:25:36 2001 ++++ Makefile.in Tue Feb 6 21:27:15 2001 +@@ -446,9 +446,9 @@ install-data-local: -$(mkinstalldirs) $(DESTDIR)$(scoredir) -touch $(DESTDIR)$(scoredir)/gnome-breakout.scores - -chown games.games $(DESTDIR)$(scoredir)/gnome-breakout.scores -- -chmod 0644 $(DESTDIR)$(scoredir)/gnome-breakout.scores -+ -chown root.games $(DESTDIR)$(scoredir)/gnome-breakout.scores -+ -chmod 0664 $(DESTDIR)$(scoredir)/gnome-breakout.scores - -chgrp games $(DESTDIR)$(bindir)/gnome-breakout && chmod 2111 $(DESTDIR)$(bindir)/gnome-breakout ++ -chown root:games $(DESTDIR)$(scoredir)/gnome-breakout.scores + -chmod 0664 $(DESTDIR)$(scoredir)/gnome-breakout.scores +- -chgrp games $(DESTDIR)$(bindir)/gnome-breakout && chmod 2755 $(DESTDIR)$(bindir)/gnome-breakout ++ -chown root:games $(DESTDIR)$(bindir)/gnome-breakout && chmod g+s $(DESTDIR)$(bindir)/gnome-breakout # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. diff -urN /usr/ports/games/gnomebreakout/pkg-descr games/gnomebreakout/pkg-descr --- /usr/ports/games/gnomebreakout/pkg-descr Tue Sep 12 23:59:20 2000 +++ games/gnomebreakout/pkg-descr Tue Feb 6 21:21:29 2001 @@ -1,3 +1,5 @@ GNOME Breakout is a clone of the classic arcade game Breakout, written for GNOME. Still in development, but very playable, and very addictive. + +WWW: http://www.senet.com.au/~alcaron/software.html diff -urN /usr/ports/games/gnomebreakout/pkg-plist games/gnomebreakout/pkg-plist --- /usr/ports/games/gnomebreakout/pkg-plist Tue Sep 12 23:59:20 2000 +++ games/gnomebreakout/pkg-plist Tue Feb 6 21:56:02 2001 @@ -1,53 +1,62 @@ bin/gnome-breakout share/gnome/apps/Games/gnome-breakout.desktop share/gnome/games/gnome-breakout.scores -share/gnome/pixmaps/gnome-breakout/ball.default.0.png -share/gnome/pixmaps/gnome-breakout/bat.default.0.png -share/gnome/pixmaps/gnome-breakout/bat.laser.0.png -share/gnome/pixmaps/gnome-breakout/bat.wide.0.png -share/gnome/pixmaps/gnome-breakout/block.default.0.png -share/gnome/pixmaps/gnome-breakout/block.default.die.0.png -share/gnome/pixmaps/gnome-breakout/block.default.die.1.png -share/gnome/pixmaps/gnome-breakout/block.default.die.2.png -share/gnome/pixmaps/gnome-breakout/block.default.die.3.png -share/gnome/pixmaps/gnome-breakout/block.default.die.4.png -share/gnome/pixmaps/gnome-breakout/block.default.die.5.png -share/gnome/pixmaps/gnome-breakout/block.default.die.6.png -share/gnome/pixmaps/gnome-breakout/block.default.die.7.png -share/gnome/pixmaps/gnome-breakout/block.invincible.0.png -share/gnome/pixmaps/gnome-breakout/block.strong.1.0.png -share/gnome/pixmaps/gnome-breakout/block.strong.1.die.0.png -share/gnome/pixmaps/gnome-breakout/block.strong.1.die.1.png -share/gnome/pixmaps/gnome-breakout/block.strong.1.die.2.png -share/gnome/pixmaps/gnome-breakout/block.strong.1.die.3.png -share/gnome/pixmaps/gnome-breakout/block.strong.1.die.4.png -share/gnome/pixmaps/gnome-breakout/block.strong.1.die.5.png -share/gnome/pixmaps/gnome-breakout/block.strong.1.die.6.png -share/gnome/pixmaps/gnome-breakout/block.strong.2.0.png -share/gnome/pixmaps/gnome-breakout/block.strong.2.die.0.png -share/gnome/pixmaps/gnome-breakout/block.strong.2.die.1.png -share/gnome/pixmaps/gnome-breakout/block.strong.2.die.2.png -share/gnome/pixmaps/gnome-breakout/block.strong.2.die.3.png -share/gnome/pixmaps/gnome-breakout/block.strong.2.die.4.png -share/gnome/pixmaps/gnome-breakout/block.strong.2.die.5.png -share/gnome/pixmaps/gnome-breakout/block.strong.2.die.6.png -share/gnome/pixmaps/gnome-breakout/block.strong.3.0.png -share/gnome/pixmaps/gnome-breakout/block.strong.3.die.0.png -share/gnome/pixmaps/gnome-breakout/block.strong.3.die.1.png -share/gnome/pixmaps/gnome-breakout/block.strong.3.die.2.png -share/gnome/pixmaps/gnome-breakout/block.strong.3.die.3.png -share/gnome/pixmaps/gnome-breakout/block.strong.3.die.4.png -share/gnome/pixmaps/gnome-breakout/block.strong.3.die.5.png -share/gnome/pixmaps/gnome-breakout/block.strong.3.die.6.png -share/gnome/pixmaps/gnome-breakout/laser.0.png -share/gnome/pixmaps/gnome-breakout/powerup.laser.0.png -share/gnome/pixmaps/gnome-breakout/powerup.newball.0.png -share/gnome/pixmaps/gnome-breakout/powerup.newlife.0.png -share/gnome/pixmaps/gnome-breakout/powerup.nextlevel.0.png -share/gnome/pixmaps/gnome-breakout/powerup.score500.0.png -share/gnome/pixmaps/gnome-breakout/powerup.slow.0.png -share/gnome/pixmaps/gnome-breakout/powerup.widebat.0.png -share/gnome/pixmaps/gnome-breakout/title.png +share/gnome/gnome-breakout/levels/alcaron.gbl +share/gnome/gnome-breakout/levels/mdutour.gbl +share/gnome/gnome-breakout/levels/mmack.gbl +share/gnome/gnome-breakout/pixmaps/ball.default.0.png +share/gnome/gnome-breakout/pixmaps/bat.default.0.png +share/gnome/gnome-breakout/pixmaps/bat.laser.0.png +share/gnome/gnome-breakout/pixmaps/bat.wide.0.png +share/gnome/gnome-breakout/pixmaps/block.default.0.png +share/gnome/gnome-breakout/pixmaps/block.default.die.0.png +share/gnome/gnome-breakout/pixmaps/block.default.die.1.png +share/gnome/gnome-breakout/pixmaps/block.default.die.2.png +share/gnome/gnome-breakout/pixmaps/block.default.die.3.png +share/gnome/gnome-breakout/pixmaps/block.default.die.4.png +share/gnome/gnome-breakout/pixmaps/block.default.die.5.png +share/gnome/gnome-breakout/pixmaps/block.default.die.6.png +share/gnome/gnome-breakout/pixmaps/block.default.die.7.png +share/gnome/gnome-breakout/pixmaps/block.explode.0.png +share/gnome/gnome-breakout/pixmaps/block.explode.die.0.png +share/gnome/gnome-breakout/pixmaps/block.invincible.0.png +share/gnome/gnome-breakout/pixmaps/block.strong.1.0.png +share/gnome/gnome-breakout/pixmaps/block.strong.1.die.0.png +share/gnome/gnome-breakout/pixmaps/block.strong.1.die.1.png +share/gnome/gnome-breakout/pixmaps/block.strong.1.die.2.png +share/gnome/gnome-breakout/pixmaps/block.strong.1.die.3.png +share/gnome/gnome-breakout/pixmaps/block.strong.1.die.4.png +share/gnome/gnome-breakout/pixmaps/block.strong.1.die.5.png +share/gnome/gnome-breakout/pixmaps/block.strong.1.die.6.png +share/gnome/gnome-breakout/pixmaps/block.strong.2.0.png +share/gnome/gnome-breakout/pixmaps/block.strong.2.die.0.png +share/gnome/gnome-breakout/pixmaps/block.strong.2.die.1.png +share/gnome/gnome-breakout/pixmaps/block.strong.2.die.2.png +share/gnome/gnome-breakout/pixmaps/block.strong.2.die.3.png +share/gnome/gnome-breakout/pixmaps/block.strong.2.die.4.png +share/gnome/gnome-breakout/pixmaps/block.strong.2.die.5.png +share/gnome/gnome-breakout/pixmaps/block.strong.2.die.6.png +share/gnome/gnome-breakout/pixmaps/block.strong.3.0.png +share/gnome/gnome-breakout/pixmaps/block.strong.3.die.0.png +share/gnome/gnome-breakout/pixmaps/block.strong.3.die.1.png +share/gnome/gnome-breakout/pixmaps/block.strong.3.die.2.png +share/gnome/gnome-breakout/pixmaps/block.strong.3.die.3.png +share/gnome/gnome-breakout/pixmaps/block.strong.3.die.4.png +share/gnome/gnome-breakout/pixmaps/block.strong.3.die.5.png +share/gnome/gnome-breakout/pixmaps/block.strong.3.die.6.png +share/gnome/gnome-breakout/pixmaps/laser.0.png +share/gnome/gnome-breakout/pixmaps/powerup.laser.0.png +share/gnome/gnome-breakout/pixmaps/powerup.newball.0.png +share/gnome/gnome-breakout/pixmaps/powerup.newlife.0.png +share/gnome/gnome-breakout/pixmaps/powerup.nextlevel.0.png +share/gnome/gnome-breakout/pixmaps/powerup.score500.0.png +share/gnome/gnome-breakout/pixmaps/powerup.slow.0.png +share/gnome/gnome-breakout/pixmaps/powerup.widebat.0.png +share/gnome/gnome-breakout/pixmaps/title.png +share/gnome/pixmaps/gnome-breakout.png +share/locale/de/LC_MESSAGES/gnome-breakout.mo share/locale/ru/LC_MESSAGES/gnome-breakout.mo share/locale/tr/LC_MESSAGES/gnome-breakout.mo -@dirrm share/gnome/pixmaps/gnome-breakout +@dirrm share/gnome/gnome-breakout/pixmaps +@dirrm share/gnome/gnome-breakout/levels +@dirrm share/gnome/gnome-breakout >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 Feb 7 10:30:54 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF47F37B684 for ; Wed, 7 Feb 2001 10:30:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17IU1V95617; Wed, 7 Feb 2001 10:30:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 63BDE37B401 for ; Wed, 7 Feb 2001 10:21:16 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17ILGi94520; Wed, 7 Feb 2001 10:21:16 -0800 (PST) (envelope-from nobody) Message-Id: <200102071821.f17ILGi94520@freefall.freebsd.org> Date: Wed, 7 Feb 2001 10:21:16 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24928: Update port: graphics/ImageMagick to 5.2.8 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24928 >Category: ports >Synopsis: Update port: graphics/ImageMagick to 5.2.8 >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 Feb 07 10:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 5.2.8 >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/ImageMagick/Makefile graphics/ImageMagick/Makefile --- /usr/ports/graphics/ImageMagick/Makefile Fri Jan 26 20:32:38 2001 +++ graphics/ImageMagick/Makefile Thu Feb 8 01:53:02 2001 @@ -6,16 +6,15 @@ # PORTNAME= ImageMagick -PORTVERSION= 5.2.7 -PORTREVISION= 2 +PORTVERSION= 5.2.8 CATEGORIES= graphics perl5 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_RINGSERVER} +MASTER_SITE_SUBDIR= graphics/ImageMagick MAINTAINER= jseger@FreeBSD.org @@ -23,18 +22,17 @@ df.1:${PORTSDIR}/graphics/hdf \ jbig.1:${PORTSDIR}/graphics/jbigkit \ jpeg.9:${PORTSDIR}/graphics/jpeg \ + lcms.1:${PORTSDIR}/graphics/lcms \ wmf.1:${PORTSDIR}/graphics/libwmf \ png.4:${PORTSDIR}/graphics/png \ tiff.4:${PORTSDIR}/graphics/tiff \ - freetype.6:${PORTSDIR}/print/freetype2 + freetype.6:${PORTSDIR}/print/freetype2 \ + xml2.5:${PORTSDIR}/textproc/libxml2 BUILD_DEPENDS= gs:${PORTSDIR}/print/ghostscript55 \ mpeg2decode:${PORTSDIR}/graphics/mpeg2codec \ picttoppm:${PORTSDIR}/graphics/netpbm \ fig2dev:${PORTSDIR}/print/transfig -RUN_DEPENDS= gs:${PORTSDIR}/print/ghostscript55 \ - mpeg2decode:${PORTSDIR}/graphics/mpeg2codec \ - picttoppm:${PORTSDIR}/graphics/netpbm \ - fig2dev:${PORTSDIR}/print/transfig +RUN_DEPENDS= ${BUILD_DEPENDS} USE_PERL5= yes USE_XLIB= yes @@ -44,15 +42,19 @@ LIBS="-L${LOCALBASE}/lib" CONFIGURE_ARGS= --enable-shared --without-modules \ --without-magick-plus-plus \ - --with-perl=${PERL5} --without-xml + --with-perl=${PERL5} INSTALLS_SHLIB= yes .if defined(PERL_THREADED) && ${PERL_THREADED} == "true" CONFIGURE_ARGS+= --with-threads +.else +CONFIGURE_ARGS+= --without-threads .endif .if defined(WITH_16BIT_PIXEL) CONFIGURE_ARGS+= --enable-16bit-pixel +.else +CONFIGURE_ARGS+= --disable-16bit-pixel .endif .if defined(HAVE_UNISYS_LICENSE) @@ -66,5 +68,11 @@ MAN5= quantize.5 MAN3PREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} + +pre-patch: +.for file in coders/svg.c coders/url.c magick/config.h.in + @${PERL} -pi -e 's|libxml/|libxml2/|g ; \ + s|HAVE_LIBXML_|HAVE_LIBXML2_|g' ${WRKSRC}/${file} +.endfor .include diff -urN /usr/ports/graphics/ImageMagick/distinfo graphics/ImageMagick/distinfo --- /usr/ports/graphics/ImageMagick/distinfo Fri Jan 26 20:32:48 2001 +++ graphics/ImageMagick/distinfo Tue Feb 6 05:33:41 2001 @@ -1 +1 @@ -MD5 (ImageMagick-5.2.7.tar.gz) = df997328774872982b0249f66bc7b8ff +MD5 (ImageMagick-5.2.8.tar.gz) = 134add938d6d54031a328101c368ab9b diff -urN /usr/ports/graphics/ImageMagick/files/patch-al graphics/ImageMagick/files/patch-al --- /usr/ports/graphics/ImageMagick/files/patch-al Thu Jan 11 14:19:46 2001 +++ graphics/ImageMagick/files/patch-al Thu Feb 1 03:42:21 2001 @@ -1,6 +1,6 @@ ---- configure.in.orig Fri Dec 1 02:14:22 2000 -+++ configure.in Tue Dec 5 02:43:13 2000 -@@ -471,10 +471,10 @@ +--- configure.in.orig Wed Jan 31 09:36:22 2001 ++++ configure.in Thu Feb 1 03:42:11 2001 +@@ -487,10 +487,10 @@ LIB_THREAD='' if test "$with_threads" != 'no' then @@ -14,3 +14,31 @@ LIBS="$LIB_THREAD $LIBS" CPPFLAGS="$DEF_THREAD $CPPFLAGS" fi +@@ -1021,8 +1021,8 @@ + AC_MSG_RESULT() + failed=0; + passed=0; +- AC_CHECK_HEADER(libxml/parser.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`) +- AC_CHECK_LIB(xml,xmlParseExternalEntity,passed=`expr $passed + 1`,failed=`expr $failed + 1`,) ++ AC_CHECK_HEADER(libxml2/parser.h,passed=`expr $passed + 1`,failed=`expr $failed + 1`) ++ AC_CHECK_LIB(xml2,xmlParseExternalEntity,passed=`expr $passed + 1`,failed=`expr $failed + 1`,) + AC_MSG_CHECKING(if XML package is complete) + if test $passed -gt 0 + then +@@ -1031,14 +1031,14 @@ + AC_MSG_RESULT(no -- some components failed test) + have_xml='no (failed tests)' + else +- LIB_XML='-lxml' ++ LIB_XML='-lxml2' + LIBS="$LIB_XML $LIBS" + AC_DEFINE(HasXML,,Define if you have XML library) + AC_MSG_RESULT(yes) + have_xml='yes' + + # check which xml error header file to use +- AC_CHECK_HEADERS(libxml/xml-error.h libxml/xmlerror.h) ++ AC_CHECK_HEADERS(libxml2/xml-error.h libxml2/xmlerror.h) + fi + else + AC_MSG_RESULT(no) diff -urN /usr/ports/graphics/ImageMagick/pkg-plist graphics/ImageMagick/pkg-plist --- /usr/ports/graphics/ImageMagick/pkg-plist Thu Jan 11 20:42:25 2001 +++ graphics/ImageMagick/pkg-plist Thu Feb 8 01:51:05 2001 @@ -40,8 +40,106 @@ lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Image/Magick/Magick.bs lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Image/Magick/Magick.so lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Image/Magick/autosplit.ix +share/ImageMagick/Copyright.txt +share/ImageMagick/ImageMagick.html +share/ImageMagick/QuickStart.txt share/ImageMagick/delegates.mgk +share/ImageMagick/images/authentica.jpg +share/ImageMagick/images/ball.png +share/ImageMagick/images/corbis.png +share/ImageMagick/images/digital-applications.png +share/ImageMagick/images/examples.jpg +share/ImageMagick/images/home.png +share/ImageMagick/images/logo.png +share/ImageMagick/images/magick.png +share/ImageMagick/images/magick_small.png +share/ImageMagick/images/mail.png +share/ImageMagick/images/right_triangle.png +share/ImageMagick/images/right_triangle_option.png +share/ImageMagick/images/screen.png share/ImageMagick/magic.mgk +share/ImageMagick/www/Changelog.html +share/ImageMagick/www/Magick.html +share/ImageMagick/www/animate.html +share/ImageMagick/www/api/animate.html +share/ImageMagick/www/api/annotate.html +share/ImageMagick/www/api/attributes.html +share/ImageMagick/www/api/blob.html +share/ImageMagick/www/api/cache.html +share/ImageMagick/www/api/cache_view.html +share/ImageMagick/www/api/colors.html +share/ImageMagick/www/api/compress.html +share/ImageMagick/www/api/constitute.html +share/ImageMagick/www/api/decorate.html +share/ImageMagick/www/api/delegates.html +share/ImageMagick/www/api/display.html +share/ImageMagick/www/api/draw.html +share/ImageMagick/www/api/effects.html +share/ImageMagick/www/api/enhance.html +share/ImageMagick/www/api/error.html +share/ImageMagick/www/api/gems.html +share/ImageMagick/www/api/image.html +share/ImageMagick/www/api/mac.html +share/ImageMagick/www/api/magick.html +share/ImageMagick/www/api/memory.html +share/ImageMagick/www/api/monitor.html +share/ImageMagick/www/api/montage.html +share/ImageMagick/www/api/nt.html +share/ImageMagick/www/api/pixel_cache.html +share/ImageMagick/www/api/pixels.html +share/ImageMagick/www/api/quantize.html +share/ImageMagick/www/api/segment.html +share/ImageMagick/www/api/shear.html +share/ImageMagick/www/api/signature.html +share/ImageMagick/www/api/stream.html +share/ImageMagick/www/api/transform.html +share/ImageMagick/www/api/types/AnnotateInfo.html +share/ImageMagick/www/api/types/ChromaticityInfo.html +share/ImageMagick/www/api/types/ColorPacket.html +share/ImageMagick/www/api/types/DrawInfo.html +share/ImageMagick/www/api/types/Enumerations.html +share/ImageMagick/www/api/types/ExceptionInfo.html +share/ImageMagick/www/api/types/Image.html +share/ImageMagick/www/api/types/ImageAttribute.html +share/ImageMagick/www/api/types/ImageInfo.html +share/ImageMagick/www/api/types/MagickInfo.html +share/ImageMagick/www/api/types/PixelPacket.html +share/ImageMagick/www/api/types/PointInfo.html +share/ImageMagick/www/api/types/ProfileInfo.html +share/ImageMagick/www/api/types/RectangleInfo.html +share/ImageMagick/www/api/utility.html +share/ImageMagick/www/api/vms.html +share/ImageMagick/www/api/widget.html +share/ImageMagick/www/api/xwindows.html +share/ImageMagick/www/api/zoom.html +share/ImageMagick/www/api.html +share/ImageMagick/www/archives.html +share/ImageMagick/www/cd.html +share/ImageMagick/www/color.html +share/ImageMagick/www/combine.html +share/ImageMagick/www/convert.html +share/ImageMagick/www/cvs.html +share/ImageMagick/www/display.html +share/ImageMagick/www/formats.html +share/ImageMagick/www/help.html +share/ImageMagick/www/identify.html +share/ImageMagick/www/import.html +share/ImageMagick/www/install.html +share/ImageMagick/www/magick-list.html +share/ImageMagick/www/miff.html +share/ImageMagick/www/mogrify.html +share/ImageMagick/www/montage.html +share/ImageMagick/www/new.html +share/ImageMagick/www/perl.html +share/ImageMagick/www/quantize.html +share/ImageMagick/www/smile.c +share/ImageMagick/www/sponsor.html +share/ImageMagick/www/tools.html +share/ImageMagick/www/xtp.html +@dirrm share/ImageMagick/www/api/types +@dirrm share/ImageMagick/www/api +@dirrm share/ImageMagick/www +@dirrm share/ImageMagick/images @dirrm share/ImageMagick @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Image/Magick @dirrm lib/perl5/site_perl/%%PERL_VER%%/%%PERL_ARCH%%/auto/Image >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 Feb 7 10:31:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4F15B37B699 for ; Wed, 7 Feb 2001 10:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17IU2q95643; Wed, 7 Feb 2001 10:30:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAEED37B491 for ; Wed, 7 Feb 2001 10:22:08 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17IM8J94582; Wed, 7 Feb 2001 10:22:08 -0800 (PST) (envelope-from nobody) Message-Id: <200102071822.f17IM8J94582@freefall.freebsd.org> Date: Wed, 7 Feb 2001 10:22:08 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24930: Update port: graphics/gd to 1.8.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24930 >Category: ports >Synopsis: Update port: graphics/gd to 1.8.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 Feb 07 10:30:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.8.4 No response from maintainer. >How-To-Repeat: >Fix: diff -urN /usr/ports/graphics/gd/Makefile graphics/gd/Makefile --- /usr/ports/graphics/gd/Makefile Wed Jan 17 20:30:46 2001 +++ graphics/gd/Makefile Sat Feb 3 02:29:29 2001 @@ -1,4 +1,4 @@ -# New ports collection makefile for: gd +# New ports collection makefile for: gd # Date created: 27 Mar 1998 # Whom: jeff@cetlink.net # @@ -6,7 +6,7 @@ # PORTNAME= gd -PORTVERSION= 1.8.3 +PORTVERSION= 1.8.4 CATEGORIES= graphics MASTER_SITES= http://www.boutell.com/gd/http/ \ ftp://ftp.boutell.com/pub/boutell/gd/ @@ -14,9 +14,9 @@ MAINTAINER= billf@FreeBSD.org LIB_DEPENDS= png.4:${PORTSDIR}/graphics/png \ - jpeg.9:${PORTSDIR}/graphics/jpeg + jpeg.9:${PORTSDIR}/graphics/jpeg \ + freetype.6:${PORTSDIR}/print/freetype2 -USE_FREETYPE= yes .if defined(WITH_X11) USE_XLIB= yes USE_XPM= yes @@ -24,13 +24,13 @@ INSTALLS_SHLIB= yes -pre-fetch: +pre-everything: .if !defined(WITH_X11) - @${ECHO} -n "If you want to compile in X support use " - @${ECHO} "'make -DWITH_X11' instead" + @${ECHO_MSG} "If you want to compile in X support use " + @${ECHO_MSG} "'make -DWITH_X11' instead" .endif -pre-install: - ${MKDIR} ${PREFIX}/include/gd +post-extract: + @${RM} -f ${WRKSRC}/*.o .include diff -urN /usr/ports/graphics/gd/distinfo graphics/gd/distinfo --- /usr/ports/graphics/gd/distinfo Mon Jun 5 00:31:19 2000 +++ graphics/gd/distinfo Sat Feb 3 01:53:18 2001 @@ -1 +1 @@ -MD5 (gd-1.8.3.tar.gz) = ad0e7dd1dda2812dbaeaa9706c4be536 +MD5 (gd-1.8.4.tar.gz) = 813625508e31f5c205904a305bdc8669 diff -urN /usr/ports/graphics/gd/files/patch-ac graphics/gd/files/patch-ac --- /usr/ports/graphics/gd/files/patch-ac Mon Nov 13 20:24:19 2000 +++ graphics/gd/files/patch-ac Sat Feb 3 09:25:04 2001 @@ -1,6 +1,6 @@ ---- Makefile.orig Sun Jun 4 03:26:12 2000 -+++ Makefile Thu Nov 9 14:53:41 2000 -@@ -3,18 +3,22 @@ +--- Makefile.orig Fri Feb 2 05:23:56 2001 ++++ Makefile Sat Feb 3 09:24:57 2001 +@@ -3,11 +3,11 @@ #If you do not have gcc, change the setting for COMPILER, but you must #use an ANSI standard C compiler (NOT the old SunOS 4.1.3 cc #compiler; get gcc if you are still using it). @@ -13,101 +13,92 @@ +#AR=ar #If you don't have FreeType, libjpeg and/or Xpm installed, including the - #header files, uncomment this (default). --CFLAGS=-O -+#CFLAGS=-O + #header files, uncomment this (default). You really must install +@@ -16,8 +16,10 @@ + #If you do have FreeType, libjpeg 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_JPEG -DHAVE_LIBTTF +-CFLAGS=-O -DHAVE_LIBXPM -DHAVE_LIBPNG -DHAVE_LIBJPEG \ +- -DHAVE_LIBFREETYPE -DHAVE_LIBTTF ++CFLAGS+=-DHAVE_LIBPNG -DHAVE_LIBJPEG -DHAVE_LIBFREETYPE +.if defined(WITH_X11) -+CFLAGS+=-DHAVE_XPM -DHAVE_JPEG -+.else -+CFLAGS+=-DHAVE_JPEG -DHAVE_LIBTTF ++CFLAGS+=-DHAVE_LIBXPM +.endif - #If you don't have FreeType and/or Xpm fully installed, uncomment this - #(default). -@@ -23,7 +27,7 @@ + #To use the old FreeType 1.x library, add this additional #define + #to the line above +@@ -30,13 +32,15 @@ #Some systems are very picky about link order. They don't all agree #on the right order, either. --LIBS=-lm -lgd -lpng -lz -+LIBS=-lm -lgd -lpng -lz -ljpeg -lttf +-#LIBS=-lgd -lpng -lz ++LIBS=-lgd -lpng -lz -ljpeg -lfreetype -lm #If you do have FreeType, JPEG and/or Xpm fully installed, uncomment a #variation of this and comment out the line above. Note that -@@ -33,14 +37,19 @@ - #Some systems are very picky about link order. They don't all agree - #on the right order, either. + #Xpm requires X11. See also CFLAGS above. --#LIBS=-lm -lgd -lpng -lz -ljpeg -lttf -lXpm -lX11 +-LIBS=-lgd -lpng -lz -ljpeg -lfreetype -lm -lttf +.if defined(WITH_X11) -+LIBS+= -lXpm -lX11 ++LIBS+=-lXpm -lX11 +.endif - #Typical install locations for freetype, zlib, xpm, libjpeg and libpng header files. - #If yours are somewhere else, change this. - #-I. is important to ensure that the version of gd you are installing - #is used, and not an older release in your directory tree somewhere. + #Note: for Freetype 1.x, use DHAVE_LIBTTF and -lttf instead. + +@@ -45,7 +49,10 @@ + #ensure that the version of gd you are installing is used, and not an + #older release in your directory tree somewhere. --INCLUDEDIRS=-I. -I/usr/local/include -I/usr/include/X11 -I/usr/X11R6/include/X11 -+INCLUDEDIRS=-I. -I${LOCALBASE}/include -I${LOCALBASE}/include/freetype +-INCLUDEDIRS=-I. -I/usr/include/freetype2 -I/usr/include/X11 -I/usr/X11R6/include/X11 -I/usr/local/include ++INCLUDEDIRS=-I. -I${LOCALBASE}/include/freetype2 -I${LOCALBASE}/include +.if defined(WITH_X11) +INCLUDEDIRS+=-I${X11BASE}/include/X11 -I${X11BASE}/include +.endif #Typical install locations for freetype, zlib, xpm and libpng libraries. #If yours are somewhere else, other than a standard location -@@ -48,16 +57,19 @@ - #-L. as this allows the gd library itself to be found. - #Put -L. first so that old versions of the gd library elsewhere +@@ -55,16 +62,19 @@ #on your system can't cause conflicts while building a new one. + #This line shouldn't hurt if you don't actually have some of the + #optional libraries and directories. -LIBDIRS=-L. -L/usr/local/lib -L/usr/lib/X11 -L/usr/X11R6/lib -+LIBDIRS=-L. -L$(LOCALBASE)/lib ++LIBDIRS=-L. -L${LOCALBASE}/lib -Wl,--rpath,${LOCALBASE}/lib +.if defined(WITH_X11) -+LIBDIRS+=-L$(X11BASE)/lib ++LIBDIRS+=-L${X11BASE}/lib -Wl,--rpath,${X11BASE}/lib +.endif #Location where libgd.a should be installed by "make install". -INSTALL_LIB=/usr/local/lib -+INSTALL_LIB=$(PREFIX)/lib ++INSTALL_LIB=${PREFIX}/lib #Location where .h files should be installed by "make install". -INSTALL_INCLUDE=/usr/local/include -+INSTALL_INCLUDE=$(PREFIX)/include/gd ++INSTALL_INCLUDE=${PREFIX}/include/gd #Location where useful non-test programs should be installed by "make install". -INSTALL_BIN=/usr/local/bin -+INSTALL_BIN=$(PREFIX)/bin ++INSTALL_BIN=${PREFIX}/bin # # -@@ -65,36 +77,43 @@ - # - # +@@ -74,34 +84,44 @@ --VERSION=1.8.1 -+VERSION=1.8.2 + VERSION=1.8.4 -CC=$(COMPILER) $(INCLUDEDIRS) -LINK=$(CC) $(LIBDIRS) $(LIBS) -+CC+= $(INCLUDEDIRS) ++CC+=$(INCLUDEDIRS) +#LINK=$(CC) $(LIBDIRS) $(LIBS) PROGRAMS=$(BIN_PROGRAMS) $(TEST_PROGRAMS) BIN_PROGRAMS=pngtogd pngtogd2 gdtopng gd2topng gd2copypal gdparttopng webpng - TEST_PROGRAMS=gdtest gddemo gd2time gdtestttf + TEST_PROGRAMS=gdtest gddemo gd2time gdtestft gdtestttf -all: libgd.a $(PROGRAMS) -+.SUFFIXES: .c .so .o -+ -+.c.so: -+ ${CC} -fpic -DPIC ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET} -+ -+all: libgd.a libgd.so.1 $(PROGRAMS) ++SOVER=2 - install: libgd.a $(BIN_PROGRAMS) +-install: libgd.a $(BIN_PROGRAMS) - sh ./install-item 644 libgd.a $(INSTALL_LIB)/libgd.a - sh ./install-item 755 pngtogd $(INSTALL_BIN)/pngtogd - sh ./install-item 755 pngtogd2 $(INSTALL_BIN)/pngtogd2 @@ -125,52 +116,63 @@ - sh ./install-item 644 gdfontmb.h $(INSTALL_INCLUDE)/gdfontmb.h - sh ./install-item 644 gdfonts.h $(INSTALL_INCLUDE)/gdfonts.h - sh ./install-item 644 gdfontt.h $(INSTALL_INCLUDE)/gdfontt.h -+ $(INSTALL) -c -m 644 libgd.a $(INSTALL_LIB)/libgd.a -+ $(INSTALL) -c -m 755 pngtogd $(INSTALL_BIN)/pngtogd -+ $(INSTALL) -c -m 755 libgd.so.1 $(INSTALL_LIB)/libgd.so.1 -+ ln -sf libgd.so.1 $(INSTALL_LIB)/libgd.so -+ $(INSTALL) -c -m 755 pngtogd2 $(INSTALL_BIN)/pngtogd2 -+ $(INSTALL) -c -m 755 gdtopng $(INSTALL_BIN)/gdtopng -+ $(INSTALL) -c -m 755 gd2topng $(INSTALL_BIN)/gd2topng -+ $(INSTALL) -c -m 755 gd2copypal $(INSTALL_BIN)/gd2copypal -+ $(INSTALL) -c -m 755 gdparttopng $(INSTALL_BIN)/gdparttopng -+ $(INSTALL) -c -m 755 webpng $(INSTALL_BIN)/webpng -+ $(INSTALL) -c -m 755 bdftogd $(INSTALL_BIN)/bdftogd -+ $(INSTALL) -c -m 644 gd.h $(INSTALL_INCLUDE)/gd.h -+ $(INSTALL) -c -m 644 gdcache.h $(INSTALL_INCLUDE)/gdcache.h -+ $(INSTALL) -c -m 644 gd_io.h $(INSTALL_INCLUDE)/gd_io.h -+ $(INSTALL) -c -m 644 gdfontg.h $(INSTALL_INCLUDE)/gdfontg.h -+ $(INSTALL) -c -m 644 gdfontl.h $(INSTALL_INCLUDE)/gdfontl.h -+ $(INSTALL) -c -m 644 gdfontmb.h $(INSTALL_INCLUDE)/gdfontmb.h -+ $(INSTALL) -c -m 644 gdfonts.h $(INSTALL_INCLUDE)/gdfonts.h -+ $(INSTALL) -c -m 644 gdfontt.h $(INSTALL_INCLUDE)/gdfontt.h ++.SUFFIXES: .c .so .o ++ ++.c.so: ++ $(CC) -fpic -DPIC $(CFLAGS) -o $@ -c $< ++ ++all: libgd.a libgd.so.$(SOVER) $(PROGRAMS) ++ ++install: libgd.a libgd.so.$(SOVER) $(BIN_PROGRAMS) ++ -mkdir -p $(INSTALL_LIB) $(INSTALL_INCLUDE) $(INSTALL_BIN) ++ ${BSD_INSTALL_DATA} libgd.a $(INSTALL_LIB)/libgd.a ++ ${BSD_INSTALL_DATA} libgd.so.$(SOVER) $(INSTALL_LIB)/libgd.so.$(SOVER) ++ -ln -sf libgd.so.$(SOVER) $(INSTALL_LIB)/libgd.so ++ ${BSD_INSTALL_PROGRAM} pngtogd $(INSTALL_BIN)/pngtogd ++ ${BSD_INSTALL_PROGRAM} pngtogd2 $(INSTALL_BIN)/pngtogd2 ++ ${BSD_INSTALL_PROGRAM} gdtopng $(INSTALL_BIN)/gdtopng ++ ${BSD_INSTALL_PROGRAM} gd2topng $(INSTALL_BIN)/gd2topng ++ ${BSD_INSTALL_PROGRAM} gd2copypal $(INSTALL_BIN)/gd2copypal ++ ${BSD_INSTALL_PROGRAM} gdparttopng $(INSTALL_BIN)/gdparttopng ++ ${BSD_INSTALL_PROGRAM} webpng $(INSTALL_BIN)/webpng ++ ${BSD_INSTALL_SCRIPT} bdftogd $(INSTALL_BIN)/bdftogd ++ ${BSD_INSTALL_DATA} gd.h $(INSTALL_INCLUDE)/gd.h ++ ${BSD_INSTALL_DATA} gdcache.h $(INSTALL_INCLUDE)/gdcache.h ++ ${BSD_INSTALL_DATA} gd_io.h $(INSTALL_INCLUDE)/gd_io.h ++ ${BSD_INSTALL_DATA} gdfontg.h $(INSTALL_INCLUDE)/gdfontg.h ++ ${BSD_INSTALL_DATA} gdfontl.h $(INSTALL_INCLUDE)/gdfontl.h ++ ${BSD_INSTALL_DATA} gdfontmb.h $(INSTALL_INCLUDE)/gdfontmb.h ++ ${BSD_INSTALL_DATA} gdfonts.h $(INSTALL_INCLUDE)/gdfonts.h ++ ${BSD_INSTALL_DATA} gdfontt.h $(INSTALL_INCLUDE)/gdfontt.h gddemo: gddemo.o libgd.a $(CC) gddemo.o -o gddemo $(LIBDIRS) $(LIBS) -@@ -129,16 +148,19 @@ +@@ -138,18 +158,21 @@ gdtestttf: gdtestttf.o libgd.a - $(CC) gdtestttf.o -o gdtestttf $(LIBDIRS) $(LIBS) + $(CC) --verbose gdtestttf.o -o gdtestttf $(LIBDIRS) $(LIBS) -libgd.a: gd.o gd_gd.o gd_gd2.o gd_io.o gd_io_dp.o gd_io_file.o gd_ss.o \ -+OBJS= gd.o gd_gd.o gd_gd2.o gd_io.o gd_io_dp.o gd_io_file.o gd_ss.o \ ++OBJS= gd.o gd_gd.o gd_gd2.o gd_io.o gd_io_dp.o gd_io_file.o gd_ss.o \ gd_io_ss.o gd_png.o gd_jpeg.o gdxpm.o gdfontt.o gdfonts.o gdfontmb.o gdfontl.o \ -- gdfontg.o gdtables.o gdttf.o gdcache.o gdkanji.o wbmp.o gd_wbmp.o \ -- gd.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h gdfontg.h -+ gdfontg.o gdtables.o gdttf.o gdcache.o gdkanji.o wbmp.o gd_wbmp.o -+INCS= gd.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h gdfontg.h + gdfontg.o gdtables.o gdft.o gdttf.o gdcache.o gdkanji.o wbmp.o \ +- gd_wbmp.o gdhelpers.o gd.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h \ ++ gd_wbmp.o gdhelpers.o ++INCS= gd.h gdfontt.h gdfonts.h gdfontmb.h gdfontl.h \ + gdfontg.h gdhelpers.h + +libgd.a: $(INCS) $(OBJS) rm -f libgd.a - $(AR) rc libgd.a gd.o gd_gd.o gd_gd2.o gd_io.o gd_io_dp.o \ - gd_io_file.o gd_ss.o gd_io_ss.o gd_png.o gd_jpeg.o gdxpm.o \ - gdfontt.o gdfonts.o gdfontmb.o gdfontl.o gdfontg.o \ -- gdtables.o gdttf.o gdcache.o gdkanji.o wbmp.o gd_wbmp.o +- gdtables.o gdft.o gdttf.o gdcache.o gdkanji.o wbmp.o \ +- gd_wbmp.o gdhelpers.o + $(AR) rc libgd.a $(OBJS) -ranlib libgd.a + -+libgd.so.1: $(INCS) $(OBJS:.o=.so) -+ $(CC) -shared -Wl,-x -Wl,-assert -Wl,pure-text -Wl,-soname,$@ -o $@ $(OBJS:.o=.so) $(LIBDIRS) $(LIBS) -+ ln -sf libgd.so.1 libgd.so ++libgd.so.$(SOVER): $(INCS) $(OBJS:.o=.so) ++ $(CC) -shared -Wl,-x,-soname,$@ -o $@ $(OBJS:.o=.so) $(LIBDIRS) $(LIBS) ++ ln -sf libgd.so.$(SOVER) libgd.so clean: rm -f *.o *.a ${PROGRAMS} test/gdtest.jpg test/gdtest.wbmp diff -urN /usr/ports/graphics/gd/pkg-plist graphics/gd/pkg-plist --- /usr/ports/graphics/gd/pkg-plist Fri Jun 16 19:37:45 2000 +++ graphics/gd/pkg-plist Sat Feb 3 03:03:09 2001 @@ -1,10 +1,10 @@ bin/bdftogd -bin/pngtogd -bin/pngtogd2 -bin/gdtopng -bin/gd2topng bin/gd2copypal +bin/gd2topng bin/gdparttopng +bin/gdtopng +bin/pngtogd +bin/pngtogd2 bin/webpng include/gd/gd.h include/gd/gd_io.h @@ -16,5 +16,5 @@ include/gd/gdfontt.h lib/libgd.a lib/libgd.so -lib/libgd.so.1 +lib/libgd.so.2 @dirrm include/gd >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 Feb 7 10:31:47 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 941FC37B67D for ; Wed, 7 Feb 2001 10:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17IU2595663; Wed, 7 Feb 2001 10:30:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 93E5337B401 for ; Wed, 7 Feb 2001 10:24:38 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17IOcv94842; Wed, 7 Feb 2001 10:24:38 -0800 (PST) (envelope-from nobody) Message-Id: <200102071824.f17IOcv94842@freefall.freebsd.org> Date: Wed, 7 Feb 2001 10:24:38 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24932: Update port: x11-wm/xfce to version 3.7.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24932 >Category: ports >Synopsis: Update port: x11-wm/xfce to version 3.7.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: Wed Feb 07 10:30:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 3.7.2 New file: files/patch-ag files/patch-ah files/patch-ai files/patch-aj files/patch-ak Remove file: files/patch-af No response from maintainer. >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-wm/xfce/Makefile x11-wm/xfce/Makefile --- /usr/ports/x11-wm/xfce/Makefile Tue Feb 6 21:32:06 2001 +++ x11-wm/xfce/Makefile Wed Feb 7 22:16:55 2001 @@ -6,7 +6,7 @@ # PORTNAME= xfce -PORTVERSION= 3.6.3 +PORTVERSION= 3.7.2 CATEGORIES= x11-wm MASTER_SITES= http://www.xfce.org/archive/ @@ -14,18 +14,23 @@ USE_X_PREFIX= yes USE_IMLIB= yes -USE_ESOUND= yes USE_XPM= yes +USE_AUTOMAKE= yes +AUTOMAKE_ARGS= --include-deps USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lxpg4" -CONFIGURE_ARGS= --localstatedir=${PREFIX}/share \ - --datadir=${PREFIX}/share \ - --sysconfdir=${PREFIX}/etc \ - --with-xpm=${X11BASE} + LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --with-conf-dir=${PREFIX}/etc/xfce \ + --with-data-dir=${PREFIX}/share/xfce \ + --with-locale-dir=${PREFIX}/share/locale \ + --with-xpm=${X11BASE} \ + --disable-xinerama -MAN1= xfbd.1 xfce.1 xfclock.1 xfgnome.1 xfhelp.1 xflock.1 xfmountdev.1 \ - xfmouse.1 xfpager.1 xfprint.1 xfrun.1 xfsound.1 xfterm.1 xftrash.1 \ - xftree.1 xfwm.1 +MAN1= glob.1 xfbd.1 xfce.1 xfclock.1 xfglob.1 xfgnome.1 xfhelp.1 \ + xflock.1 xfmountdev.1 xfmouse.1 xfpager.1 xfprint.1 xfrun.1 \ + xfsound.1 xfterm.1 xftrash.1 xftree.1 xfwm.1 + +post-patch: + @cd ${WRKSRC} && aclocal .include diff -urN /usr/ports/x11-wm/xfce/distinfo x11-wm/xfce/distinfo --- /usr/ports/x11-wm/xfce/distinfo Tue Dec 5 23:04:00 2000 +++ x11-wm/xfce/distinfo Wed Feb 7 21:57:22 2001 @@ -1 +1 @@ -MD5 (xfce-3.6.3.tar.gz) = e42e017604edf8daa24417a28a218333 +MD5 (xfce-3.7.2.tar.gz) = bfa75eebe26852f7377c639e8abcbe4f diff -urN /usr/ports/x11-wm/xfce/files/patch-af x11-wm/xfce/files/patch-af --- /usr/ports/x11-wm/xfce/files/patch-af Thu Nov 2 20:09:10 2000 +++ x11-wm/xfce/files/patch-af Thu Jan 1 09:00:00 1970 @@ -1,22 +0,0 @@ ---- configure.orig Sun Oct 1 01:16:19 2000 -+++ configure Thu Nov 2 05:45:10 2000 -@@ -2622,6 +2622,8 @@ - if test "$cross_compiling" = yes; then - ac_cv_func_mmap_fixed_mapped=no - else -+ ac_save_LIBS="$LIBS" -+ LIBS="-lintl $LIBS" - cat > conftest.$ac_ext < scripts/xfce_setup - sed -e "s%XFCE_DIR%$XFCE_DIR%g" -e "s%XFCE_CONFDIR%$XFCE_CONFDIR%g" scripts/xfce_upgrade.in > scripts/xfce_upgrade - sed -e "s%XFCE_DIR%$XFCE_DIR%g" -e "s%XFCE_CONFDIR%$XFCE_CONFDIR%g" scripts/xfhelp.in > scripts/xfhelp diff -urN /usr/ports/x11-wm/xfce/files/patch-ag x11-wm/xfce/files/patch-ag --- /usr/ports/x11-wm/xfce/files/patch-ag Thu Jan 1 09:00:00 1970 +++ x11-wm/xfce/files/patch-ag Tue Feb 6 00:44:49 2001 @@ -0,0 +1,26 @@ +--- acinclude.m4.orig Thu Jun 22 10:41:00 2000 ++++ acinclude.m4 Tue Feb 6 00:44:40 2001 +@@ -128,9 +128,10 @@ + AC_CHECK_LIB(intl, bindtextdomain, + [AC_CACHE_CHECK([for gettext in libintl], + gt_cv_func_gettext_libintl, +- [AC_TRY_LINK([], [return (int) gettext ("")], +- gt_cv_func_gettext_libintl=yes, +- gt_cv_func_gettext_libintl=no)])]) ++ [AC_CHECK_LIB(intl, gettext, ++ gt_cv_func_gettext_libintl=yes, ++ gt_cv_func_gettext_libintl=no)], ++ gt_cv_func_gettext_libintl=no)]) + fi + + if test "$gt_cv_func_gettext_libc" = "yes" \ +@@ -151,6 +152,9 @@ + DATADIRNAME=lib]) + INSTOBJEXT=.mo + fi ++ fi ++ if test "$gt_cv_func_gettext_libintl" = "yes"; then ++ INTLLIBS='-lintl' + fi + ]) + diff -urN /usr/ports/x11-wm/xfce/files/patch-ah x11-wm/xfce/files/patch-ah --- /usr/ports/x11-wm/xfce/files/patch-ah Thu Jan 1 09:00:00 1970 +++ x11-wm/xfce/files/patch-ah Wed Feb 7 00:53:11 2001 @@ -0,0 +1,11 @@ +--- libs/configure.h.orig Tue Sep 5 02:26:09 2000 ++++ libs/configure.h Wed Feb 7 00:53:01 2001 +@@ -22,7 +22,7 @@ + #define CLOSE_STRING4 "quit" + + /* #ifdef __alpha */ +-#if defined(__alpha) && !defined(linux) ++#if defined(__alpha) && !(defined(linux) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)) + #define NEEDS_ALPHA_HEADER + #undef BROKEN_SUN_HEADERS + #endif /* (__alpha) */ diff -urN /usr/ports/x11-wm/xfce/files/patch-ai x11-wm/xfce/files/patch-ai --- /usr/ports/x11-wm/xfce/files/patch-ai Thu Jan 1 09:00:00 1970 +++ x11-wm/xfce/files/patch-ai Tue Feb 6 05:07:58 2001 @@ -0,0 +1,9 @@ +--- other/xfsoundrc.in.orig Tue Sep 5 02:26:09 2000 ++++ other/xfsoundrc.in Tue Feb 6 05:07:47 2001 +@@ -1,5 +1,5 @@ + Play +-xfplay ++internal + XFCE_DIR/sounds/beep03.wav + XFCE_DIR/sounds/pop02.wav + diff -urN /usr/ports/x11-wm/xfce/files/patch-aj x11-wm/xfce/files/patch-aj --- /usr/ports/x11-wm/xfce/files/patch-aj Thu Jan 1 09:00:00 1970 +++ x11-wm/xfce/files/patch-aj Tue Feb 6 04:52:33 2001 @@ -0,0 +1,20 @@ +--- xfsound/xfdsp.c.orig Fri Jul 7 05:51:00 2000 ++++ xfsound/xfdsp.c Tue Feb 6 04:52:16 2001 +@@ -45,7 +45,7 @@ + #include + #include + #include +-#if defined(linux) ++#if defined(linux) || defined(__FreeBSD__) + #include /* guess :) */ + #endif + +@@ -62,7 +62,7 @@ + + int masterfd; + +-#if defined(linux) ++#if defined(linux) || defined(__FreeBSD__) + int + i_play (char *soundfile) + { diff -urN /usr/ports/x11-wm/xfce/files/patch-ak x11-wm/xfce/files/patch-ak --- /usr/ports/x11-wm/xfce/files/patch-ak Thu Jan 1 09:00:00 1970 +++ x11-wm/xfce/files/patch-ak Tue Feb 6 04:56:24 2001 @@ -0,0 +1,37 @@ +--- xfwm/session.c.orig Wed Jan 31 04:50:16 2001 ++++ xfwm/session.c Tue Feb 6 04:56:10 2001 +@@ -566,8 +566,10 @@ + callback_save_yourself2 (SmcConn sm_conn, SmPointer client_data) + { + char *path = NULL; +- char *filename = NULL; +- FILE *f = NULL; ++ char *filename; ++ FILE *f; ++ int fd; ++ + Bool success = True; + struct passwd *pwd; + +@@ -578,16 +580,18 @@ + path = pwd->pw_dir; + } + +- filename = tempnam (path, ".fs-"); ++ sprintf (filename, "path/.fs-XXXXXXXX"); ++ fd = mkstemp (filename); + + if (Scr.Options & SessionMgt) + { +- f = fopen (filename, "w"); ++ f = fdopen (fd, "w"); + success = save_session_state (sm_conn, filename, f); + fclose (f); + } +- if (!success) ++ if (!success || fd < 0) + xfwm_msg (WARN, "SaveSession", "Can't save session\n"); ++ close (fd); + /* also save session for builtin session mgt, so user will get + * back to his environmnent even if he doesn't use ICE + */ diff -urN /usr/ports/x11-wm/xfce/pkg-plist x11-wm/xfce/pkg-plist --- /usr/ports/x11-wm/xfce/pkg-plist Tue Dec 5 23:04:00 2000 +++ x11-wm/xfce/pkg-plist Thu Feb 8 02:37:46 2001 @@ -1,14 +1,19 @@ bin/CDE2Xfcepal +bin/glob bin/startxfce bin/xfbd +bin/xfbdmgr bin/xfce bin/xfce_remove bin/xfce_setup bin/xfce_upgrade bin/xfclock +bin/xfdiff +bin/xfglob bin/xfgnome bin/xfhelp bin/xflock +bin/xfmenu bin/xfmountdev bin/xfmouse bin/xfpager @@ -29,6 +34,7 @@ etc/xfce/xfce3rc.hu etc/xfce/xfce3rc.ja etc/xfce/xfce3rc.ko +etc/xfce/xfce3rc.nl etc/xfce/xfce3rc.zh_CN.GB2312 etc/xfce/xfce3rc.zh_TW.Big5 etc/xfce/xfclockrc @@ -66,6 +72,8 @@ share/xfce/backdrops/A-Little-Exercise.jpg share/xfce/backdrops/Anneaux.xpm share/xfce/backdrops/Arena.xpm +share/xfce/backdrops/Aurora.xpm +share/xfce/backdrops/Blue.list share/xfce/backdrops/BlueSatin.xpm share/xfce/backdrops/BlueSea.xpm share/xfce/backdrops/BlueStucco.xpm @@ -105,9 +113,12 @@ share/xfce/backdrops/Marbled.xpm share/xfce/backdrops/Master-Plan.jpg share/xfce/backdrops/Maze.xpm +share/xfce/backdrops/Nebula.xpm share/xfce/backdrops/Notes.xpm +share/xfce/backdrops/Overdriven.jpg share/xfce/backdrops/Pencils.xpm share/xfce/backdrops/Plasma.xpm +share/xfce/backdrops/Pled.xpm share/xfce/backdrops/Pool.xpm share/xfce/backdrops/Psy.xpm share/xfce/backdrops/Psy2.xpm @@ -125,11 +136,13 @@ share/xfce/backdrops/Slate.xpm share/xfce/backdrops/Soft.xpm share/xfce/backdrops/Softblue.xpm +share/xfce/backdrops/Softblue2.xpm share/xfce/backdrops/Sol.xpm share/xfce/backdrops/Solid.xpm share/xfce/backdrops/Space.xpm share/xfce/backdrops/Space2.xpm share/xfce/backdrops/Storm.xpm +share/xfce/backdrops/Sunny.xpm share/xfce/backdrops/Teal.xpm share/xfce/backdrops/The-Good-Times.jpg share/xfce/backdrops/Tiles.xpm @@ -141,13 +154,16 @@ share/xfce/backdrops/Toulouse-2.jpg share/xfce/backdrops/Toulouse-3.jpg share/xfce/backdrops/Toulouse-4.jpg +share/xfce/backdrops/Toulouse.list share/xfce/backdrops/Ufo.xpm share/xfce/backdrops/Wall1.xpm share/xfce/backdrops/Wall2.xpm share/xfce/backdrops/Wall3.xpm +share/xfce/backdrops/WaterPurple.xpm share/xfce/backdrops/Wax.xpm share/xfce/backdrops/Weave-red.xpm share/xfce/backdrops/Weird.xpm +share/xfce/backdrops/Whirl.xpm share/xfce/backdrops/Wood-floor.xpm share/xfce/backdrops/Wood.xpm share/xfce/backdrops/Wood2.xpm @@ -155,6 +171,8 @@ share/xfce/backdrops/Xfce.jpg share/xfce/backdrops/Xfce.xpm share/xfce/backdrops/Xfcemice.jpg +share/xfce/fonts/cursor2.pcf +share/xfce/fonts/fonts.dir share/xfce/help/help.gl.html share/xfce/help/help.html share/xfce/help/help.nl.html @@ -297,7 +315,9 @@ share/xfce/palettes/BlueX share/xfce/palettes/BlueX2 share/xfce/palettes/BlueX3 +share/xfce/palettes/BlueX4 share/xfce/palettes/Bronze +share/xfce/palettes/Bronze2 share/xfce/palettes/Cheese share/xfce/palettes/Citrouille share/xfce/palettes/Clinky @@ -308,6 +328,7 @@ share/xfce/palettes/Fall share/xfce/palettes/Glass share/xfce/palettes/Golden +share/xfce/palettes/GoldenBoy share/xfce/palettes/Grayscale share/xfce/palettes/Ground share/xfce/palettes/Helice @@ -335,6 +356,8 @@ share/xfce/palettes/Sand share/xfce/palettes/Silver share/xfce/palettes/Silver2 +share/xfce/palettes/Smooth +share/xfce/palettes/SmoothBW share/xfce/palettes/Spring share/xfce/palettes/Standard share/xfce/palettes/Stellar @@ -403,11 +426,16 @@ share/xfce/sounds/zap04.wav share/xfce/textures/Aluminium.xpm share/xfce/textures/BlueX.xpm +share/xfce/textures/BlueX2.xpm +share/xfce/textures/Bronze2.xpm share/xfce/textures/Glass.xpm +share/xfce/textures/GoldenBoy.xpm share/xfce/textures/Liquid.xpm share/xfce/textures/Modern.xpm share/xfce/textures/Power.xpm share/xfce/textures/Power2.xpm +share/xfce/textures/Smooth.xpm +share/xfce/textures/SmoothBW.xpm share/xfce/textures/bronze.xpm share/xfce/textures/cheese.xpm share/xfce/textures/craters.xpm @@ -419,14 +447,12 @@ share/xfce/textures/paper.xpm share/xfce/textures/silver.xpm share/xfce/textures/stripe.xpm -@dirrm etc/xfce -@dirrm share/xfce/backdrops -@dirrm share/xfce/help -@dirrm share/xfce/icons -@dirrm share/xfce/palettes -@dirrm share/xfce/sounds @dirrm share/xfce/textures -@dirrm share/xfce/locale/et -@dirrm share/xfce/locale/fr -@dirrm share/xfce/locale/it +@dirrm share/xfce/sounds +@dirrm share/xfce/palettes +@dirrm share/xfce/icons +@dirrm share/xfce/help +@dirrm share/xfce/fonts +@dirrm share/xfce/backdrops @dirrm share/xfce +@dirrm etc/xfce >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 Feb 7 10:32:51 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 66EA837B698 for ; Wed, 7 Feb 2001 10:30:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17IU2C95654; Wed, 7 Feb 2001 10:30:02 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 21BBF37B503 for ; Wed, 7 Feb 2001 10:23:45 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17INjG94748; Wed, 7 Feb 2001 10:23:45 -0800 (PST) (envelope-from nobody) Message-Id: <200102071823.f17INjG94748@freefall.freebsd.org> Date: Wed, 7 Feb 2001 10:23:45 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24931: Update port: graphics/sane to 1.0.4 (fix ports/23830) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24931 >Category: ports >Synopsis: Update port: graphics/sane to 1.0.4 (fix ports/23830) >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 Feb 07 10:30:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 1.0.4 [sane-backends] New file: files/patch-ag Remove file: pkg-message files/patch-ab files/patch-ac files/patch-af [sane-frontends] Add file: files/patch-ag Remove file: files/patch-ab files/patch-ac files/patch-ad files/patch-ae files/patch-af Note: SANE is split into sane-backends and sane-frontends from this version. This PR supersedes ports/23830. Since containts of those are merged, ports/23917 and ports/24685 should be superseded by this PR. >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: # # graphics_sane-backends.patch # graphics_sane-frontends.patch # echo x - graphics_sane-backends.patch sed 's/^X//' >graphics_sane-backends.patch << 'END-of-graphics_sane-backends.patch' Xdiff -urN /usr/ports/graphics/sane/Makefile graphics/sane-backends/Makefile X--- /usr/ports/graphics/sane/Makefile Tue Feb 6 02:55:41 2001 X+++ graphics/sane-backends/Makefile Wed Feb 7 00:39:38 2001 X@@ -1,13 +1,12 @@ X-# New ports collection makefile for: sane X+# New ports collection makefile for: sane-backends X # Date created: Sat Jul 19 16:23:10 MET DST 1997 X # Whom: gary@hotlava.com X # X # $FreeBSD: ports/graphics/sane/Makefile,v 1.30 2001/02/05 15:57:18 olgeni Exp $ X # X X-PORTNAME= sane X-PORTVERSION= 1.0.3 X-PORTREVISION= 1 X+PORTNAME= sane-backends X+PORTVERSION= 1.0.4 X CATEGORIES= graphics X MASTER_SITES= ${MASTER_SITE_SUNSITE} \ X ftp://ftp.mostang.com/pub/sane/ X@@ -19,28 +18,18 @@ X X USE_GMAKE= yes X USE_LIBTOOL= yes X-USE_GTK= yes X-INSTALLS_SHLIB= yes X CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ X LIBS="-L${LOCALBASE}/lib" X+INSTALLS_SHLIB= yes X X-MAN1= saned.1 scanimage.1 xcam.1 xscanimage.1 X+MAN1= saned.1 scanimage.1 X MAN5= sane-abaton.5 sane-agfafocus.5 sane-apple.5 sane-artec.5 \ X- sane-avision.5 sane-canon.5 sane-coolscan.5 sane-dc210.5 \ X- sane-dc25.5 sane-dll.5 sane-dmc.5 sane-epson.5 \ X+ sane-as6e.5 sane-avision.5 sane-canon.5 sane-coolscan.5 \ X+ sane-dc210.5 sane-dc25.5 sane-dll.5 sane-dmc.5 sane-epson.5 \ X sane-fujitsu.5 sane-hp.5 sane-microtek.5 sane-microtek2.5 \ X- sane-mustek.5 sane-mustek_pp.5 sane-net.5 sane-pint.5 \ X- sane-plustek.5 sane-pnm.5 sane-qcam.5 sane-ricoh.5 \ X+ sane-mustek.5 sane-mustek_pp.5 sane-nec.5 sane-net.5 sane-pie.5 \ X+ sane-pint.5 sane-plustek.5 sane-pnm.5 sane-qcam.5 sane-ricoh.5 \ X sane-s9036.5 sane-scsi.5 sane-sharp.5 sane-snapscan.5 \ X sane-st400.5 sane-tamarack.5 sane-umax.5 sane-v4l.5 X- X-pre-configure: X- @${ECHO} "*** Note: SANE can be built with an X scanner interface" X- @${ECHO} "*** (xscanimage) as well as a GIMP plug-in. If you wish" X- @${ECHO} "*** to do this, hit Ctrl-C right now and build/install" X- @${ECHO} "*** the GIMP and GTK packages/ports." X- X-post-install: X- @${CAT} ${PKGMESSAGE} X X .include Xdiff -urN /usr/ports/graphics/sane/distinfo graphics/sane-backends/distinfo X--- /usr/ports/graphics/sane/distinfo Sun Sep 17 03:12:04 2000 X+++ graphics/sane-backends/distinfo Mon Dec 25 20:16:19 2000 X@@ -1 +1 @@ X-MD5 (sane-1.0.3.tar.gz) = c1c2e08358e0196109724ecdbe316c7b X+MD5 (sane-backends-1.0.4.tar.gz) = 9c265548bc5b628e6cc614124d49b00e Xdiff -urN /usr/ports/graphics/sane/files/patch-ab graphics/sane-backends/files/patch-ab X--- /usr/ports/graphics/sane/files/patch-ab Sun Apr 30 08:44:19 2000 X+++ graphics/sane-backends/files/patch-ab Thu Jan 1 09:00:00 1970 X@@ -1,14 +0,0 @@ X---- backend/artec.c.orig Sun Mar 5 22:40:43 2000 X-+++ backend/artec.c Wed Apr 19 06:00:00 2000 X-@@ -3238,7 +3238,11 @@ X- if (DBG_LEVEL == 101) X- { X- debug_fd = open ("artec.data.raw", X-+#ifdef __FreeBSD__ X-+ O_WRONLY | O_CREAT | O_TRUNC, 0666); X-+#else X- O_WRONLY | O_CREAT | O_TRUNC | O_SYNC, 0666); X-+#endif X- if (debug_fd > -1) X- DBG (101, "opened artec.data.raw output file\n"); X- } Xdiff -urN /usr/ports/graphics/sane/files/patch-ac graphics/sane-backends/files/patch-ac X--- /usr/ports/graphics/sane/files/patch-ac Sun Apr 30 08:44:20 2000 X+++ graphics/sane-backends/files/patch-ac Thu Jan 1 09:00:00 1970 X@@ -1,11 +0,0 @@ X---- backend/Makefile.in.orig Sun Mar 5 22:40:35 2000 X-+++ backend/Makefile.in Wed Apr 19 06:00:00 2000 X-@@ -113,7 +113,7 @@ X- nn=`echo $$n | sed 's,^libsane-dll,libsane,'`; \ X- (cd ..; $(LN_S) sane/$$n $$nn); \ X- done || exit 1 X-- $(INSTALL_PROGRAM) libsane.la $(libdir)/libsane.la X-+ $(LIBTOOL) $(MINST) $(INSTALL_PROGRAM) libsane.la $(libdir)/libsane.la X- @list="$(CONFIGS)"; for cfg in $$list; do \ X- if test ! -r $(srcdir)/$${cfg}; then continue; fi; \ X- if test -f $(configdir)/$${cfg}; then \ Xdiff -urN /usr/ports/graphics/sane/files/patch-ae graphics/sane-backends/files/patch-ae X--- /usr/ports/graphics/sane/files/patch-ae Sun Sep 17 03:12:05 2000 X+++ graphics/sane-backends/files/patch-ae Sat Dec 23 04:36:42 2000 X@@ -1,6 +1,6 @@ X---- sanei/sanei_scsi.c.orig Sat Aug 12 23:54:15 2000 X-+++ sanei/sanei_scsi.c Fri Sep 8 22:38:49 2000 X-@@ -2424,6 +2424,169 @@ X+--- sanei/sanei_scsi.c.orig Fri Dec 1 05:02:30 2000 X++++ sanei/sanei_scsi.c Sat Dec 23 04:14:27 2000 X+@@ -2425,6 +2425,169 @@ X cam_freeccb(ccb); X return SANE_STATUS_GOOD; X } X@@ -169,12 +169,4 @@ X + X #endif X X- X-@@ -3722,6 +3885,7 @@ X- int findbus, int findchannel, int findid, int findlun, X- SANE_Status (*attach) (const char *dev)) X- { X-+ DBG_INIT(); X- DBG (1, "sanei_scsi_find_devices: not implemented for this platform\n"); X- } X Xdiff -urN /usr/ports/graphics/sane/files/patch-af graphics/sane-backends/files/patch-af X--- /usr/ports/graphics/sane/files/patch-af Sat Nov 18 12:56:52 2000 X+++ graphics/sane-backends/files/patch-af Thu Jan 1 09:00:00 1970 X@@ -1,12 +0,0 @@ X---- frontend/xscanimage.c.orig Sun Oct 15 08:12:12 2000 X-+++ frontend/xscanimage.c Sun Oct 15 08:12:39 2000 X-@@ -57,6 +57,8 @@ X- X- #ifdef HAVE_LIBGIMP_GIMP_H X- X-+#define GIMP_ENABLE_COMPAT_CRUFT X-+ X- #include X- X- static void query (void); X- Xdiff -urN /usr/ports/graphics/sane/files/patch-ag graphics/sane-backends/files/patch-ag X--- /usr/ports/graphics/sane/files/patch-ag Thu Jan 1 09:00:00 1970 X+++ graphics/sane-backends/files/patch-ag Wed Feb 7 00:28:38 2001 X@@ -0,0 +1,15 @@ X+--- sanei/sanei_pa4s2.c.orig Sun Oct 8 22:58:42 2000 X++++ sanei/sanei_pa4s2.c Wed Feb 7 00:28:27 2001 X+@@ -89,6 +89,12 @@ X+ #define IO_SUPPORT_MISSING X+ #endif X+ X++#if defined(__FreeBSD__) && defined(__i386__) X++#define HAVE_IOPERM X++#define ioperm i386_set_ioperm X++#include X++#endif X++ X+ #include "sane/sane.h" X+ #include "sane/sanei.h" X+ #include "sane/sanei_pa4s2.h" Xdiff -urN /usr/ports/graphics/sane/pkg-descr graphics/sane-backends/pkg-descr X--- /usr/ports/graphics/sane/pkg-descr Mon Feb 14 01:09:30 2000 X+++ graphics/sane-backends/pkg-descr Sat Dec 23 06:11:46 2000 X@@ -1,9 +1,14 @@ X-SANE is a universal scanner interface. The value of such a universal X-interface is that it allows writing just one driver per image acquisition X-device rather than one driver for each device and application. So, if you X-have three applications and four devices, traditionally you'd have had to X-write 12 different programs. With SANE, this number is reduced to seven: X-the three applications plus the four drivers. Of course, the savings get X-even bigger as more and more drivers and/or applications are added. X+SANE ("Scanner Access Now Easy") is a universal scanner interface. X+The value of such a universal interface is that it allows writing X+just one driver per image acquisition device rather than one driver X+for each device and application. So, if you have three applications X+and four devices, traditionally you'd have had to write 12 different X+programs. With SANE, this number is reduced to seven: the three X+applications plus the four drivers. Of course, the savings get even X+bigger as more and more drivers and/or applications are added. X+ X+sane-backends cotains documentation, several backends, scanimage X+command line frontend, and networking support. For other/graphical X+frontends take a look at sane-frontends and/or xsane. X X WWW: http://www.mostang.com/sane/ Xdiff -urN /usr/ports/graphics/sane/pkg-message graphics/sane-backends/pkg-message X--- /usr/ports/graphics/sane/pkg-message Sat Apr 3 23:55:01 1999 X+++ graphics/sane-backends/pkg-message Thu Jan 1 09:00:00 1970 X@@ -1,11 +0,0 @@ X-Congratulations, SANE is now installed. X- X-If you built it with GIMP and GTK packages/ports installed, you can X-use SANE as a GIMP plug-in. To do this, as root, type: X- X-ln -sf /usr/local/bin/xscanimage /usr/X11R6/libexec/gimp/1.1/plug-ins/xscanimage X- X-Then run the GIMP, and a new "Acquire" menu item should appear in the X-"Xtras" menu. Use this to access your scanner. X- X-Have fun! Xdiff -urN /usr/ports/graphics/sane/pkg-plist graphics/sane-backends/pkg-plist X--- /usr/ports/graphics/sane/pkg-plist Sun Sep 17 03:12:06 2000 X+++ graphics/sane-backends/pkg-plist Sat Dec 23 05:26:46 2000 X@@ -1,7 +1,5 @@ X bin/sane-config X bin/scanimage X-bin/xcam X-bin/xscanimage X etc/sane.d/abaton.conf X etc/sane.d/agfafocus.conf X etc/sane.d/apple.conf X@@ -19,7 +17,9 @@ X etc/sane.d/microtek2.conf X etc/sane.d/mustek.conf X etc/sane.d/mustek_pp.conf X+etc/sane.d/nec.conf X etc/sane.d/net.conf X+etc/sane.d/pie.conf X etc/sane.d/plustek.conf X etc/sane.d/ricoh.conf X etc/sane.d/s9036.conf X@@ -30,17 +30,7 @@ X etc/sane.d/st400.conf X etc/sane.d/tamarack.conf X etc/sane.d/umax.conf X-include/sane/config.h X include/sane/sane.h X-include/sane/sanei.h X-include/sane/sanei_backend.h X-include/sane/sanei_codec_ascii.h X-include/sane/sanei_codec_bin.h X-include/sane/sanei_debug.h X-include/sane/sanei_net.h X-include/sane/sanei_pa4s2.h X-include/sane/sanei_scsi.h X-include/sane/sanei_wire.h X include/sane/saneopts.h X lib/libsane.a X lib/libsane.so X@@ -57,6 +47,9 @@ X lib/sane/libsane-artec.a X lib/sane/libsane-artec.so X lib/sane/libsane-artec.so.1 X+lib/sane/libsane-as6e.a X+lib/sane/libsane-as6e.so X+lib/sane/libsane-as6e.so.1 X lib/sane/libsane-avision.a X lib/sane/libsane-avision.so X lib/sane/libsane-avision.so.1 X@@ -99,9 +92,15 @@ X lib/sane/libsane-mustek_pp.a X lib/sane/libsane-mustek_pp.so X lib/sane/libsane-mustek_pp.so.1 X+lib/sane/libsane-nec.a X+lib/sane/libsane-nec.so X+lib/sane/libsane-nec.so.1 X lib/sane/libsane-net.a X lib/sane/libsane-net.so X lib/sane/libsane-net.so.1 X+lib/sane/libsane-pie.a X+lib/sane/libsane-pie.so X+lib/sane/libsane-pie.so.1 X lib/sane/libsane-plustek.a X lib/sane/libsane-plustek.so X lib/sane/libsane-plustek.so.1 X@@ -133,7 +132,6 @@ X lib/sane/libsane-umax.so X lib/sane/libsane-umax.so.1 X sbin/saned X-share/sane-style.rc X @dirrm lib/sane X @dirrm include/sane X @dirrm etc/sane.d END-of-graphics_sane-backends.patch echo x - graphics_sane-frontends.patch sed 's/^X//' >graphics_sane-frontends.patch << 'END-of-graphics_sane-frontends.patch' Xdiff -urN /usr/ports/graphics/sane/Makefile graphics/sane-frontends/Makefile X--- /usr/ports/graphics/sane/Makefile Tue Feb 6 02:55:41 2001 X+++ graphics/sane-frontends/Makefile Wed Feb 7 00:42:15 2001 X@@ -1,13 +1,12 @@ X-# New ports collection makefile for: sane X+# New ports collection makefile for: sane-frontends X # Date created: Sat Jul 19 16:23:10 MET DST 1997 X # Whom: gary@hotlava.com X # X # $FreeBSD: ports/graphics/sane/Makefile,v 1.30 2001/02/05 15:57:18 olgeni Exp $ X # X X-PORTNAME= sane X-PORTVERSION= 1.0.3 X-PORTREVISION= 1 X+PORTNAME= sane-frontends X+PORTVERSION= 1.0.4 X CATEGORIES= graphics X MASTER_SITES= ${MASTER_SITE_SUNSITE} \ X ftp://ftp.mostang.com/pub/sane/ X@@ -15,30 +14,30 @@ X X MAINTAINER= ports@FreeBSD.org X X-LIB_DEPENDS= jpeg.9:${PORTSDIR}/graphics/jpeg X+LIB_DEPENDS= sane.1:${PORTSDIR}/graphics/sane-backends X X-USE_GMAKE= yes X-USE_LIBTOOL= yes X USE_GTK= yes X-INSTALLS_SHLIB= yes X+USE_GMAKE= yes X+GNU_CONFIGURE= yes X CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ X LIBS="-L${LOCALBASE}/lib" X X-MAN1= saned.1 scanimage.1 xcam.1 xscanimage.1 X-MAN5= sane-abaton.5 sane-agfafocus.5 sane-apple.5 sane-artec.5 \ X- sane-avision.5 sane-canon.5 sane-coolscan.5 sane-dc210.5 \ X- sane-dc25.5 sane-dll.5 sane-dmc.5 sane-epson.5 \ X- sane-fujitsu.5 sane-hp.5 sane-microtek.5 sane-microtek2.5 \ X- sane-mustek.5 sane-mustek_pp.5 sane-net.5 sane-pint.5 \ X- sane-plustek.5 sane-pnm.5 sane-qcam.5 sane-ricoh.5 \ X- sane-s9036.5 sane-scsi.5 sane-sharp.5 sane-snapscan.5 \ X- sane-st400.5 sane-tamarack.5 sane-umax.5 sane-v4l.5 X- X-pre-configure: X- @${ECHO} "*** Note: SANE can be built with an X scanner interface" X- @${ECHO} "*** (xscanimage) as well as a GIMP plug-in. If you wish" X- @${ECHO} "*** to do this, hit Ctrl-C right now and build/install" X- @${ECHO} "*** the GIMP and GTK packages/ports." X+MAN1= xcam.1 xscanimage.1 X+ X+.if defined(WITH_GIMP) X+LIB_DEPENDS+= gimp.1:${PORTSDIR}/graphics/gimp1 X+CONFIGURE_ARGS+= --enable-gimp X+.else X+CONFIGURE_ARGS+= --disable-gimp X+.endif X+ X+pre-everything: X+.if !defined(WITH_GIMP) X+ @${ECHO_MSG} "*** Note: xscanimage can be built with a standalone" X+ @${ECHO_MSG} "*** X scanner interface as well as a GIMP plug-in." X+ @${ECHO_MSG} "*** If you wish to do this, hit Ctrl-C now and use" X+ @${ECHO_MSG} "*** \"WITH_GIMP=yes\"" X+.endif X X post-install: X @${CAT} ${PKGMESSAGE} Xdiff -urN /usr/ports/graphics/sane/distinfo graphics/sane-frontends/distinfo X--- /usr/ports/graphics/sane/distinfo Sun Sep 17 03:12:04 2000 X+++ graphics/sane-frontends/distinfo Sat Dec 23 04:19:45 2000 X@@ -1 +1 @@ X-MD5 (sane-1.0.3.tar.gz) = c1c2e08358e0196109724ecdbe316c7b X+MD5 (sane-frontends-1.0.4.tar.gz) = f8d1d0afba88f1d1604c67e14738b74d Xdiff -urN /usr/ports/graphics/sane/files/patch-ab graphics/sane-frontends/files/patch-ab X--- /usr/ports/graphics/sane/files/patch-ab Sun Apr 30 08:44:19 2000 X+++ graphics/sane-frontends/files/patch-ab Thu Jan 1 09:00:00 1970 X@@ -1,14 +0,0 @@ X---- backend/artec.c.orig Sun Mar 5 22:40:43 2000 X-+++ backend/artec.c Wed Apr 19 06:00:00 2000 X-@@ -3238,7 +3238,11 @@ X- if (DBG_LEVEL == 101) X- { X- debug_fd = open ("artec.data.raw", X-+#ifdef __FreeBSD__ X-+ O_WRONLY | O_CREAT | O_TRUNC, 0666); X-+#else X- O_WRONLY | O_CREAT | O_TRUNC | O_SYNC, 0666); X-+#endif X- if (debug_fd > -1) X- DBG (101, "opened artec.data.raw output file\n"); X- } Xdiff -urN /usr/ports/graphics/sane/files/patch-ac graphics/sane-frontends/files/patch-ac X--- /usr/ports/graphics/sane/files/patch-ac Sun Apr 30 08:44:20 2000 X+++ graphics/sane-frontends/files/patch-ac Thu Jan 1 09:00:00 1970 X@@ -1,11 +0,0 @@ X---- backend/Makefile.in.orig Sun Mar 5 22:40:35 2000 X-+++ backend/Makefile.in Wed Apr 19 06:00:00 2000 X-@@ -113,7 +113,7 @@ X- nn=`echo $$n | sed 's,^libsane-dll,libsane,'`; \ X- (cd ..; $(LN_S) sane/$$n $$nn); \ X- done || exit 1 X-- $(INSTALL_PROGRAM) libsane.la $(libdir)/libsane.la X-+ $(LIBTOOL) $(MINST) $(INSTALL_PROGRAM) libsane.la $(libdir)/libsane.la X- @list="$(CONFIGS)"; for cfg in $$list; do \ X- if test ! -r $(srcdir)/$${cfg}; then continue; fi; \ X- if test -f $(configdir)/$${cfg}; then \ Xdiff -urN /usr/ports/graphics/sane/files/patch-ad graphics/sane-frontends/files/patch-ad X--- /usr/ports/graphics/sane/files/patch-ad Sun Apr 30 08:44:20 2000 X+++ graphics/sane-frontends/files/patch-ad Thu Jan 1 09:00:00 1970 X@@ -1,19 +0,0 @@ X---- tools/Makefile.in.orig Sun Mar 5 22:45:19 2000 X-+++ tools/Makefile.in Wed Apr 19 06:00:00 2000 X-@@ -25,6 +25,7 @@ X- MKDIR = $(top_srcdir)/mkinstalldirs X- INSTALL = @INSTALL@ X- INSTALL_PROGRAM = @INSTALL_PROGRAM@ X-+INSTALL_SCRIPT = @INSTALL_SCRIPT@ X- INSTALL_DATA = @INSTALL_DATA@ X- RANLIB = @RANLIB@ X- X-@@ -65,7 +66,7 @@ X- all: $(DESTINATIONS) X- X- install: sane-config X-- $(INSTALL_PROGRAM) sane-config $(bindir)/sane-config X-+ $(INSTALL_SCRIPT) sane-config $(bindir)/sane-config X- X- sane-config: sane-config.in $(top_builddir)/config.status X- cd $(top_builddir) \ Xdiff -urN /usr/ports/graphics/sane/files/patch-ae graphics/sane-frontends/files/patch-ae X--- /usr/ports/graphics/sane/files/patch-ae Sun Sep 17 03:12:05 2000 X+++ graphics/sane-frontends/files/patch-ae Thu Jan 1 09:00:00 1970 X@@ -1,180 +0,0 @@ X---- sanei/sanei_scsi.c.orig Sat Aug 12 23:54:15 2000 X-+++ sanei/sanei_scsi.c Fri Sep 8 22:38:49 2000 X-@@ -2424,6 +2424,169 @@ X- cam_freeccb(ccb); X- return SANE_STATUS_GOOD; X- } X-+ X-+#define WE_HAVE_FIND_DEVICES X-+ X-+int X-+cam_compare_inquiry(int fd, path_id_t path_id, X-+ target_id_t target_id, lun_id_t target_lun, X-+ const char *vendor, const char *product, const char *type) X-+{ X-+ struct ccb_dev_match cdm; X-+ struct device_match_pattern *pattern; X-+ struct scsi_inquiry_data *inq; X-+ int retval = 0; X-+ X-+ /* build ccb for device match */ X-+ bzero(&cdm, sizeof(cdm)); X-+ cdm.ccb_h.func_code = XPT_DEV_MATCH; X-+ X-+ /* result buffer */ X-+ cdm.match_buf_len = sizeof(struct dev_match_result); X-+ cdm.matches = (struct dev_match_result *)malloc(cdm.match_buf_len); X-+ cdm.num_matches = 0; X-+ X-+ /* pattern buffer */ X-+ cdm.num_patterns = 1; X-+ cdm.pattern_buf_len = sizeof(struct dev_match_pattern); X-+ cdm.patterns = (struct dev_match_pattern *)malloc(cdm.pattern_buf_len); X-+ X-+ /* assemble conditions */ X-+ cdm.patterns[0].type = DEV_MATCH_DEVICE; X-+ pattern = &cdm.patterns[0].pattern.device_pattern; X-+ pattern->flags = DEV_MATCH_PATH | DEV_MATCH_TARGET | DEV_MATCH_LUN; X-+ pattern->path_id = path_id; X-+ pattern->target_id = target_id; X-+ pattern->target_lun = target_lun; X-+ X-+ if (ioctl(fd, CAMIOCOMMAND, &cdm) == -1) { X-+ DBG (1, "error sending CAMIOCOMMAND ioctl"); X-+ retval = -1; X-+ goto ret; X-+ } X-+ X-+ if ((cdm.ccb_h.status != CAM_REQ_CMP) X-+ || ((cdm.status != CAM_DEV_MATCH_LAST) X-+ && (cdm.status != CAM_DEV_MATCH_MORE))) { X-+ DBG (1, "got CAM error %#x, CDM error %d\n", X-+ cdm.ccb_h.status, cdm.status); X-+ retval = -1; X-+ goto ret; X-+ } X-+ X-+ if (cdm.num_matches == 0) { X-+ DBG (1, "not found\n"); X-+ retval = -1; X-+ goto ret; X-+ } X-+ X-+ if (cdm.matches[0].type != DEV_MATCH_DEVICE) { X-+ DBG (1, "no device match\n"); X-+ retval = -1; X-+ goto ret; X-+ } X-+ X-+ inq = &cdm.matches[0].result.device_result.inq_data; X-+ if ((vendor && cam_strmatch(inq->vendor, vendor, SID_VENDOR_SIZE)) || X-+ (product && cam_strmatch(inq->product, product, SID_PRODUCT_SIZE))) X-+ retval = 1; X-+ X-+ ret: X-+ free(cdm.patterns); X-+ free(cdm.matches); X-+ return(retval); X-+} X-+ X-+void X-+sanei_scsi_find_devices (const char *findvendor, const char *findmodel, X-+ const char *findtype, X-+ int findbus, int findchannel, int findid, int findlun, X-+ SANE_Status (*attach) (const char *dev)) X-+{ X-+ int fd; X-+ struct ccb_dev_match cdm; X-+ struct periph_match_pattern *pattern; X-+ struct periph_match_result *result; X-+ int i; X-+ char devname[16]; X-+ X-+ DBG_INIT(); X-+ X-+ if ((fd = open(XPT_DEVICE, O_RDWR)) == -1) { X-+ DBG (1, "could not open %s\n", XPT_DEVICE); X-+ return; X-+ } X-+ X-+ /* build ccb for device match */ X-+ bzero(&cdm, sizeof(cdm)); X-+ cdm.ccb_h.func_code = XPT_DEV_MATCH; X-+ X-+ /* result buffer */ X-+ cdm.match_buf_len = sizeof(struct dev_match_result) * 100; X-+ cdm.matches = (struct dev_match_result *)malloc(cdm.match_buf_len); X-+ cdm.num_matches = 0; X-+ X-+ /* pattern buffer */ X-+ cdm.num_patterns = 1; X-+ cdm.pattern_buf_len = sizeof(struct dev_match_pattern); X-+ cdm.patterns = (struct dev_match_pattern *)malloc(cdm.pattern_buf_len); X-+ X-+ /* assemble conditions ... findchannel is ignored */ X-+ cdm.patterns[0].type = DEV_MATCH_PERIPH; X-+ pattern = &cdm.patterns[0].pattern.periph_pattern; X-+ pattern->flags = PERIPH_MATCH_NAME; X-+ strcpy(pattern->periph_name, "pass"); X-+ if (findbus != -1) { X-+ pattern->path_id = findbus; X-+ pattern->flags |= PERIPH_MATCH_PATH; X-+ } X-+ if (findid != -1) { X-+ pattern->target_id = findid; X-+ pattern->flags |= PERIPH_MATCH_TARGET; X-+ } X-+ if (findlun != -1) { X-+ pattern->target_lun = findlun; X-+ pattern->flags |= PERIPH_MATCH_LUN; X-+ } X-+ X-+ /* result loop */ X-+ do { X-+ if (ioctl(fd, CAMIOCOMMAND, &cdm) == -1) { X-+ DBG (1, "error sending CAMIOCOMMAND ioctl"); X-+ break; X-+ } X-+ X-+ if ((cdm.ccb_h.status != CAM_REQ_CMP) X-+ || ((cdm.status != CAM_DEV_MATCH_LAST) X-+ && (cdm.status != CAM_DEV_MATCH_MORE))) { X-+ DBG (1, "got CAM error %#x, CDM error %d\n", X-+ cdm.ccb_h.status, cdm.status); X-+ break; X-+ } X-+ X-+ for (i = 0; i < cdm.num_matches; i++) { X-+ if (cdm.matches[i].type != DEV_MATCH_PERIPH) X-+ continue; X-+ result = &cdm.matches[i].result.periph_result; X-+ DBG (4, "%s%d on scbus%d %d:%d\n", X-+ result->periph_name, result->unit_number, X-+ result->path_id, result->target_id, result->target_lun); X-+ if (cam_compare_inquiry(fd, result->path_id, X-+ result->target_id, result->target_lun, X-+ findvendor, findmodel, findtype) == 0) { X-+ sprintf(devname, "/dev/%s%d", result->periph_name, result->unit_number); X-+ (*attach) (devname); X-+ } X-+ } X-+ } while ((cdm.ccb_h.status == CAM_REQ_CMP) X-+ && (cdm.status == CAM_DEV_MATCH_MORE)); X-+ X-+ free(cdm.patterns); X-+ free(cdm.matches); X-+ close(fd); X-+ return; X-+} X-+ X- #endif X- X- X-@@ -3722,6 +3885,7 @@ X- int findbus, int findchannel, int findid, int findlun, X- SANE_Status (*attach) (const char *dev)) X- { X-+ DBG_INIT(); X- DBG (1, "sanei_scsi_find_devices: not implemented for this platform\n"); X- } X- Xdiff -urN /usr/ports/graphics/sane/files/patch-af graphics/sane-frontends/files/patch-af X--- /usr/ports/graphics/sane/files/patch-af Sat Nov 18 12:56:52 2000 X+++ graphics/sane-frontends/files/patch-af Thu Jan 1 09:00:00 1970 X@@ -1,12 +0,0 @@ X---- frontend/xscanimage.c.orig Sun Oct 15 08:12:12 2000 X-+++ frontend/xscanimage.c Sun Oct 15 08:12:39 2000 X-@@ -57,6 +57,8 @@ X- X- #ifdef HAVE_LIBGIMP_GIMP_H X- X-+#define GIMP_ENABLE_COMPAT_CRUFT X-+ X- #include X- X- static void query (void); X- Xdiff -urN /usr/ports/graphics/sane/files/patch-ag graphics/sane-frontends/files/patch-ag X--- /usr/ports/graphics/sane/files/patch-ag Thu Jan 1 09:00:00 1970 X+++ graphics/sane-frontends/files/patch-ag Wed Feb 7 00:14:10 2001 X@@ -0,0 +1,17 @@ X+--- src/Makefile.in.orig Fri Dec 1 04:58:38 2000 X++++ src/Makefile.in Wed Feb 7 00:14:03 2001 X+@@ -59,12 +59,12 @@ X+ all: $(PROGRAMS) X+ X+ install: $(PROGRAMS) X+- $(MKDIR) $(bindir) $(datadir) X++ $(MKDIR) $(bindir) $(sanedatadir) X+ @for program in $(BINPROGS); do \ X+ $(INSTALL_PROGRAM) $${program} \ X+ $(bindir)/$${program}; \ X+ done X+- $(INSTALL_DATA) $(srcdir)/sane-style.rc $(datadir)/sane-style.rc X++ $(INSTALL_DATA) $(srcdir)/sane-style.rc $(sanedatadir)/sane-style.rc X+ X+ xscanimage: $(XSCAN_OBJS) $(LIBSANEI) $(LIBLIB) X+ $(LINK) $(XSCAN_OBJS) $(LIBSANEI) \ Xdiff -urN /usr/ports/graphics/sane/pkg-comment graphics/sane-frontends/pkg-comment X--- /usr/ports/graphics/sane/pkg-comment Sun Jun 27 02:45:46 1999 X+++ graphics/sane-frontends/pkg-comment Sat Dec 23 04:28:30 2000 X@@ -1 +1 @@ X-API for access to scanners, digitals camera, frame grabbers etc X+Tools for access to scanners, digitals camera, frame grabbers etc Xdiff -urN /usr/ports/graphics/sane/pkg-descr graphics/sane-frontends/pkg-descr X--- /usr/ports/graphics/sane/pkg-descr Mon Feb 14 01:09:30 2000 X+++ graphics/sane-frontends/pkg-descr Sat Dec 23 04:45:40 2000 X@@ -1,9 +1,15 @@ X-SANE is a universal scanner interface. The value of such a universal X-interface is that it allows writing just one driver per image acquisition X-device rather than one driver for each device and application. So, if you X-have three applications and four devices, traditionally you'd have had to X-write 12 different programs. With SANE, this number is reduced to seven: X-the three applications plus the four drivers. Of course, the savings get X-even bigger as more and more drivers and/or applications are added. X+SANE ("Scanner Access Now Easy") is a universal scanner interface. X+The value of such a universal interface is that it allows writing X+just one driver per image acquisition device rather than one driver X+for each device and application. So, if you have three applications X+and four devices, traditionally you'd have had to write 12 different X+programs. With SANE, this number is reduced to seven: the three X+applications plus the four drivers. Of course, the savings get even X+bigger as more and more drivers and/or applications are added. X+ X+sane-frontends contains frontends to SANE including xscanimage and X+xcam. Xscanimage is a GTK-based application for scanning images that X+can also be used as a GIMP-plugin, and Xcam is used to get images X+from cameras supported by SANE. X X WWW: http://www.mostang.com/sane/ Xdiff -urN /usr/ports/graphics/sane/pkg-plist graphics/sane-frontends/pkg-plist X--- /usr/ports/graphics/sane/pkg-plist Sun Sep 17 03:12:06 2000 X+++ graphics/sane-frontends/pkg-plist Wed Feb 7 00:11:22 2001 X@@ -1,139 +1,4 @@ X-bin/sane-config X-bin/scanimage X bin/xcam X bin/xscanimage X-etc/sane.d/abaton.conf X-etc/sane.d/agfafocus.conf X-etc/sane.d/apple.conf X-etc/sane.d/artec.conf X-etc/sane.d/avision.conf X-etc/sane.d/coolscan.conf X-etc/sane.d/dc210.conf X-etc/sane.d/dc25.conf X-etc/sane.d/dll.conf X-etc/sane.d/dmc.conf X-etc/sane.d/epson.conf X-etc/sane.d/hp.conf X-etc/sane.d/m3096g.conf X-etc/sane.d/microtek.conf X-etc/sane.d/microtek2.conf X-etc/sane.d/mustek.conf X-etc/sane.d/mustek_pp.conf X-etc/sane.d/net.conf X-etc/sane.d/plustek.conf X-etc/sane.d/ricoh.conf X-etc/sane.d/s9036.conf X-etc/sane.d/saned.conf X-etc/sane.d/sharp.conf X-etc/sane.d/snapscan.conf X-etc/sane.d/sp15c.conf X-etc/sane.d/st400.conf X-etc/sane.d/tamarack.conf X-etc/sane.d/umax.conf X-include/sane/config.h X-include/sane/sane.h X-include/sane/sanei.h X-include/sane/sanei_backend.h X-include/sane/sanei_codec_ascii.h X-include/sane/sanei_codec_bin.h X-include/sane/sanei_debug.h X-include/sane/sanei_net.h X-include/sane/sanei_pa4s2.h X-include/sane/sanei_scsi.h X-include/sane/sanei_wire.h X-include/sane/saneopts.h X-lib/libsane.a X-lib/libsane.so X-lib/libsane.so.1 X-lib/sane/libsane-abaton.a X-lib/sane/libsane-abaton.so X-lib/sane/libsane-abaton.so.1 X-lib/sane/libsane-agfafocus.a X-lib/sane/libsane-agfafocus.so X-lib/sane/libsane-agfafocus.so.1 X-lib/sane/libsane-apple.a X-lib/sane/libsane-apple.so X-lib/sane/libsane-apple.so.1 X-lib/sane/libsane-artec.a X-lib/sane/libsane-artec.so X-lib/sane/libsane-artec.so.1 X-lib/sane/libsane-avision.a X-lib/sane/libsane-avision.so X-lib/sane/libsane-avision.so.1 X-lib/sane/libsane-canon.a X-lib/sane/libsane-canon.so X-lib/sane/libsane-canon.so.1 X-lib/sane/libsane-coolscan.a X-lib/sane/libsane-coolscan.so X-lib/sane/libsane-coolscan.so.1 X-lib/sane/libsane-dc210.a X-lib/sane/libsane-dc210.so X-lib/sane/libsane-dc210.so.1 X-lib/sane/libsane-dc25.a X-lib/sane/libsane-dc25.so X-lib/sane/libsane-dc25.so.1 X-lib/sane/libsane-dll.a X-lib/sane/libsane-dll.so X-lib/sane/libsane-dll.so.1 X-lib/sane/libsane-dmc.a X-lib/sane/libsane-dmc.so X-lib/sane/libsane-dmc.so.1 X-lib/sane/libsane-epson.a X-lib/sane/libsane-epson.so X-lib/sane/libsane-epson.so.1 X-lib/sane/libsane-hp.a X-lib/sane/libsane-hp.so X-lib/sane/libsane-hp.so.1 X-lib/sane/libsane-m3096g.a X-lib/sane/libsane-m3096g.so X-lib/sane/libsane-m3096g.so.1 X-lib/sane/libsane-microtek.a X-lib/sane/libsane-microtek.so X-lib/sane/libsane-microtek.so.1 X-lib/sane/libsane-microtek2.a X-lib/sane/libsane-microtek2.so X-lib/sane/libsane-microtek2.so.1 X-lib/sane/libsane-mustek.a X-lib/sane/libsane-mustek.so X-lib/sane/libsane-mustek.so.1 X-lib/sane/libsane-mustek_pp.a X-lib/sane/libsane-mustek_pp.so X-lib/sane/libsane-mustek_pp.so.1 X-lib/sane/libsane-net.a X-lib/sane/libsane-net.so X-lib/sane/libsane-net.so.1 X-lib/sane/libsane-plustek.a X-lib/sane/libsane-plustek.so X-lib/sane/libsane-plustek.so.1 X-lib/sane/libsane-pnm.a X-lib/sane/libsane-pnm.so X-lib/sane/libsane-pnm.so.1 X-lib/sane/libsane-ricoh.a X-lib/sane/libsane-ricoh.so X-lib/sane/libsane-ricoh.so.1 X-lib/sane/libsane-s9036.a X-lib/sane/libsane-s9036.so X-lib/sane/libsane-s9036.so.1 X-lib/sane/libsane-sharp.a X-lib/sane/libsane-sharp.so X-lib/sane/libsane-sharp.so.1 X-lib/sane/libsane-snapscan.a X-lib/sane/libsane-snapscan.so X-lib/sane/libsane-snapscan.so.1 X-lib/sane/libsane-sp15c.a X-lib/sane/libsane-sp15c.so X-lib/sane/libsane-sp15c.so.1 X-lib/sane/libsane-st400.a X-lib/sane/libsane-st400.so X-lib/sane/libsane-st400.so.1 X-lib/sane/libsane-tamarack.a X-lib/sane/libsane-tamarack.so X-lib/sane/libsane-tamarack.so.1 X-lib/sane/libsane-umax.a X-lib/sane/libsane-umax.so X-lib/sane/libsane-umax.so.1 X-sbin/saned X-share/sane-style.rc X-@dirrm lib/sane X-@dirrm include/sane X-@dirrm etc/sane.d X+share/sane/sane-style.rc X+@dirrm share/sane END-of-graphics_sane-frontends.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 Wed Feb 7 10:40:27 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8521037B491 for ; Wed, 7 Feb 2001 10:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17Ie1N96621; Wed, 7 Feb 2001 10:40:01 -0800 (PST) (envelope-from gnats) Received: from snapple.webct.com (snapple.webct.com [209.87.17.45]) by hub.freebsd.org (Postfix) with ESMTP id 9CB6F37B491 for ; Wed, 7 Feb 2001 10:38:29 -0800 (PST) Received: (from root@localhost) by snapple.webct.com (8.11.1/8.11.1) id f17IcSc02834; Wed, 7 Feb 2001 10:38:28 -0800 (PST) (envelope-from varju) Message-Id: <200102071838.f17IcSc02834@snapple.webct.com> Date: Wed, 7 Feb 2001 10:38:28 -0800 (PST) From: Alex Varju Reply-To: varju@ca.webct.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24933: [MAINTAINER UPDATE] ports/palm/jpilot 0.99 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24933 >Category: ports >Synopsis: [MAINTAINER UPDATE] ports/palm/jpilot 0.99 >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 Feb 07 10:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alex Varju >Release: FreeBSD 4.2-STABLE i386 >Organization: WebCT >Environment: >Description: Update port palm/jpilot to version 0.99. ChangeLog details: 0.99 - 02/06/01 Alphabetized 4 main app categories and expense categories New calendar begin/end setting method using keyboard jpilot-sync program added to allow command line syncing Made radio buttons for which phone # shows up in addr Made month/week views obey categories Made 4 main apps+expense more user friendly by detecting changes Added prefs for optionally backing up DBs Czech character set added Russian character set added Moved output screen to bottom panel in main window Fixed many bugs in Expense and improved GUI Fixed datebook entries showing weekly repeat Added a large view window to the monthview Fixed some DateBk3 bugs (templates showing as today, etc) Made Address screen stay as it was last used in quick/add view mode Alarms Sorted memos if they are sorted on the handheld Replaced calendar buttons (array) with a gtk_calendar widget Made Quickview a page on the address Notebook Made private records hidable using palm password Made changes for Japanese and Chinese and Korean and multibyte characters Included Synctime in rpm and made it detect and avoid PalmOS 3.3 Made the creation of ~/.jpilot and ~/.jpilot/backup* perms 0700 & ~umask If upgrading then you may want to change the permissions of ~/.jpilot/ for security reasons. Made completed ToDos not print if hidden Minor postscript improvements Made plugin conduits selectable wether to sync or not >How-To-Repeat: >Fix: diff -ruwN jpilot/Makefile jpilot-dev/Makefile --- jpilot/Makefile Sun Jan 7 23:36:04 2001 +++ jpilot-dev/Makefile Wed Feb 7 10:35:11 2001 @@ -7,7 +7,7 @@ # "?=" and "+=" are for including this Makefile from japanese/jpilot PORTNAME= jpilot -PORTVERSION= 0.98.1 +PORTVERSION= 0.99 CATEGORIES+= palm comms MASTER_SITES= http://jpilot.org/ @@ -18,7 +18,7 @@ PREFIX= ${LOCALBASE}/pilot USE_GTK= yes -GNU_CONFIGURE= yes +USE_AUTOCONF= yes CONFIGURE_ARGS+=--with-pilot-prefix=${PREFIX} post-install: diff -ruwN jpilot/distinfo jpilot-dev/distinfo --- jpilot/distinfo Tue Apr 4 20:26:35 2000 +++ jpilot-dev/distinfo Wed Feb 7 09:42:46 2001 @@ -1 +1 @@ -MD5 (jpilot-0.98.1.tar.gz) = a67a68a9e53757b34cbd2d3fc9c0e3bb +MD5 (jpilot-0.99.tar.gz) = d2b9069594e3da726e356e4a9f874eea diff -ruwN jpilot/files/patch-ba jpilot-dev/files/patch-ba --- jpilot/files/patch-ba Fri Mar 31 15:33:20 2000 +++ jpilot-dev/files/patch-ba Wed Feb 7 09:53:39 2001 @@ -1,20 +1,33 @@ ---- Makefile.in.orig Wed Mar 1 18:00:14 2000 -+++ Makefile.in Sun Mar 12 11:37:58 2000 +--- Makefile.in.orig Mon Dec 18 16:53:30 2000 ++++ Makefile.in Thu Dec 21 21:22:37 2000 @@ -43,7 +43,7 @@ INTLLIBS = @INTLLIBS@ # Targets --all: po_dir intl_dir jpilot -+all: po_dir intl_dir jpilot libplugin +-all: po_dir intl_dir jpilot jpilot-sync jpilot-dump ++all: po_dir intl_dir jpilot jpilot-sync jpilot-dump synctime expense jpilot: jpilot.o datebook.o address.o todo.o memo.o \ utils.o sync.o prefs.o log.o plugins.o \ -@@ -192,6 +192,8 @@ - ./install-sh -c -m 755 empty/AddressDB.pdb $(prefix)/share/jpilot/ - ./install-sh -c -m 755 empty/ToDoDB.pdb $(prefix)/share/jpilot/ +@@ -210,6 +210,12 @@ + intl_dir: + cd intl; $(MAKE) + ++synctime: ++ cd SyncTime; $(MAKE) ++ ++expense: ++ cd Expense; $(MAKE) ++ + clean: + rm -f *.o *~ config.cache + +@@ -236,6 +242,8 @@ ./install-sh -c -m 755 empty/MemoDB.pdb $(prefix)/share/jpilot/ -+ ./install-sh -c -m 644 libplugin.a $(prefix)/lib/ -+ ./install-sh -c -m 644 docs/plugin.html $(prefix)/share/doc/jpilot/plugin.html - cd intl; make install - cd po; make install + cd intl; $(MAKE) install + cd po; $(MAKE) install ++ cd SyncTime; $(MAKE) install ++ cd Expense; $(MAKE) install + uninstall: + rm $(prefix)/share/jpilot/* diff -ruwN jpilot/files/patch-bb jpilot-dev/files/patch-bb --- jpilot/files/patch-bb Sun Mar 5 05:57:21 2000 +++ jpilot-dev/files/patch-bb Wed Feb 7 10:34:03 2001 @@ -1,11 +0,0 @@ ---- configure.orig Sat Mar 4 16:10:48 2000 -+++ configure Sat Mar 4 16:10:54 2000 -@@ -3779,7 +3779,7 @@ - echo $ac_n "checking for dlopen""... $ac_c" 1>&6 - echo "configure:3781: checking for dlopen" >&5 - save_LIBS="$LIBS" -- LIBS="$LIBS -ldl" -+ LIBS="$LIBS" - cat > conftest.$ac_ext <mtodo)); + diff -ruwN jpilot/files/patch-cb jpilot-dev/files/patch-cb --- jpilot/files/patch-cb Wed Dec 31 16:00:00 1969 +++ jpilot-dev/files/patch-cb Wed Feb 7 09:43:52 2001 @@ -0,0 +1,10 @@ +--- libplugin.c.orig Wed Feb 7 09:43:24 2001 ++++ libplugin.c Wed Feb 7 09:43:33 2001 +@@ -22,7 +22,6 @@ + #include + #include + #include +-#include + + #include + diff -ruwN jpilot/files/patch-cc jpilot-dev/files/patch-cc --- jpilot/files/patch-cc Wed Dec 31 16:00:00 1969 +++ jpilot-dev/files/patch-cc Wed Feb 7 10:25:17 2001 @@ -0,0 +1,20 @@ +--- configure.in.orig Sat Jan 6 10:26:17 2001 ++++ configure.in Wed Feb 7 10:25:01 2001 +@@ -13,7 +13,7 @@ + AC_PROG_CC + + PACKAGE=jpilot +-VERSION="0.99pre 06Jan01" ++VERSION="0.99" + #PACKAGE=$package + #VERSION=$version + +@@ -231,5 +231,8 @@ + + AC_OUTPUT([Makefile intl/Makefile po/Makefile.in], + [sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile]) ++ ++AC_OUTPUT_SUBDIRS(SyncTime) ++AC_OUTPUT_SUBDIRS(Expense) + + dnl AC_OUTPUT(Makefile) diff -ruwN jpilot/files/patch-cd jpilot-dev/files/patch-cd --- jpilot/files/patch-cd Wed Dec 31 16:00:00 1969 +++ jpilot-dev/files/patch-cd Thu Dec 21 21:30:27 2000 @@ -0,0 +1,18 @@ +--- SyncTime/Makefile.in.orig Thu Dec 7 14:44:26 2000 ++++ SyncTime/Makefile.in Thu Dec 21 21:29:37 2000 +@@ -52,13 +52,13 @@ + install: + ./install-sh -d -m 755 $(prefix)/lib/jpilot; \ + ./install-sh -d -m 755 $(prefix)/lib/jpilot/plugins; \ +- ../libtool --mode=install ./install-sh \ ++ ../libtool --mode=install ./install-sh -c \ + libsynctime.la $(prefix)/lib/jpilot/plugins + + local_install: + ./install-sh -d -m 755 $(HOME)/.jpilot; \ + ./install-sh -d -m 755 $(HOME)/.jpilot/plugins; \ +- ../libtool --mode=install ./install-sh \ ++ ../libtool --mode=install ./install-sh -c \ + libsynctime.la $(HOME)/.jpilot/plugins + + uninstall: diff -ruwN jpilot/files/patch-ce jpilot-dev/files/patch-ce --- jpilot/files/patch-ce Wed Dec 31 16:00:00 1969 +++ jpilot-dev/files/patch-ce Thu Dec 21 21:34:27 2000 @@ -0,0 +1,18 @@ +--- Expense/Makefile.in.orig Thu Dec 7 14:44:26 2000 ++++ Expense/Makefile.in Thu Dec 21 21:29:49 2000 +@@ -52,13 +52,13 @@ + install: + ./install-sh -d -m 755 $(prefix)/lib/jpilot; \ + ./install-sh -d -m 755 $(prefix)/lib/jpilot/plugins; \ +- ../libtool --mode=install ./install-sh \ ++ ../libtool --mode=install ./install-sh -c \ + libexpense.la $(prefix)/lib/jpilot/plugins + + local_install: + ./install-sh -d -m 755 $(HOME)/.jpilot; \ + ./install-sh -d -m 755 $(HOME)/.jpilot/plugins; \ +- ../libtool --mode=install ./install-sh \ ++ ../libtool --mode=install ./install-sh -c \ + libexpense.la $(HOME)/.jpilot/plugins + + uninstall: diff -ruwN jpilot/pkg-descr jpilot-dev/pkg-descr --- jpilot/pkg-descr Sun Jan 7 23:36:04 2001 +++ jpilot-dev/pkg-descr Wed Feb 7 09:42:34 2001 @@ -1,7 +1,7 @@ J-Pilot is a desktop organizer application for the palm pilot that -runs under Linux, and Unix. It is similar in functionality to the -one that 3com distributes for a well known rampant legacy operating -system. +runs under Linux and Unix using X-Windows and GTK+. It is similar in +functionality to the one that 3com distributes and has many features +not found in the 3com desktop. WWW: http://jpilot.org/ diff -ruwN jpilot/pkg-plist jpilot-dev/pkg-plist --- jpilot/pkg-plist Tue Aug 1 20:32:08 2000 +++ jpilot-dev/pkg-plist Thu Feb 1 21:33:55 2001 @@ -1,30 +1,56 @@ bin/jpilot +bin/jpilot-dump +bin/jpilot-sync +lib/jpilot/plugins/libexpense.a +lib/jpilot/plugins/libexpense.la +lib/jpilot/plugins/libexpense.so +lib/jpilot/plugins/libexpense.so.1 +lib/jpilot/plugins/libsynctime.a +lib/jpilot/plugins/libsynctime.la +lib/jpilot/plugins/libsynctime.so +lib/jpilot/plugins/libsynctime.so.1 +share/doc/jpilot/plugin.html +share/jpilot/AddressDB.pdb +share/jpilot/DatebookDB.pdb +share/jpilot/MemoDB.pdb +share/jpilot/ToDoDB.pdb share/jpilot/jpilotrc.blue share/jpilot/jpilotrc.default share/jpilot/jpilotrc.green share/jpilot/jpilotrc.purple share/jpilot/jpilotrc.steel -share/jpilot/DatebookDB.pdb -share/jpilot/AddressDB.pdb -share/jpilot/ToDoDB.pdb -share/jpilot/MemoDB.pdb -lib/libplugin.a -share/doc/jpilot/plugin.html +share/locale/ca/LC_MESSAGES/jpilot.mo +share/locale/cs/LC_MESSAGES/jpilot.mo share/locale/da/LC_MESSAGES/jpilot.mo share/locale/de/LC_MESSAGES/jpilot.mo +share/locale/es/LC_MESSAGES/jpilot.mo share/locale/fr/LC_MESSAGES/jpilot.mo share/locale/ja/LC_MESSAGES/jpilot.mo +share/locale/nl/LC_MESSAGES/jpilot.mo +share/locale/no/LC_MESSAGES/jpilot.mo share/locale/sv/LC_MESSAGES/jpilot.mo @dirrm share/jpilot @dirrm share/doc/jpilot +@dirrm lib/jpilot/plugins +@dirrm lib/jpilot +@unexec rmdir %D/share/locale/ca/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/ca 2>/dev/null || true +@unexec rmdir %D/share/locale/cs/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/cs 2>/dev/null || true @unexec rmdir %D/share/locale/da/LC_MESSAGES 2>/dev/null || true @unexec rmdir %D/share/locale/da 2>/dev/null || true @unexec rmdir %D/share/locale/de/LC_MESSAGES 2>/dev/null || true @unexec rmdir %D/share/locale/de 2>/dev/null || true +@unexec rmdir %D/share/locale/es/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/es 2>/dev/null || true @unexec rmdir %D/share/locale/fr/LC_MESSAGES 2>/dev/null || true @unexec rmdir %D/share/locale/fr 2>/dev/null || true @unexec rmdir %D/share/locale/ja/LC_MESSAGES 2>/dev/null || true @unexec rmdir %D/share/locale/ja 2>/dev/null || true +@unexec rmdir %D/share/locale/nl/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/nl 2>/dev/null || true +@unexec rmdir %D/share/locale/no/LC_MESSAGES 2>/dev/null || true +@unexec rmdir %D/share/locale/no 2>/dev/null || true @unexec rmdir %D/share/locale/sv/LC_MESSAGES 2>/dev/null || true @unexec rmdir %D/share/locale/sv 2>/dev/null || true @unexec rmdir %D/share/locale 2>/dev/null || true >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 Feb 7 11:53:31 2001 Delivered-To: freebsd-ports@freebsd.org Received: from snark.ptc.spbu.ru (snark.ptc.spbu.ru [195.19.225.131]) by hub.freebsd.org (Postfix) with ESMTP id A658137B503 for ; Wed, 7 Feb 2001 11:53:09 -0800 (PST) Received: (from uwe@localhost) by snark.ptc.spbu.ru (8.8.8+Sun/8.8.8) id WAA02755 for ports@FreeBSD.ORG; Wed, 7 Feb 2001 22:53:06 +0300 (MSK) Date: Wed, 7 Feb 2001 22:53:05 +0300 From: "Valeriy E. Ushakov" To: ports@FreeBSD.ORG Subject: Stable and devel ports Message-ID: <20010207225305.C2444@snark.ptc.spbu.ru> Mail-Followup-To: ports@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.3i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Porter's handbook doesn't seem to touch this topic. What are the best current practice for maintaining a stable and a -devel versions of a port? Are any special arrangements to allow them to live side by side desirable or one can safely assume that its stable XOR devel. Thanks. SY, Uwe -- uwe@ptc.spbu.ru | Zu Grunde kommen http://www.ptc.spbu.ru/~uwe/ | Ist zu Grunde gehen To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 12: 0:23 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ACE8437B6A4 for ; Wed, 7 Feb 2001 12:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17K02n07368; Wed, 7 Feb 2001 12:00:02 -0800 (PST) (envelope-from gnats) Received: from mta07-svc.ntlworld.com (mta07-svc.ntlworld.com [62.253.162.47]) by hub.freebsd.org (Postfix) with ESMTP id 6E6AD37B401 for ; Wed, 7 Feb 2001 11:54:30 -0800 (PST) Received: from jaffacakes.freeserve.co.uk ([62.253.144.108]) by mta07-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20010207195409.HOPH26323.mta07-svc.ntlworld.com@jaffacakes.freeserve.co.uk> for ; Wed, 7 Feb 2001 19:54:09 +0000 Received: (from simonm@localhost) by jaffacakes.freeserve.co.uk (8.11.1/8.9.3) id f17JuAM00886; Wed, 7 Feb 2001 19:56:10 GMT (envelope-from simonm) Message-Id: <200102071956.f17JuAM00886@jaffacakes.freeserve.co.uk> Date: Wed, 7 Feb 2001 19:56:10 GMT From: Simon Marlow Reply-To: Simon Marlow To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24934: Upgrade ports/lang/ghc to version 4.08.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24934 >Category: ports >Synopsis: Upgrade ports/lang/ghc to version 4.08.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: Wed Feb 07 12:00:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Simon Marlow >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: >How-To-Repeat: >Fix: Patch is below; note that files/patch-ab has been removed. diff -cr ghc-OLD/Makefile ghc/Makefile *** ghc-OLD/Makefile Fri Oct 13 21:17:44 2000 --- ghc/Makefile Wed Feb 7 19:31:32 2001 *************** *** 5,13 **** # $FreeBSD: ports/lang/ghc/Makefile,v 1.5 2000/10/13 20:17:44 ade Exp $ PORTNAME= ghc ! PORTVERSION= 4.08.1 CATEGORIES= lang ! MASTER_SITES= http://www.haskell.org/ghc/dist/4.08.1/ DISTFILES= ghc-${PORTVERSION}-src${EXTRACT_SUFX} \ ghc-${PORTVERSION}-x86-hc${EXTRACT_SUFX} --- 5,13 ---- # $FreeBSD: ports/lang/ghc/Makefile,v 1.5 2000/10/13 20:17:44 ade Exp $ PORTNAME= ghc ! PORTVERSION= 4.08.2 CATEGORIES= lang ! MASTER_SITES= http://www.haskell.org/ghc/dist/${PORTVERSION}/ DISTFILES= ghc-${PORTVERSION}-src${EXTRACT_SUFX} \ ghc-${PORTVERSION}-x86-hc${EXTRACT_SUFX} *************** *** 20,27 **** CONFIGURE_ARGS= --enable-hc-boot --libdir=${PREFIX}/lib/ghc # specifying CONFIGURE_TARGET doesn't work for some reason. CONFIGURE_TARGET= - - WRKSRC= ${WRKDIR}/fptools # override TMPDIR because /tmp often doesn't have enough space # to build some of the larger libraries. --- 20,25 ---- diff -cr ghc-OLD/distinfo ghc/distinfo *** ghc-OLD/distinfo Fri Oct 13 21:17:44 2000 --- ghc/distinfo Wed Feb 7 19:31:32 2001 *************** *** 1,2 **** ! MD5 (ghc-4.08.1-src.tar.gz) = f2c4a579c186102239411efea17c963c ! MD5 (ghc-4.08.1-x86-hc.tar.gz) = b1d18eeb3f5fdb02a85ef24b40d1bf0d --- 1,2 ---- ! MD5 (ghc-4.08.2-src.tar.gz) = 5c3d8186d275e6521bc49d4aa71c002d ! MD5 (ghc-4.08.2-x86-hc.tar.gz) = c2137331044dc8fb406538c975fde64a Only in ghc-OLD/files: patch-ab diff -cr ghc-OLD/pkg-plist ghc/pkg-plist *** ghc-OLD/pkg-plist Fri Oct 13 21:17:44 2000 --- ghc/pkg-plist Wed Feb 7 19:31:32 2001 *************** *** 1,5 **** bin/ghc ! bin/ghc-4.08.1 bin/ghcprof bin/hp2ps bin/stat2resid --- 1,5 ---- bin/ghc ! bin/ghc-4.08.2 bin/ghcprof bin/hp2ps bin/stat2resid >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 Feb 7 12:14:34 2001 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 F389437B4EC for ; Wed, 7 Feb 2001 12:14:10 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f17KDwg06246; Wed, 7 Feb 2001 22:14:00 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f17KE3m07278; Wed, 7 Feb 2001 22:14:03 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A81AC8A.CE663ED0@FreeBSD.org> Date: Wed, 07 Feb 2001 22:14: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: "Valeriy E. Ushakov" Cc: ports@FreeBSD.org Subject: Re: Stable and devel ports References: <20010207225305.C2444@snark.ptc.spbu.ru> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Valeriy E. Ushakov" wrote: > Porter's handbook doesn't seem to touch this topic. What are the best > current practice for maintaining a stable and a -devel versions of a > port? Are any special arrangements to allow them to live side by side > desirable or one can safely assume that its stable XOR devel. It depends. For example if the ports represents end-product (window manager for example), then there should be little or no reason to tweak stable and devel version to allow them live side by side. However, if the port is a library, and there are some ports in the tree that may work only with devel version of this port then you have to tweak devel port to allow it to co-exist on the same machive with the stable version. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 12:38:48 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D75F937B401; Wed, 7 Feb 2001 12:38:25 -0800 (PST) Received: (from ken@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17KcPS13587; Wed, 7 Feb 2001 12:38:25 -0800 (PST) (envelope-from ken) Date: Wed, 7 Feb 2001 12:38:25 -0800 (PST) From: Message-Id: <200102072038.f17KcPS13587@freefall.freebsd.org> To: inagaki@tg.rim.or.jp, ken@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23755: bug of original tosha Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: bug of original tosha State-Changed-From-To: feedback->closed State-Changed-By: ken State-Changed-When: Wed Feb 7 12:36:26 PST 2001 State-Changed-Why: Core dump problem fixed (I sent mail to Oliver Fromme back in December and never got a response), and patches for compiler warnings applied. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=23755 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 12:40:26 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 491B837B698 for ; Wed, 7 Feb 2001 12:40:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17Ke4513848; Wed, 7 Feb 2001 12:40:04 -0800 (PST) (envelope-from gnats) Received: from mail.inka.de (quechua.inka.de [212.227.14.2]) by hub.freebsd.org (Postfix) with ESMTP id 5CC5037B491 for ; Wed, 7 Feb 2001 12:30:34 -0800 (PST) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with local-bsmtp id 14QbEW-0001Ft-01; Wed, 7 Feb 2001 21:30:32 +0100 Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.11.1/8.11.1) id f17K53322850; Wed, 7 Feb 2001 21:05:03 +0100 (CET) (envelope-from naddy) Message-Id: <200102072005.f17K53322850@kemoauc.mips.inka.de> Date: Wed, 7 Feb 2001 21:05:03 +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/24936: Maintainer update: mail/bsmtp 1.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24936 >Category: ports >Synopsis: Maintainer update: mail/bsmtp 1.02 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Wed Feb 07 12:40:03 PST 2001 >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: Mon Dec 25 13:44:16 CET 2000 naddy@kemoauc.mips.inka.de:/usr/obj/usr/src/sys/KEMOAUC alpha >Description: Update mail/bsmtp to 1.02. Old distfile has disappeared. No functional changes. >How-To-Repeat: >Fix: diff -uNr /usr/ports/mail/bsmtp/Makefile bsmtp/Makefile --- /usr/ports/mail/bsmtp/Makefile Sat Oct 28 03:22:47 2000 +++ bsmtp/Makefile Wed Feb 7 20:48:05 2001 @@ -5,20 +5,21 @@ # $FreeBSD: ports/mail/bsmtp/Makefile,v 1.1 2000/10/28 01:22:47 jeh Exp $ PORTNAME= bsmtp -PORTVERSION= 1.01 +PORTVERSION= 1.02 CATEGORIES= mail MASTER_SITES= http://www.stud.uni-karlsruhe.de/~uk1o/bsmtp/ -MAINTAINER= naddy@mips.inka.de +MAINTAINER= Christian Weisgerber +WRKSRC= ${WRKDIR}/${PORTNAME} HAS_CONFIGURE= yes CONFIGURE_ARGS= --redo pre-configure: - @${SED} -e 's,%%CC%%,${CC},' \ - -e 's,%%CFLAGS%%,${CFLAGS},' \ - -e 's,%%PREFIX%%,${PREFIX},' \ - ${FILESDIR}/config.sed >${WRKSRC}/config.sed + @${SED} <${FILESDIR}/config.sed >${WRKSRC}/config.sed \ + -e 's:%%CC%%:${CC}:' \ + -e 's:%%CFLAGS%%:${CFLAGS}:' \ + -e 's:%%PREFIX%%:${PREFIX}:' post-install: ${MKDIR} ${PREFIX}/share/doc/bsmtp diff -uNr /usr/ports/mail/bsmtp/distinfo bsmtp/distinfo --- /usr/ports/mail/bsmtp/distinfo Sat Oct 28 03:22:47 2000 +++ bsmtp/distinfo Wed Feb 7 19:51:34 2001 @@ -1 +1 @@ -MD5 (bsmtp-1.01.tar.gz) = 85aee02dfcb1c65646ebdb2fce7d8dbe +MD5 (bsmtp-1.02.tar.gz) = 3084ca188e42414c42efe8d714166adb diff -uNr /usr/ports/mail/bsmtp/files/config.sed bsmtp/files/config.sed --- /usr/ports/mail/bsmtp/files/config.sed Sat Oct 28 03:22:49 2000 +++ bsmtp/files/config.sed Wed Feb 7 20:32:16 2001 @@ -1,3 +1,4 @@ +# $FreeBSD$ s,@CC@,%%CC%%, s,@INSTALL@,/usr/bin/install, s,@SH@,/bin/sh, @@ -10,6 +11,8 @@ s,@PRIVBINDIR@,%%PREFIX%%/libexec, s,@PUBBINDIR@,%%PREFIX%%/bin, s,@MAILERDIR@,%%PREFIX%%/share/sendmail, +s,@BINUSR@,root, +s,@BINGRP@,wheel, s,@QUEUEDIR@,/var/spool/bsmtp, s,@DAEMONUSER@,uucp, s,@DAEMONGID@,66, diff -uNr /usr/ports/mail/bsmtp/files/patch-Makefile_in bsmtp/files/patch-Makefile_in --- /usr/ports/mail/bsmtp/files/patch-Makefile_in Sat Oct 28 03:22:49 2000 +++ bsmtp/files/patch-Makefile_in Thu Jan 1 01:00:00 1970 @@ -1,28 +0,0 @@ ---- Makefile.in.orig Sun May 16 11:24:08 1999 -+++ Makefile.in Thu Oct 5 23:44:15 2000 -@@ -30,8 +30,8 @@ - #oldsendmail=@OLDSENDMAIL@ # not used anymore - installmailer=@INSTALLMAILER@ - mailerversion=@MAILERVERSION@ --bingrp = bin --binusr = bin -+bingrp = wheel -+binusr = root - privbin = @PRIVBINDIR@ - pubbin = @PUBBINDIR@ - mailerdir = @MAILERDIR@ -@@ -88,6 +88,14 @@ - chown $(binusr) $(privbin) ; \ - chgrp $(bingrp) $(privbin) ; \ - chmod 755 $(privbin) ; \ -+ fi -+ @if [ ! -d $(mailerdir) ]; then \ -+ echo Making $(mailerdir) ; \ -+ set -x ; \ -+ mkdir -p $(mailerdir) || mkdir $(mailerdir) || exit 0 ; \ -+ chown $(binusr) $(mailerdir) ; \ -+ chgrp $(bingrp) $(mailerdir) ; \ -+ chmod 755 $(mailerdir) ; \ - fi - @if [ ! -d $(queuedir) ]; then \ - echo Making $(queuedir) ; \ diff -uNr /usr/ports/mail/bsmtp/files/patch-bsmtp_c_in bsmtp/files/patch-bsmtp_c_in --- /usr/ports/mail/bsmtp/files/patch-bsmtp_c_in Sat Oct 28 03:22:50 2000 +++ bsmtp/files/patch-bsmtp_c_in Wed Feb 7 20:37:27 2001 @@ -1,14 +1,11 @@ ---- bsmtp.c.in.orig Sun May 16 11:24:08 1999 -+++ bsmtp.c.in Thu Oct 5 21:41:25 2000 -@@ -167,7 +167,10 @@ - } - #endif - fseek (file, 0, SEEK_END); -- fprintf (file, "MAIL FROM:<%s>\n", from); -+ if (*from == '<') -+ fprintf (file, "MAIL FROM:%s\n", from); -+ else -+ fprintf (file, "MAIL FROM:<%s>\n", from); - while (argc) { - fprintf (file, "RCPT TO:<%s>\n", argv[0]); - argv++; argc--; +$FreeBSD$ +--- bsmtp.c.in.orig Wed Feb 7 20:36:42 2001 ++++ bsmtp.c.in Wed Feb 7 20:36:58 2001 +@@ -36,6 +36,7 @@ + #include + #include + #include ++#include + #include + + /* From .../sendmail/src/sysexits.h */ diff -uNr /usr/ports/mail/bsmtp/pkg-plist bsmtp/pkg-plist --- /usr/ports/mail/bsmtp/pkg-plist Sat Oct 28 03:22:47 2000 +++ bsmtp/pkg-plist Wed Feb 7 20:07:56 2001 @@ -1,3 +1,4 @@ +@comment $FreeBSD$ bin/_bqueue bin/bqueue bin/bsmtp >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 Feb 7 12:51:35 2001 Delivered-To: freebsd-ports@freebsd.org Received: from 806a-117.umd.edu (806a-117.umd.edu [128.8.215.117]) by hub.freebsd.org (Postfix) with ESMTP id 6223237B401 for ; Wed, 7 Feb 2001 12:51:17 -0800 (PST) Received: from glue.umd.edu (localhost [127.0.0.1]) by 806a-117.umd.edu (8.11.2/8.11.2) with ESMTP id f17Kotk19400; Wed, 7 Feb 2001 15:50:55 -0500 (EST) (envelope-from bfoz@glue.umd.edu) Message-ID: <3A81B52F.9AB35084@glue.umd.edu> Date: Wed, 07 Feb 2001 15:50:55 -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: Glenn Johnson Cc: ports@FreeBSD.ORG Subject: Re: Linux Matlab on 4.2? References: <3A805F64.5AD03FA@glue.umd.edu> <20010206222303.A1542@gforce.homelan.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Glenn Johnson wrote: > > On Tue, Feb 06, 2001 at 03:32:36PM -0500, Brandon Fosdick wrote: > > > I'm trying to install Matlab for Linux 5.3 on FreeBSD (stable, rebuilt > > yesterday). Does anybody have it working? Somebody in the archives > > mentioned having to install the Linux version of tar but the installer > > doesn't seem to be getting that far. > > I see no reason why you would need the Linux version of tar. > > > > > Here's what happens to me: > > 15:18 bfoz@806a-117~#/cdrom/install > > > > Sorry! We could not determine the machine architecture for your > > host. Please contact: > > > > MathWorks Technical Support > > > > for further assistance. > > > > > > Sorry! Setup aborted . . . > > > > You do not give any specifics so I will have to assume that the install > script is calling uname. I do not use Matlab but the above is most > likely due to the install script calling uname with an absolute path. > Binaries are stored in different areas on FreeBSD and Linux. For > instance, uname is in '/usr/bin' on FreeBSD but '/bin' on RedHat. Try > running the install script with the Linux shell (you do have Linux > compatibility enabled and the linux_base-6.1 port installed, right?). > So try the following: > > /compat/linux/bin/sh /cdrom/install > > This will cause the install script to be run under the linux shell > where it will pick up uname in /bin as it sees it, but it is actually > in /compat/linux/bin. The linux compatibility module will cause > /compat/linux to be the root of the filesystem for linux applications. > > Hope that helps. That works much better, the installer now runs to completion. Unfortunately it won't create any directories. If I manually create the directories it won't copy files into them. Its weird though cause the installer doesn't complain about not copying the files, it just finishes and exits, you have to look in the install log file to see that errors were generated (no such file or directory type errors). Is there some reason why it wouldn't be able to create the directories? I'm installing to /compat/linux/usr/matlabr11. I've tried making the install directory world read/write but that doesn't seem to help. Are there issues with linux compat and coying from cdrom? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 13: 0:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 95FDC37B503 for ; Wed, 7 Feb 2001 13:00:15 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17L0FU15911; Wed, 7 Feb 2001 13:00:15 -0800 (PST) (envelope-from gnats) Received: from rigel.sf.t.u-tokyo.ac.jp (rigel.sf.t.u-tokyo.ac.jp [133.11.87.14]) by hub.freebsd.org (Postfix) with ESMTP id A527F37B401 for ; Wed, 7 Feb 2001 12:50:11 -0800 (PST) Received: from sa264 by rigel.sf.t.u-tokyo.ac.jp with local (Exim 3.22 #1) id 14QbWp-000Pim-00 for FreeBSD-gnats-submit@freebsd.org; Wed, 07 Feb 2001 20:49:27 +0000 Message-Id: Date: Wed, 07 Feb 2001 20:49:27 +0000 From: amakawa@sf.t.u-tokyo.ac.jp Reply-To: amakawa@sf.t.u-tokyo.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24938: update math/netcdf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24938 >Category: ports >Synopsis: update math/netcdf >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 Feb 07 13:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: AMAKAWA Shuhei >Release: FreeBSD 4.2-STABLE i386 >Organization: Univ of Tokyo >Environment: FreeBSD 4.2-STABLE i386 >Description: Update math/netcdf to 3.5-beta8. >How-To-Repeat: >Fix: diff -urN /usr/ports/math/netcdf/Makefile netcdf/Makefile --- /usr/ports/math/netcdf/Makefile Wed Nov 1 14:51:16 2000 +++ netcdf/Makefile Wed Feb 7 20:38:29 2001 @@ -6,7 +6,7 @@ # PORTNAME= netcdf -PORTVERSION= 3.5.b6 +PORTVERSION= 3.5.b8 CATEGORIES= math MASTER_SITES= ftp://unidata.ucar.edu/pub/netcdf/ DISTNAME= ${PORTNAME}-${PORTVERSION:S/.b/-beta/} diff -urN /usr/ports/math/netcdf/distinfo netcdf/distinfo --- /usr/ports/math/netcdf/distinfo Wed Nov 1 14:51:16 2000 +++ netcdf/distinfo Wed Feb 7 20:38:53 2001 @@ -1 +1 @@ -MD5 (netcdf-3.5-beta6.tar.Z) = b99dac4a303e16c41927c5a2933f336f +MD5 (netcdf-3.5-beta8.tar.Z) = 733142b996c911ade0dda505e5d960c6 >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 Feb 7 13: 5:29 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (smtp.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id D4C8837B4EC; Wed, 7 Feb 2001 13:05:04 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f17L4xg07089; Wed, 7 Feb 2001 23:05:01 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f17L54m07960; Wed, 7 Feb 2001 23:05:04 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A81B87E.733AC0DD@FreeBSD.org> Date: Wed, 07 Feb 2001 23:05: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: FUJISHIMA Satsuki , John Polstra , ports@FreeBSD.org, obrien@FreeBSD.org Subject: -pthread and shareable modules [WAS: Strange problems with dynamic linking of libGL.so.1 from XFree86-4.0.2_5] References: <3A6C3D19.E1F56291@FreeBSD.org> <3A6FE52B.AC9970C2@FreeBSD.org> <200101251842.f0PIgTL32394@vashon.polstra.com> <3A70756F.D8A7ED75@FreeBSD.org> <200101251903.f0PJ3qF32488@vashon.polstra.com> <3A755D84.266A80E7@FreeBSD.org> <86vgqn7vj4.wl@cheerful.com> <3A8188ED.FC2A6241@FreeBSD.org> Content-Type: multipart/mixed; boundary="------------088A5CEB77CF590AF02D81D2" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------088A5CEB77CF590AF02D81D2 Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Maxim Sobolev wrote: > FUJISHIMA Satsuki wrote: > > > As libc_r does not have libc feature now, there's no reason to avoid > > linking -lc_r against shared libraries, I think. > > > > David, John what do you think about this patch? BTW, I tested it and it solved this problem (though I have to remove excessive "}" from the patch proposed by FUJISHIMA. May I cvs ci it? -Maxim --------------088A5CEB77CF590AF02D81D2 Content-Type: text/plain; charset=koi8-r; name="diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diff" Index: src/contrib/gcc.295/config/freebsd.h =================================================================== RCS file: /home/ncvs/src/contrib/gcc.295/config/freebsd.h,v retrieving revision 1.31 diff -d -u -r1.31 freebsd.h --- src/contrib/gcc.295/config/freebsd.h 2001/01/25 18:57:13 1.31 +++ src/contrib/gcc.295/config/freebsd.h 2001/02/07 21:00:12 @@ -76,10 +76,8 @@ (like the default, except no -lg, and no -p). */ #undef LIB_SPEC #define LIB_SPEC "\ - %{!shared: \ - %{!pg: %{pthread:-lc_r} -lc} \ - %{pg: %{pthread:-lc_r_p} -lc_p} \ - }" + %{!pg: %{pthread:-lc_r} -lc} \ + %{pg: %{pthread:-lc_r_p} -lc_p}" /************************[ Target stuff ]***********************************/ --------------088A5CEB77CF590AF02D81D2-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 13: 7:10 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 0C0D237B67D; Wed, 7 Feb 2001 13:06:53 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.2/8.11.1) id f17L6qB64303; Wed, 7 Feb 2001 13:06:52 -0800 (PST) (envelope-from obrien) Date: Wed, 7 Feb 2001 13:06:52 -0800 From: "David O'Brien" To: Maxim Sobolev Cc: FUJISHIMA Satsuki , John Polstra , ports@FreeBSD.org Subject: Re: -pthread and shareable modules [WAS: Strange problems with dynamic linking of libGL.so.1 from XFree86-4.0.2_5] Message-ID: <20010207130651.J57024@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <3A6C3D19.E1F56291@FreeBSD.org> <3A6FE52B.AC9970C2@FreeBSD.org> <200101251842.f0PIgTL32394@vashon.polstra.com> <3A70756F.D8A7ED75@FreeBSD.org> <200101251903.f0PJ3qF32488@vashon.polstra.com> <3A755D84.266A80E7@FreeBSD.org> <86vgqn7vj4.wl@cheerful.com> <3A8188ED.FC2A6241@FreeBSD.org> <3A81B87E.733AC0DD@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: <3A81B87E.733AC0DD@FreeBSD.org>; from sobomax@FreeBSD.org on Wed, Feb 07, 2001 at 11:05:02PM +0200 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: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 11:05:02PM +0200, Maxim Sobolev wrote: > May I cvs ci it? NO. I'll do it (I've got other changes it would cause a conflict with that I'd like to change at the same time). Also I want more time to make *sure* we want to do this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 13:10:28 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EA79037B503 for ; Wed, 7 Feb 2001 13:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17LA3719304; Wed, 7 Feb 2001 13:10:03 -0800 (PST) (envelope-from gnats) Received: from sayshell.research.uu.net (sayshell.research.uu.net [63.87.62.90]) by hub.freebsd.org (Postfix) with ESMTP id 4FAE337B401 for ; Wed, 7 Feb 2001 13:04:23 -0800 (PST) Received: (from louie@localhost) by sayshell.research.uu.net (8.11.1/8.11.0) id f17L44r09000; Wed, 7 Feb 2001 16:04:04 -0500 (EST) (envelope-from louie) Message-Id: <200102072104.f17L44r09000@sayshell.research.uu.net> Date: Wed, 7 Feb 2001 16:04:04 -0500 (EST) From: louie@transsys.com Reply-To: louie@transsys.com To: FreeBSD-gnats-submit@freebsd.org, ozz@FreeBSD.org.ru X-Send-Pr-Version: 3.2 Subject: ports/24940: ports net/scotty3 bug with Tnm::icmp command and nmicmpd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24940 >Category: ports >Synopsis: prolem with Tnm::icmp echo command due to nmicmpd bug >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 Feb 07 13:10:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: Louis Mamakos >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: 4.2-STABLE >Description: In the scotty Tnm package, a standalone daemon, nmicmpd, is used on behalf of user programs to send and receive ICMP messages. This is used by the Tnm::icmp echo command, which is used by tkined. If you attempt to send an ICMP echo to a host on the same ethernet subnet, and that host is down/turned off, the Tnm::icmp echo command will fail rather than return an unreachable indication on some occasions. This is because the nmicmpd program will occasionally get an EHOSTDOWN error when doing a sendto() when the ARP entry resolution times out. This is a problem since this API can support a list of hosts to send traffic to, and a single error as described will abort the entire operation. >How-To-Repeat: as described above >Fix: When an EHOSTDOWN error occurs, just ignore it, and wait for a subsequent higher-level retransmit or timeout to declare the host dead. This has also been reported to the author of the package, though the FreeBSD port isn't tracking the HEAD of his repository where the fix is likely to appear, and very few "releases" of this branch seem to be made. --- unix/nmicmpd.c.orig Tue Feb 6 15:34:03 2001 +++ unix/nmicmpd.c Tue Feb 6 15:44:53 2001 @@ -924,6 +924,14 @@ if (rc != size) { if (rc < 0) { + /* + * If we get an EHOSTDOWN error, this probably means that + * the the pending ARP entry has timed out for the host. + * Just ignore the error, and attempt a normal retry. + */ + if (errno == EHOSTDOWN) + return 0; + PosixError("sendto failed"); } job->status = ICMP_STATUS_GENERROR; >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 Feb 7 13:10:29 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BC2BA37B4EC for ; Wed, 7 Feb 2001 13:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17LA3u19295; Wed, 7 Feb 2001 13:10:03 -0800 (PST) (envelope-from gnats) Received: from andrew.nonstop.net.il (webedge.nonstop.net.il [213.57.71.5]) by hub.freebsd.org (Postfix) with ESMTP id 785F637B4EC for ; Wed, 7 Feb 2001 13:00:27 -0800 (PST) Received: from alchemy.oven.org ([62.0.145.199]) by andrew.nonstop.net.il with ESMTP id <20010207210033.CDBO19042.andrew@alchemy.oven.org> for ; Wed, 7 Feb 2001 23:00:33 +0200 Received: (from mapc@localhost) by alchemy.oven.org (8.11.2/8.11.2) id f17KxxF63874; Wed, 7 Feb 2001 22:59:59 +0200 (IST) (envelope-from mapc) Message-Id: <200102072059.f17KxxF63874@alchemy.oven.org> Date: Wed, 7 Feb 2001 22:59:59 +0200 (IST) From: roman@xpert.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24939: [NEW PORT] graphics/xmms-avi - .avi and .asf (avifile based) plugin for xmms Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24939 >Category: ports >Synopsis: [NEW PORT] graphics/xmms-avi - .avi and .asf (avifile based) plugin for xmms >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 Feb 07 13:10:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Roman Shterenzon >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: It's really, really nice :) I also sent a patch which allows building avifile without QT to avifile maintainer. >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: # # xmms-avi # xmms-avi/pkg-plist # xmms-avi/pkg-descr # xmms-avi/pkg-comment # xmms-avi/Makefile # xmms-avi/files # xmms-avi/files/patch-aa # xmms-avi/files/patch-ab # xmms-avi/distinfo # echo c - xmms-avi mkdir -p xmms-avi > /dev/null 2>&1 echo x - xmms-avi/pkg-plist sed 's/^X//' >xmms-avi/pkg-plist << 'END-of-xmms-avi/pkg-plist' Xlib/xmms/Input/libavixmms.so END-of-xmms-avi/pkg-plist echo x - xmms-avi/pkg-descr sed 's/^X//' >xmms-avi/pkg-descr << 'END-of-xmms-avi/pkg-descr' XAn avifile and SDL based .avi and .asf file playback plugin for XMMS. X XWWW: http://www.xmms.org/ X XRoman Shterenzon END-of-xmms-avi/pkg-descr echo x - xmms-avi/pkg-comment sed 's/^X//' >xmms-avi/pkg-comment << 'END-of-xmms-avi/pkg-comment' XAn avifile based .avi and .asf file playback plugin for XMMS END-of-xmms-avi/pkg-comment echo x - xmms-avi/Makefile sed 's/^X//' >xmms-avi/Makefile << 'END-of-xmms-avi/Makefile' X# Ports collection makefile for: xmms-avi X# Date created: Feb 6 2000 X# Whom: Roman Shterenzon X# X# $FreeBSD$ X# X XPORTNAME= xmms-avi XPORTVERSION= 1.2.2 XCATEGORIES= graphics XMASTER_SITES= http://www.xmms.org/files/plugins/avi-xmms/ \ X ftp://ftp.sunet.se/pub/multimedia/xmms/plugins/avi-xmms/ \ X ftp://ftp.fu-berlin.de/unix/sound/xmms/plugins/avi-xmms/ XDISTNAME= avi-xmms-${PORTVERSION} X XMAINTAINER= roman@xpert.com X XBUILD_DEPENDS= xmms-config:${PORTSDIR}/audio/xmms XLIB_DEPENDS= aviplay.0:${PORTSDIR}/graphics/avifile XRUN_DEPENDS= xmms:${PORTSDIR}/audio/xmms X XSDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config X XONLY_FOR_ARCHS= i386 XUSE_X_PREFIX= yes XUSE_GTK= yes XUSE_LIBTOOL= yes XCONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" X Xpre-patch: X @${PERL} -pi -e "s|lc_r|pthread|g" ${WRKSRC}/configure X X# This is to avoid libtool running ldconfig -m ${X11BASE}/lib/xmms/Input Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/src/.libs/libavixmms.so ${PREFIX}/lib/xmms/Input X X.include END-of-xmms-avi/Makefile echo c - xmms-avi/files mkdir -p xmms-avi/files > /dev/null 2>&1 echo x - xmms-avi/files/patch-aa sed 's/^X//' >xmms-avi/files/patch-aa << 'END-of-xmms-avi/files/patch-aa' X--- configure.orig Wed Feb 7 22:07:08 2001 X+++ configure Wed Feb 7 22:08:06 2001 X@@ -2192,7 +2192,8 @@ X no_sdl=yes X else X SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags` X- SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs` X+# Having Xxf86vm and friends makes libtool unhappy and unable to create .so X+ SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs | sed 's/-lXxf86vm -lXxf86dga -lXv//'` X X sdl_major_version=`$SDL_CONFIG $sdl_args --version | \ X sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` END-of-xmms-avi/files/patch-aa echo x - xmms-avi/files/patch-ab sed 's/^X//' >xmms-avi/files/patch-ab << 'END-of-xmms-avi/files/patch-ab' X--- src/ctrackbar.cpp.orig Wed Feb 7 16:25:26 2001 X+++ src/ctrackbar.cpp Wed Feb 7 16:25:33 2001 X@@ -1,5 +1,5 @@ X #include X-#include X+#include X #include "bmpdata.cpp" X #include "ctrackbar.h" END-of-xmms-avi/files/patch-ab echo x - xmms-avi/distinfo sed 's/^X//' >xmms-avi/distinfo << 'END-of-xmms-avi/distinfo' XMD5 (avi-xmms-1.2.2.tar.gz) = 0532dce534cf6f7ba1d1563547128659 END-of-xmms-avi/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 Wed Feb 7 13:12:14 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 8FE5F37B4EC; Wed, 7 Feb 2001 13:11:48 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f17LBfg07148; Wed, 7 Feb 2001 23:11:41 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f17LBkm08003; Wed, 7 Feb 2001 23:11:46 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A81BA10.97EA1EFF@FreeBSD.org> Date: Wed, 07 Feb 2001 23:11:44 +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: obrien@FreeBSD.org Cc: FUJISHIMA Satsuki , John Polstra , ports@FreeBSD.org Subject: Re: -pthread and shareable modules [WAS: Strange problems with dynamic linking of libGL.so.1 from XFree86-4.0.2_5] References: <3A6C3D19.E1F56291@FreeBSD.org> <3A6FE52B.AC9970C2@FreeBSD.org> <200101251842.f0PIgTL32394@vashon.polstra.com> <3A70756F.D8A7ED75@FreeBSD.org> <200101251903.f0PJ3qF32488@vashon.polstra.com> <3A755D84.266A80E7@FreeBSD.org> <86vgqn7vj4.wl@cheerful.com> <3A8188ED.FC2A6241@FreeBSD.org> <3A81B87E.733AC0DD@FreeBSD.org> <20010207130651.J57024@dragon.nuxi.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org David O'Brien wrote: > On Wed, Feb 07, 2001 at 11:05:02PM +0200, Maxim Sobolev wrote: > > May I cvs ci it? > > NO. I SEE. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 13:28:38 2001 Delivered-To: freebsd-ports@freebsd.org Received: from 806a-117.umd.edu (806a-117.umd.edu [128.8.215.117]) by hub.freebsd.org (Postfix) with ESMTP id 785F737B503 for ; Wed, 7 Feb 2001 13:28:18 -0800 (PST) Received: from glue.umd.edu (localhost [127.0.0.1]) by 806a-117.umd.edu (8.11.2/8.11.2) with ESMTP id f17LRXk22006; Wed, 7 Feb 2001 16:27:34 -0500 (EST) (envelope-from bfoz@glue.umd.edu) Message-ID: <3A81BDC5.F932DA75@glue.umd.edu> Date: Wed, 07 Feb 2001 16:27:33 -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: Glenn Johnson , ports@FreeBSD.ORG Subject: Re: Linux Matlab on 4.2? References: <3A805F64.5AD03FA@glue.umd.edu> <20010206222303.A1542@gforce.homelan.net> <3A81B52F.9AB35084@glue.umd.edu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Brandon Fosdick wrote: > > Glenn Johnson wrote: > > > > On Tue, Feb 06, 2001 at 03:32:36PM -0500, Brandon Fosdick wrote: > > > > > I'm trying to install Matlab for Linux 5.3 on FreeBSD (stable, rebuilt > > > yesterday). Does anybody have it working? Somebody in the archives > > > mentioned having to install the Linux version of tar but the installer > > > doesn't seem to be getting that far. > > > > I see no reason why you would need the Linux version of tar. > > > > > > > > Here's what happens to me: > > > 15:18 bfoz@806a-117~#/cdrom/install > > > > > > Sorry! We could not determine the machine architecture for your > > > host. Please contact: > > > > > > MathWorks Technical Support > > > > > > for further assistance. > > > > > > > > > Sorry! Setup aborted . . . > > > > > > > You do not give any specifics so I will have to assume that the install > > script is calling uname. I do not use Matlab but the above is most > > likely due to the install script calling uname with an absolute path. > > Binaries are stored in different areas on FreeBSD and Linux. For > > instance, uname is in '/usr/bin' on FreeBSD but '/bin' on RedHat. Try > > running the install script with the Linux shell (you do have Linux > > compatibility enabled and the linux_base-6.1 port installed, right?). > > So try the following: > > > > /compat/linux/bin/sh /cdrom/install > > > > This will cause the install script to be run under the linux shell > > where it will pick up uname in /bin as it sees it, but it is actually > > in /compat/linux/bin. The linux compatibility module will cause > > /compat/linux to be the root of the filesystem for linux applications. > > > > Hope that helps. > > That works much better, the installer now runs to completion. > Unfortunately it won't create any directories. If I manually create the > directories it won't copy files into them. Its weird though cause the > installer doesn't complain about not copying the files, it just finishes > and exits, you have to look in the install log file to see that errors > were generated (no such file or directory type errors). > > Is there some reason why it wouldn't be able to create the directories? > I'm installing to /compat/linux/usr/matlabr11. I've tried making the > install directory world read/write but that doesn't seem to help. Are > there issues with linux compat and coying from cdrom? I figured it out. This is why you the message in the archives talked about installing the Linux version of tar. The installed, running in Linux land, can't find /usr/bin/tar. Instead of installing tar I just symlink'd to the /usr/local/bin/tar and everything worked. Now my problem is getting Matlab itself to run. Here's what I get running it straight out... 16:22 bfoz@806a-117~>/compat/linux/usr/matlabr11/bin/matlab Sorry! We could not determine the machine architecture for your host. Please contact: MathWorks Technical Support for further assistance. ..so I slap myself for being stupid and try this... 16:25 bfoz@806a-117~>/compat/linux/bin/sh /compat/linux/usr/matlabr11/bin/matlab /compat/linux/usr/matlabr11/bin/matlab: /dev/null: Permission denied Internal error 1: We could not determine the path of the MATLAB root directory. original command path = /compat/linux/usr/matlabr11/bin/matlab current command path = /compat/linux/usr/matlabr11/bin/matlab Please contact: MathWorks Technical Support for further assistance. So far the only way around this that I've found is to su before running the above. I don't like running Matlab as root so I'm still looking for a solution. Any ideas? Maybe I'll try changing the perms on /dev/null... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 13:30:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE05237B69B for ; Wed, 7 Feb 2001 13:30:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17LU4121502; Wed, 7 Feb 2001 13:30:04 -0800 (PST) (envelope-from gnats) Received: from atoz.libagent.org (libagent.cs.technion.ac.il [132.68.32.100]) by hub.freebsd.org (Postfix) with ESMTP id E4E5137B401 for ; Wed, 7 Feb 2001 13:27:55 -0800 (PST) Received: (from nadav@localhost) by atoz.libagent.org (8.9.3/8.9.3) id XAA18899; Wed, 7 Feb 2001 23:29:27 +0200 (IST) (envelope-from nadav) Message-Id: <200102072129.XAA18899@atoz.libagent.org> Date: Wed, 7 Feb 2001 23:29:27 +0200 (IST) From: nadav@libagent.org Reply-To: nadav@libagent.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24941: Ports update: hebrew/pine (by MAINTAINER) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24941 >Category: ports >Synopsis: Ports update: hebrew/pine (by MAINTAINER) >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 07 13:30:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Nadav Eiron >Release: FreeBSD 4.2-RELEASE i386 >Organization: >Environment: >Description: This is an updated of the hebrew/pine port to Pine 4.33, with Hebrew support version 2.09. The old tarball was removed from the master site, so version 4.30 no longer builds... >How-To-Repeat: >Fix: apply the patch below to ports. diff -uNr hebrew/pine.orig/Makefile hebrew/pine/Makefile --- hebrew/pine.orig/Makefile Thu Nov 2 07:15:21 2000 +++ hebrew/pine/Makefile Wed Feb 7 12:16:31 2001 @@ -5,10 +5,10 @@ # $FreeBSD: ports/hebrew/pine/Makefile,v 1.5 2000/11/02 15:15:21 kevlo Exp $ PORTNAME= pine -PORTVERSION= 4.30.2.9 +PORTVERSION= 4.33.2.9 CATEGORIES= hebrew mail news MASTER_SITES= ftp://www8.cc.huji.ac.il/pub/pine/ -DISTNAME= pine4.30_heb2.09 +DISTNAME= pine4.33_heb2.09 MAINTAINER?= nadav@cs.technion.ac.il diff -uNr hebrew/pine.orig/distinfo hebrew/pine/distinfo --- hebrew/pine.orig/distinfo Thu Nov 2 07:15:21 2000 +++ hebrew/pine/distinfo Wed Feb 7 12:19:33 2001 @@ -1 +1 @@ -MD5 (pine4.30_heb2.09.tar.gz) = b875b5e0bb514e319f534459e88a3925 +MD5 (pine4.33_heb2.09.tar.gz) = d554597ab0c2dfd77e27706c08935c05 diff -uNr hebrew/pine.orig/files/patch-af hebrew/pine/files/patch-af --- hebrew/pine.orig/files/patch-af Thu Nov 2 07:15:24 2000 +++ hebrew/pine/files/patch-af Wed Feb 7 13:14:36 2001 @@ -22,7 +22,7 @@ dummy.o pseudo.o netmsg.o flstring.o fdstring.o \ rfc822.o nntp.o smtp.o imap4r1.o pop3.o \ unix.o mbox.o mbx.o mmdf.o tenex.o mtx.o news.o phile.o mh.o mx.o -! CFLAGS=$(BASECFLAGS) $(EXTRACFLAGS) +! CFLAGS=-g CAT=cat MAKE=make @@ -30,7 +30,7 @@ dummy.o pseudo.o netmsg.o flstring.o fdstring.o \ rfc822.o nntp.o smtp.o imap4r1.o pop3.o \ unix.o mbox.o mbx.o mmdf.o tenex.o mtx.o news.o phile.o mh.o mx.o -! CFLAGS+=$(BASECFLAGS) $(EXTRACFLAGS) +! CFLAGS+=-g CAT=cat MAKE=make >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 Feb 7 15:30:47 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail8.mgfairfax.rr.com (unknown [24.93.67.55]) by hub.freebsd.org (Postfix) with ESMTP id 166DB37B503 for ; Wed, 7 Feb 2001 15:30:30 -0800 (PST) Received: from [24.163.103.62] ([24.163.103.62]) by mail8.mgfairfax.rr.com with Microsoft SMTPSVC(5.5.1877.537.53); Wed, 7 Feb 2001 18:26:52 -0500 Mime-Version: 1.0 X-Sender: matt@mail.nova.org Message-Id: Disposition-Notification-To: Matthew Lyle Date: Wed, 7 Feb 2001 18:28:56 -0500 To: ports@FreeBSD.org From: Matthew Lyle Subject: FreeBSD Port: imap-uw-4.8_1 Cc: ports@FreeBSD.org Content-Type: text/plain; charset="us-ascii" ; format="flowed" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The imap port is out of date. The distribution file it attempts to ftp down doesn't exist. Is this going to be fixed soon? -- Matthew Lyle matt@nova.org / matt-pager@nova.org PGP key available on certserver.pgp.com 703-573-8895 501-423-3245 Fax 703-864-2173 Cell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 15:31:57 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34EA337B503; Wed, 7 Feb 2001 15:31:39 -0800 (PST) Received: (from mi@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17NVd140014; Wed, 7 Feb 2001 15:31:39 -0800 (PST) (envelope-from mi) Date: Wed, 7 Feb 2001 15:31:39 -0800 (PST) From: Message-Id: <200102072331.f17NVd140014@freefall.freebsd.org> To: mi@aldan.algebra.com, mi@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24506: MAINTAINER UPRADE: x11-fonts/geminifonts was broken :( Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MAINTAINER UPRADE: x11-fonts/geminifonts was broken :( State-Changed-From-To: open->closed State-Changed-By: mi State-Changed-When: Wed Feb 7 15:11:15 PST 2001 State-Changed-Why: I commited the fixes despite the mild protests. The instructions assumed certain knowledge of the xset before. Perhaps, I'll modify them later. As far as parallel building -- it should be done with greater support from . I guess, a port should just be able to declare itself NON_PARALLEL, in which case bsd.ports.mk will NOT add `-j <#ofcpus+1>' to the MAKEFLAGS. Until then -- everyone is on its own :) http://www.freebsd.org/cgi/query-pr.cgi?pr=24506 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 15:32:55 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id CC7E937B503; Wed, 7 Feb 2001 15:32:37 -0800 (PST) Received: (from mi@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f17NWXV40222; Wed, 7 Feb 2001 15:32:33 -0800 (PST) (envelope-from mi) Date: Wed, 7 Feb 2001 15:32:33 -0800 (PST) From: Message-Id: <200102072332.f17NWXV40222@freefall.freebsd.org> To: mi@privatelabs.com, mi@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23310: maintainer upgrade: www/tclhttpd Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: maintainer upgrade: www/tclhttpd State-Changed-From-To: open->closed State-Changed-By: mi State-Changed-When: Wed Feb 7 15:32:16 PST 2001 State-Changed-Why: Commited, thanks :) http://www.freebsd.org/cgi/query-pr.cgi?pr=23310 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 16:19:32 2001 Delivered-To: freebsd-ports@freebsd.org Received: from hex.databits.net (hex.databits.net [207.29.192.16]) by hub.freebsd.org (Postfix) with SMTP id 8C14237B684 for ; Wed, 7 Feb 2001 16:19:14 -0800 (PST) Received: (qmail 62471 invoked by uid 1001); 8 Feb 2001 00:19:11 -0000 Date: Wed, 7 Feb 2001 19:19:11 -0500 From: Pete Fritchman To: Matthew Lyle Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: imap-uw-4.8_1 Message-ID: <20010207191911.A62028@databits.net> 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 matt@nova.org on Wed, Feb 07, 2001 at 06:28:56PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I'm waiting for someone with the commit bit to read and commit PR 24864[1]. You can just apply the patch from the PR yourself for the time being. -pete [1] http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24864 ++ 07/02/01 18:28 -0500 - Matthew Lyle: > >The imap port is out of date. The distribution file it attempts to >ftp down doesn't exist. Is this going to be fixed soon? > >-- > > >Matthew Lyle >matt@nova.org / matt-pager@nova.org PGP key available on certserver.pgp.com >703-573-8895 >501-423-3245 Fax >703-864-2173 Cell > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-ports" in the body of the message -- Pete Fritchman Databits Network Services, Inc. finger petef@databits.net for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 16:25:13 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 29BEC37B401 for ; Wed, 7 Feb 2001 16:24:56 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.2/8.11.1) id f180OSg70754; Wed, 7 Feb 2001 16:24:28 -0800 (PST) (envelope-from obrien) Date: Wed, 7 Feb 2001 16:24:27 -0800 From: "David O'Brien" To: "Valeriy E. Ushakov" Cc: ports@FreeBSD.ORG Subject: Re: Stable and devel ports Message-ID: <20010207162427.A70586@dragon.nuxi.com> Reply-To: ports@FreeBSD.ORG References: <20010207225305.C2444@snark.ptc.spbu.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010207225305.C2444@snark.ptc.spbu.ru>; from uwe@ptc.spbu.ru on Wed, Feb 07, 2001 at 10:53:05PM +0300 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: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 10:53:05PM +0300, Valeriy E. Ushakov wrote: > Porter's handbook doesn't seem to touch this topic. What are the best > current practice for maintaining a stable and a -devel versions of a > port? Are any special arrangements to allow them to live side by side > desirable or one can safely assume that its stable XOR devel. Personally I'd like them to be called -snapshot, so -devel and mean a package used in developement. -- -- 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 Wed Feb 7 16:33:11 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 3A40E37B401; Wed, 7 Feb 2001 16:32:51 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.2/8.11.1) id f180Wos70896; Wed, 7 Feb 2001 16:32:50 -0800 (PST) (envelope-from obrien) Date: Wed, 7 Feb 2001 16:32:49 -0800 From: "David O'Brien" To: Ade Lovett Cc: Vivek Khera , ports@FreeBSD.org Subject: Re: Apache mod_ ports Message-ID: <20010207163249.B70586@dragon.nuxi.com> Reply-To: ports@FreeBSD.org References: <20010205180431.D17025@mail.vcnet.com> <14976.6091.425890.658134@onceler.kciLink.com> <20010206114010.I454@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: <20010206114010.I454@FreeBSD.org>; from ade@FreeBSD.org on Tue, Feb 06, 2001 at 11:40:10AM -0600 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: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 11:40:10AM -0600, Ade Lovett wrote: > weeks to polish it all off. Sadly, the bikeshed that has already > started, many moons ago, with the complete brain-deadness of our > apache collection, means that it's unlikely to ever go into the > main tree. Please, hell P-L-E-A-S-E don't stop for a bike shed. Our current collection of Apache ports is *very* embarrising. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 16:35: 7 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 8826037B4EC for ; Wed, 7 Feb 2001 16:34:49 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.2/8.11.1) id f180YdO70969; Wed, 7 Feb 2001 16:34:39 -0800 (PST) (envelope-from obrien) Date: Wed, 7 Feb 2001 16:34:39 -0800 From: "David O'Brien" To: Akinori MUSHA Cc: ports@FreeBSD.org Subject: Re: new tool: portupgrade Message-ID: <20010207163439.C70586@dragon.nuxi.com> Reply-To: ports@FreeBSD.org References: <86k874g4c5.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: <86k874g4c5.wl@archon.local.idaemons.org>; from knu@iDaemons.org on Tue, Feb 06, 2001 at 07:19:54AM +0900 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: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 07:19:54AM +0900, Akinori MUSHA wrote: > I wrote a handy tool to upgrade already installed packages with the > latest ports, called . It's still far from finished > (error handling, recursive upgrades, etc.), but it has achieved my > primary goal. How does this compare with pkg_update? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 16:43:30 2001 Delivered-To: freebsd-ports@freebsd.org Received: from nts.nts.umn.edu (nts.nts.umn.edu [128.101.4.1]) by hub.freebsd.org (Postfix) with ESMTP id 858FC37B503; Wed, 7 Feb 2001 16:43:13 -0800 (PST) Received: from nts.umn.edu (versa-nt.nts.umn.edu [128.101.64.13]) by nts.nts.umn.edu (8.9.1a/8.9.1) with ESMTP id SAA10177; Wed, 7 Feb 2001 18:43:12 -0600 (CST) Message-ID: <3A81EB9E.B7DBFE56@nts.umn.edu> Date: Wed, 07 Feb 2001 18:43:10 -0600 From: Frank DiGravina X-Mailer: Mozilla 4.61 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: andreas@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: cflowd-2-1-b1_1 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andreas, With regard to cflowd-2-1-b1_1 I am unable to see any data collection occurring. I obnserve the cflowdmux, cflowd and cfdcollect processes running. The OS is FreeBSD 4.2. Any clues? Cordially Frank DiGravina digravin@nts.umn.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 16:46: 1 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 6DA4137B65D for ; Wed, 7 Feb 2001 16:45:40 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.2/8.11.1) id f180jH771303; Wed, 7 Feb 2001 16:45:17 -0800 (PST) (envelope-from obrien) Date: Wed, 7 Feb 2001 16:45:16 -0800 From: "David O'Brien" To: clefevre@noos.fr Cc: "David W. Chapman Jr." , ports@FreeBSD.ORG Subject: Re: /usr/ports/net/isc-dhcp3 problem Message-ID: <20010207164516.D70586@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <5.0.2.1.2.20010204231749.00b0b298@mail.brightmail.com> <009601c08f86$b6352620$931576d8@inethouston.net> <7l348kdk.fsf@gits.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <7l348kdk.fsf@gits.dyndns.org>; from clefevre@citeweb.net on Tue, Feb 06, 2001 at 06:12:55AM +0100 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: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 06:12:55AM +0100, Cyrille Lefevre wrote: > "David W. Chapman Jr." writes: > > > It does one mine, although you have to edit it manually to set the > > interface. > > anybody to close http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24542 > and to commit http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24686 ? I would *HIGHLY* suggest you work with Ted Lemon to get these changes into the stock sources: files/patch-freebsd set something -> set -- something and arp -n -d -> arp -d (-n in meaningless in this case) accordingly to /sbin/dhclient-script. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 16:46:45 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id F109F37B401 for ; Wed, 7 Feb 2001 16:46:24 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.2/8.11.1) id f180kGX71313; Wed, 7 Feb 2001 16:46:16 -0800 (PST) (envelope-from obrien) Date: Wed, 7 Feb 2001 16:46:16 -0800 From: "David O'Brien" To: Trevin Chow Cc: ports@FreeBSD.org Subject: Re: /usr/ports/net/isc-dhcp3 problem Message-ID: <20010207164616.E70586@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <5.0.2.1.2.20010204231749.00b0b298@mail.brightmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <5.0.2.1.2.20010204231749.00b0b298@mail.brightmail.com>; from trevin@mail.com on Sun, Feb 04, 2001 at 11:18:48PM -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: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Feb 04, 2001 at 11:18:48PM -0800, Trevin Chow wrote: > Hi there, > > For some reason the isc-dhcp3 port has the 2 files: > > /usr/local/etc/rc.d/dhcpd.sh > and > /usr/local/etc/dhcpd.conf > > For some reason the dhcpd.sh file doesn't have the correct command line > parameters to read the dhcpd.conf file. The path to dhcpd.conf should be hardcoded in the dhcpd binary. You only need the command line option if you don't like the /usr/local/etc/dhcpd.conf default. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 16:48:12 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.liwing.de (unknown [195.124.230.50]) by hub.freebsd.org (Postfix) with SMTP id 677E037B4EC for ; Wed, 7 Feb 2001 16:47:49 -0800 (PST) Received: (qmail 26173 invoked from network); 8 Feb 2001 00:34:31 -0000 Received: from unknown (HELO liwing.de) (195.124.230.61) by mail.liwing.de with SMTP; 8 Feb 2001 00:34:31 -0000 Message-ID: <3A81EC8C.2D0F5AFD@liwing.de> Date: Thu, 08 Feb 2001 01:47:08 +0100 From: Jens Rehsack X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: FreeBSD Port: analog-4.11 Content-Type: multipart/mixed; boundary="------------684CD85FC44CB8EAB0CADFBA" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------684CD85FC44CB8EAB0CADFBA Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Hi! It seems noone builds the new analog-4.15 package. If I want to do that, for what must I have a look to build a package that www.freebsd.org can use? I mean not how to build a package - that's documented and I read. Which libraries I must use or doesn't it matter? Hope you can help me :-) so that I can halp the community (can I name it so?) Bye Jens -- Jens Rehsack LiWing Friesenstraße 2 06112 Halle Tel.: +49 - 3 45 - 5 17 05 91 Fax: +49 - 3 45 - 5 17 05 92 Handy: +49 - 1 73 - 3 72 15 28 e-Mail: http://www.liwing.de/ --------------684CD85FC44CB8EAB0CADFBA Content-Type: text/x-vcard; charset=us-ascii; name="rehsack.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Jens Rehsack Content-Disposition: attachment; filename="rehsack.vcf" begin:vcard n:Rehsack;Jens tel;fax:+49 - 3 45 - 5 17 05 92 tel;work:+49 - 3 45 - 5 17 05 91 x-mozilla-html:FALSE url:www.liwing.de org:LiWing adr:;;Friesenstraße 2;Halle;;06112;Germany version:2.1 email;internet:rehsack@liwing.de end:vcard --------------684CD85FC44CB8EAB0CADFBA-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 16:49:13 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id 211B837B401 for ; Wed, 7 Feb 2001 16:48:55 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.2/8.11.1) id f180ms471410 for freebsd-ports@FreeBSD.ORG; Wed, 7 Feb 2001 16:48:54 -0800 (PST) (envelope-from obrien) Date: Wed, 7 Feb 2001 16:48:54 -0800 From: "David O'Brien" To: freebsd-ports@FreeBSD.ORG Subject: Re: Which XFree86 4 port to use? Message-ID: <20010207164854.F70586@dragon.nuxi.com> Reply-To: ports@FreeBSD.ORG References: <20010204002552.12C3F5E32@tomservo.vrac.iastate.edu> <20010203183126.A42809@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010203183126.A42809@xor.obsecurity.org>; from kris@obsecurity.org on Sat, Feb 03, 2001 at 06:31:26PM -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: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Feb 03, 2001 at 06:31:26PM -0800, Kris Kennaway wrote: > On Sat, Feb 03, 2001 at 06:25:51PM -0600, Patrick Hartling wrote: > > > So my question is really this: should I build 4.0.2 from XFree86-4 or > > just continue to be patient waiting for the modularized version to be > > upgraded? It doesn't matter either way to me, but I want to be sure to > > use the one that will get along with all the other X11 ports. Thanks. > > Well, presumably the modular one will be upgraded at some point, so Or a more responsive maintainer should be sought... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 16:51:33 2001 Delivered-To: freebsd-ports@freebsd.org Received: from nts.nts.umn.edu (nts.nts.umn.edu [128.101.4.1]) by hub.freebsd.org (Postfix) with ESMTP id BB80337B401 for ; Wed, 7 Feb 2001 16:51:16 -0800 (PST) Received: from nts.umn.edu (versa-nt.nts.umn.edu [128.101.64.13]) by nts.nts.umn.edu (8.9.1a/8.9.1) with ESMTP id SAA10832; Wed, 7 Feb 2001 18:51:07 -0600 (CST) Message-ID: <3A81ED79.80E54628@nts.umn.edu> Date: Wed, 07 Feb 2001 18:51:06 -0600 From: Frank DiGravina X-Mailer: Mozilla 4.61 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: .@babolo.ru Cc: ports@FreeBSD.org Subject: FreeBSD Port: flow-tools-0.34 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, One question I would have is this: how do you compare and contrast with the cflowd suite - which is also a FreeBSD port. I am looking for a way to pull data out and store in a data structure that I can generate some 'eye-catching' graphs, such as using flow-scan to load an rrd db for later use by cricket. Cordially, Frank DiGravina digravin@nts.umn.edu 612 626-9074 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 16:53:20 2001 Delivered-To: freebsd-ports@freebsd.org Received: from wall.polstra.com (rtrwan160.accessone.com [206.213.115.74]) by hub.freebsd.org (Postfix) with ESMTP id F034837B65D; Wed, 7 Feb 2001 16:53:00 -0800 (PST) Received: from vashon.polstra.com (vashon.polstra.com [206.213.73.13]) by wall.polstra.com (8.11.1/8.11.1) with ESMTP id f180r0213517; Wed, 7 Feb 2001 16:53:00 -0800 (PST) (envelope-from jdp@wall.polstra.com) Received: (from jdp@localhost) by vashon.polstra.com (8.11.1/8.11.0) id f180qxH02749; Wed, 7 Feb 2001 16:52:59 -0800 (PST) (envelope-from jdp) Date: Wed, 7 Feb 2001 16:52:59 -0800 (PST) Message-Id: <200102080052.f180qxH02749@vashon.polstra.com> To: ports@freebsd.org From: John Polstra Reply-To: ports@freebsd.org Cc: sobomax@freebsd.org Subject: Re: Strange problems with dynamic linking of libGL.so.1 from XFree86-4.0.2_5 In-Reply-To: <3A8188ED.FC2A6241@FreeBSD.org> References: <3A6C3D19.E1F56291@FreeBSD.org> <3A755D84.266A80E7@FreeBSD.org> <86vgqn7vj4.wl@cheerful.com> <3A8188ED.FC2A6241@FreeBSD.org> Organization: Polstra & Co., Seattle, WA Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In article <3A8188ED.FC2A6241@FreeBSD.org>, Maxim Sobolev wrote: > FUJISHIMA Satsuki wrote: > > > As libc_r does not have libc feature now, there's no reason to avoid > > linking -lc_r against shared libraries, I think. > > > > Index: contrib/gcc.295/config/freebsd.h > > =================================================================== > > RCS file: /home/ncvs/src/contrib/gcc.295/config/freebsd.h,v > > retrieving revision 1.31 > > diff -u -r1.31 freebsd.h > > --- contrib/gcc.295/config/freebsd.h 2001/01/25 18:57:13 1.31 > > +++ contrib/gcc.295/config/freebsd.h 2001/02/06 08:54:23 > > @@ -76,10 +76,8 @@ > > (like the default, except no -lg, and no -p). */ > > #undef LIB_SPEC > > #define LIB_SPEC "\ > > - %{!shared: \ > > - %{!pg: %{pthread:-lc_r} -lc} \ > > - %{pg: %{pthread:-lc_r_p} -lc_p} \ > > - }" > > + %{!pg: %{pthread:-lc_r} %{!shared:-lc}} \ > > + %{pg: %{pthread:-lc_r_p} %{!shared:-lc_p}}" > > > > > > /************************[ Target stuff ]***********************************/ > > David, John what do you think about this patch? I think it would be a mistake to implement this. If the patch above were used then the shared library would contain a dependency on a specific version of libc_r -- say libc_r.so.4. But that version of libc_r is intimately tied to a specific version of libc. Now if the application were run on a later version of FreeBSD, it might get a newer libc which would be incompatible with libc_r.so.4. I think we need to view both libc and libc_r as basic low-level system libraries which are to be linked once and only once into the application. Other shared libraries should not have explicit dependencies on them. If an application uses a library that requires threads then the application itself should be linked with -lc_r or -pthread. John -- John Polstra jdp@polstra.com John D. Polstra & Co., Inc. Seattle, Washington USA "Disappointment is a good sign of basic intelligence." -- Chögyam Trungpa To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 16:57:50 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id F00DE37B699 for ; Wed, 7 Feb 2001 16:57:32 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.2/8.11.1) id f180vK071597; Wed, 7 Feb 2001 16:57:20 -0800 (PST) (envelope-from obrien) Date: Wed, 7 Feb 2001 16:57:19 -0800 From: "David O'Brien" To: Cyrille Lefevre Cc: freebsd-ports@freebsd.org Subject: Re: Update port: sysutils/gtar - 1.13.19 Message-ID: <20010207165719.G70586@dragon.nuxi.com> Reply-To: ports@freebsd.org References: <20010129173636.A49697@kemoauc.mips.inka.de> <200101292045.f0TKj6q94508@gits.dyndns.org> <20010131015608.A25609@kemoauc.mips.inka.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from clefevre@citeweb.net on Fri, Feb 02, 2001 at 02:49:43AM +0100 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: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Feb 02, 2001 at 02:49:43AM +0100, Cyrille Lefevre wrote: > > There's a total of... find... grep... seven ports that have an > > alpha.gnu.org master site. That's hardly worth an entry in > > bsd.sites.mk. > > in fact, there are some other ports which may be upgraded from > alpha.gnu.org and some added, such as findutils, paxutils, gnubg, > etc. I *highly* caution people from using the GNU "alpha" versions just because they exist. I also would hate to see a proliferation of "-devel" ports just because they exist. A port should use the "best" distfile available. In the gtar case, I understand why the "alpha" version is being used. I've had discussions with the GNU maintainer, and it is better than the last [so called] released version. But in other cases, a port should just use the released version, not an "alpha" version just because it is "sexy".... Is the alpha version of findutils really any better than the released version? Those versions are on alpha.gnu.org for a _reason_. > also, I'm thinking about making these ports as -devel as gtar should Make them -alpha, or -snapshot please. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 17: 2:46 2001 Delivered-To: freebsd-ports@freebsd.org Received: from lafontaine.cybercable.fr (lafontaine.cybercable.fr [212.198.0.202]) by hub.freebsd.org (Postfix) with SMTP id 9D86737B699 for ; Wed, 7 Feb 2001 17:02:28 -0800 (PST) Received: (qmail 39517427 invoked from network); 8 Feb 2001 01:02:27 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by lafontaine.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 8 Feb 2001 01:02:27 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f1812Qp64268; Thu, 8 Feb 2001 02:02:26 +0100 (CET) (envelope-from root) From: Cyrille Lefevre Message-Id: <200102080102.f1812Qp64268@gits.dyndns.org> Subject: Re: /usr/ports/net/isc-dhcp3 problem In-Reply-To: <20010207164516.D70586@dragon.nuxi.com> "from David O'Brien at Feb 7, 2001 04:45:16 pm" To: obrien@FreeBSD.ORG Date: Thu, 8 Feb 2001 02:02:25 +0100 (CET) Cc: dwcjr@inethouston.net, ports@FreeBSD.ORG Reply-To: clefevre@citeweb.net Organization: ACME X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C X-Mailer: ELM [version 2.4ME+ PL88 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org David O'Brien wrote: > On Tue, Feb 06, 2001 at 06:12:55AM +0100, Cyrille Lefevre wrote: > > "David W. Chapman Jr." writes: > > > > > It does one mine, although you have to edit it manually to set the > > > interface. > > > > anybody to close http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24542 > > and to commit http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24686 ? > > I would *HIGHLY* suggest you work with Ted Lemon to get these changes > into the stock sources: > > files/patch-freebsd > set something -> set -- something and > arp -n -d -> arp -d (-n in meaningless in this case) accordingly > to /sbin/dhclient-script. everytime a I make a new port or update an existing one (dhclient, elm+ME, etc.), I send a shar archive w/ comments to the official maintainer of the port. Ted Lemon in the present case, Kari E. Hurtta for elm+ME, etc. sometimes, they integrate the changes in the next release, sometimes not. I can't do more. Cyrille. -- home: mailto:clefevre@citeweb.net UNIX is user-friendly; it's just particular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 17: 4:10 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id AD95337B69B for ; Wed, 7 Feb 2001 17:03:52 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.2/8.11.1) id f1813hM71800; Wed, 7 Feb 2001 17:03:43 -0800 (PST) (envelope-from obrien) Date: Wed, 7 Feb 2001 17:03:42 -0800 From: "David O'Brien" To: clefevre@citeweb.net Cc: dwcjr@inethouston.net, ports@FreeBSD.ORG Subject: Re: /usr/ports/net/isc-dhcp3 problem Message-ID: <20010207170342.A71782@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20010207164516.D70586@dragon.nuxi.com> <200102080102.f1812Qp64268@gits.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200102080102.f1812Qp64268@gits.dyndns.org>; from root@gits.dyndns.org on Thu, Feb 08, 2001 at 02:02:25AM +0100 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: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Feb 08, 2001 at 02:02:25AM +0100, Cyrille Lefevre wrote: > everytime a I make a new port or update an existing one (dhclient, > elm+ME, etc.), I send a shar archive w/ comments to the official ... > sometimes, they integrate the changes in the next release, sometimes > not. I can't do more. Thanks, that's all one can ask. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 17: 7:48 2001 Delivered-To: freebsd-ports@freebsd.org Received: from vcnet.com (mail.vcnet.com [209.239.239.15]) by hub.freebsd.org (Postfix) with SMTP id 6CE5E37B69C for ; Wed, 7 Feb 2001 17:07:31 -0800 (PST) Received: (qmail 32415 invoked by uid 1001); 8 Feb 2001 01:07:31 -0000 Date: Wed, 7 Feb 2001 17:07:31 -0800 From: Jon Rust To: ports@FreeBSD.org Subject: Re: Apache mod_ ports Message-ID: <20010207170731.A33638@mail.vcnet.com> References: <20010205180431.D17025@mail.vcnet.com> <14976.6091.425890.658134@onceler.kciLink.com> <20010206114010.I454@FreeBSD.org> <20010207163249.B70586@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: <20010207163249.B70586@dragon.nuxi.com>; from TrimYourCc@NUXI.com on Wed, Feb 07, 2001 at 04:32:49PM -0800 X-Operating-System: http://www.freebsd.org/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 04:32:49PM -0800, David O'Brien wrote: > On Tue, Feb 06, 2001 at 11:40:10AM -0600, Ade Lovett wrote: > > weeks to polish it all off. Sadly, the bikeshed that has already > > started, many moons ago, with the complete brain-deadness of our > > apache collection, means that it's unlikely to ever go into the > > main tree. > > Please, hell P-L-E-A-S-E don't stop for a bike shed. Our current > collection of Apache ports is *very* embarrising. Maybe there's hope with Apache 2.0 coming down the line? Could be a fresh start. However, I haven't seen anything about how 2.0 is going to handle SSL given RSA's goodies have been made public. I don't suppose the SSL bits will be included in the basic install, but I can always hope (rose-colored glasses firmly in place). jon To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 17:20: 1 2001 Delivered-To: freebsd-ports@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [209.152.133.57]) by hub.freebsd.org (Postfix) with ESMTP id A959D37B503; Wed, 7 Feb 2001 17:19:42 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.11.2/8.11.1) id f181JSg72159; Wed, 7 Feb 2001 17:19:28 -0800 (PST) (envelope-from obrien) Date: Wed, 7 Feb 2001 17:19:27 -0800 From: "David O'Brien" To: Roman Shterenzon Cc: Gerald Pfeifer , freebsd-stable@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: libgcc_pic is gone (affects Wine port) Message-ID: <20010207171927.H70586@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <980260890.3a6d981aab6ae@webmail.harmonic.co.il> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <980260890.3a6d981aab6ae@webmail.harmonic.co.il>; from roman@harmonic.co.il on Tue, Jan 23, 2001 at 04:41:30PM +0200 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: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Jan 23, 2001 at 04:41:30PM +0200, Roman Shterenzon wrote: > AFAIK, there's no libgcc_* in RELENG_4 anymore as well. > Ask David . There is no libgcc_pic and libgcc_r, there is still libgcc_p. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 17:40:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7BC5937B4EC for ; Wed, 7 Feb 2001 17:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f181e1A56548; Wed, 7 Feb 2001 17:40:01 -0800 (PST) (envelope-from gnats) Received: from bulls.mei.co.jp (bulls.mei.co.jp [202.224.189.25]) by hub.freebsd.org (Postfix) with ESMTP id 9B80937B699 for ; Wed, 7 Feb 2001 17:31:27 -0800 (PST) Received: by bulls.mei.co.jp (8.11.1/3.7W) with ESMTP id f181VO119035 for ; Thu, 8 Feb 2001 10:31:24 +0900 (JST) Received: by dodgers.mei.co.jp (8.9.1/3.7W) with ESMTP id KAA04060 for ; Thu, 8 Feb 2001 10:31:23 +0900 (JST) Received: from dream.avcp.mei.co.jp ([132.182.80.82]) by vega.pcpd.mei.co.jp (Netscape Mail Server v2.02) with ESMTP id AAA30028 for ; Thu, 8 Feb 2001 10:29:37 +0900 Received: by dream.avcp.mei.co.jp (8.11.2/3.7W-02/07/01) id f181TWd99699; Thu, 8 Feb 2001 10:29:32 +0900 (JST) Message-Id: <200102080129.f181TWd99699@dream.avcp.mei.co.jp> Date: Thu, 8 Feb 2001 10:29:32 +0900 (JST) From: takamune@avrl.mei.co.jp Reply-To: takamune@avrl.mei.co.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24943: Update: japanese/bookview Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24943 >Category: ports >Synopsis: Update: japanese/bookview >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 Feb 07 17:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Kazu TAKAMUNE >Release: FreeBSD 4.2-STABLE i386 >Organization: Matsushita Electric Industrial Co., Ltd. >Environment: FreeBSD 4.2-STABLE(Wed Feb 7 10:29:48 JST 2001) ports/Mk/bsd.port.mk,v 1.361 2001/01/16 09:25:16 >Description: - Updates japanese/bookview for the latest version 3.0.2. - No files have been added or removed. >How-To-Repeat: >Fix: diff -x CVS -Nur /usr/ports/japanese/bookview/Makefile japanese/bookview/Makefile --- /usr/ports/japanese/bookview/Makefile Fri Nov 17 10:56:16 2000 +++ japanese/bookview/Makefile Fri Dec 8 13:00:00 2000 @@ -6,7 +6,7 @@ # PORTNAME= bookview -PORTVERSION= 3.0.1 +PORTVERSION= 3.0.2 CATEGORIES= japanese MASTER_SITES= ftp://ftp.sra.co.jp/pub/net/ndtp/bookview/ diff -x CVS -Nur /usr/ports/japanese/bookview/distinfo japanese/bookview/distinfo --- /usr/ports/japanese/bookview/distinfo Fri Nov 17 10:56:16 2000 +++ japanese/bookview/distinfo Fri Dec 8 13:00:00 2000 @@ -1 +1 @@ -MD5 (bookview-3.0.1.tar.gz) = 16d280dd51366d8b34126e728e848b2d +MD5 (bookview-3.0.2.tar.gz) = 3a0730bc0dc7911908c9d7aedd7d3c64 >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 Feb 7 17:45:40 2001 Delivered-To: freebsd-ports@freebsd.org Received: from node7.cluster.srrc.usda.gov (symbion.srrc.usda.gov [199.133.86.40]) by hub.freebsd.org (Postfix) with ESMTP id 779AE37B401 for ; Wed, 7 Feb 2001 17:45:22 -0800 (PST) Received: (from glenn@localhost) by node7.cluster.srrc.usda.gov (8.11.2/8.11.2) id f181j8521208; Wed, 7 Feb 2001 19:45:08 -0600 (CST) (envelope-from glenn) Date: Wed, 7 Feb 2001 19:45:08 -0600 From: Glenn Johnson To: Brandon Fosdick Cc: ports@FreeBSD.ORG Subject: Re: Linux Matlab on 4.2? Message-ID: <20010207194508.A20999@node7.cluster.srrc.usda.gov> Mail-Followup-To: Glenn Johnson , Brandon Fosdick , ports@FreeBSD.ORG References: <3A805F64.5AD03FA@glue.umd.edu> <20010206222303.A1542@gforce.homelan.net> <3A81B52F.9AB35084@glue.umd.edu> <3A81BDC5.F932DA75@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: <3A81BDC5.F932DA75@glue.umd.edu>; from bfoz@glue.umd.edu on Wed, Feb 07, 2001 at 04:27:33PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 04:27:33PM -0500, Brandon Fosdick wrote: > Brandon Fosdick wrote: > I figured it out. This is why you the message in the archives talked > about installing the Linux version of tar. The installed, running in > Linux land, can't find /usr/bin/tar. Instead of installing tar I just > symlink'd to the /usr/local/bin/tar and everything worked. Hmm, it seems like it may be worthwhile to add tar to the linux_base port? Anyone out there have an opinion on that? > > Now my problem is getting Matlab itself to run. > > 16:25 bfoz@806a-117~>/compat/linux/bin/sh > /compat/linux/usr/matlabr11/bin/matlab > /compat/linux/usr/matlabr11/bin/matlab: /dev/null: Permission denied > > Internal error 1: We could not determine the path of the > MATLAB root directory. > > original command path = > /compat/linux/usr/matlabr11/bin/matlab > current command path = > /compat/linux/usr/matlabr11/bin/matlab > > Please contact: > > MathWorks Technical Support > > for further assistance. > > > So far the only way around this that I've found is to su before > running the above. I don't like running Matlab as root so I'm still > looking for a solution. Any ideas? Maybe I'll try changing the perms > on /dev/null... No, running as root is _not_ good. Is 'matlab' a wrapper script or a binary? If it is a script then it may require some editing to get things right. If it is a binary then you need to find out if it is statically linked or not. Use the file command to find out (file /path/to/matlab). If it and other associated binaries are statically linked you will have to brand them with brandelf (man brandelf). Good luck. -- Glenn Johnson USDA, ARS, SRRC Phone: (504) 286-4252 New Orleans, LA 70124 e-mail: gjohnson@srrc.ars.usda.gov To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 18: 7:52 2001 Delivered-To: freebsd-ports@freebsd.org Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by hub.freebsd.org (Postfix) with ESMTP id 4AAD537B401; Wed, 7 Feb 2001 18:07:31 -0800 (PST) Received: from waterblue.imgsrc.co.jp (waterblue.imgsrc.co.jp [210.226.20.160]) by white.imgsrc.co.jp (8.11.2/8.11.0) with ESMTP id f1827Tu09772; Thu, 8 Feb 2001 11:07:30 +0900 (JST) Date: Thu, 08 Feb 2001 11:07:27 +0900 Message-ID: <7mn1by2ahs.wl@waterblue.imgsrc.co.jp> From: Jun Kuriyama To: billf@FreeBSD.org Cc: Ports Team Subject: net-snmp shlib number and libtool User-Agent: Wanderlust/2.4.0 (Rio) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: multipart/mixed; boundary="Multipart_Thu_Feb__8_11:07:27_2001-1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --Multipart_Thu_Feb__8_11:07:27_2001-1 Content-Type: text/plain; charset=US-ASCII Hi Bill, Current pkg-plist is broken because libtool'ed shared library is installed. How about to modify like this? -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project --Multipart_Thu_Feb__8_11:07:27_2001-1 Content-Type: application/octet-stream; type=patch Content-Disposition: attachment; filename="net-snmp.diff" Content-Transfer-Encoding: 7bit Index: Makefile =================================================================== RCS file: /home/ncvs/ports/net/net-snmp/Makefile,v retrieving revision 1.55 diff -u -r1.55 Makefile --- Makefile 2001/02/02 01:43:17 1.55 +++ Makefile 2001/02/08 01:48:59 @@ -19,6 +19,7 @@ USE_AUTOCONF= yes USE_LIBTOOL= yes INSTALLS_SHLIB= yes +LIBTOOLFLAGS= --disable-ltlibs --release-ignore CONFIGURE_ARGS+= --enable-shared --with-mib-modules="host" --with-gnu-ld .if defined(BATCH) @@ -43,7 +44,7 @@ snmp_sess_open.3 snmp_sess_read.3 snmp_sess_select_info.3 \ snmp_sess_send.3 snmp_sess_session.3 snmp_sess_timeout.3 \ snmp_set_mib_warnings.3 snmp_set_save_descriptions.3 \ - snmp_timeout.3 + snmp_timeout.3 snmp_trap_api.3 MAN5= snmp.conf.5 snmp_config.5 snmpd.conf.5 \ snmptrapd.conf.5 variables.5 MAN8= snmptrapd.8 @@ -70,12 +71,6 @@ @( cd ${PREFIX}/sbin && strip ${SBIN} ) @( cd ${PREFIX}/include/ucd-snmp && ${CHMOD} 644 * ) @( cd ${PREFIX}/share/snmp/mibs && ${CHMOD} 644 * ) - @${INSTALL_SCRIPT} ${WRKSRC}/libsnmp.so.${SHLIB_VERSION} ${PREFIX}/lib - @${INSTALL_SCRIPT} ${WRKSRC}/libucdmibs.so.${SHLIB_VERSION} ${PREFIX}/lib - @${INSTALL_SCRIPT} ${WRKSRC}/libucdagent.so.${SHLIB_VERSION} ${PREFIX}/lib - @( cd ${PREFIX}/lib && ${LN} -f libsnmp.so.${SHLIB_VERSION} libsnmp.so ) - @( cd ${PREFIX}/lib && ${LN} -f libucdmibs.so.${SHLIB_VERSION} libucdmibs.so ) - @( cd ${PREFIX}/lib && ${LN} -f libucdagent.so.${SHLIB_VERSION} libucdagent.so ) @${MKDIR} ${PREFIX}/share/examples/ucd-snmp @for F in ${WRKSRC}/EXAMPLE.conf ${WRKSRC}/agent/mibgroup/examples/ucdDemoPublic.conf; do \ ${INSTALL_DATA} $$F ${PREFIX}/share/examples/ucd-snmp ; done Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/net/net-snmp/pkg-plist,v retrieving revision 1.15 diff -u -r1.15 pkg-plist --- pkg-plist 2001/01/18 09:58:30 1.15 +++ pkg-plist 2001/02/08 01:49:43 @@ -1,8 +1,11 @@ bin/encode_keychange +bin/mib2c bin/snmpbulkget bin/snmpbulkwalk bin/snmpcheck +bin/snmpconf bin/snmpdelta +bin/snmpdf bin/snmpget bin/snmpgetnext bin/snmpinform @@ -14,6 +17,7 @@ bin/snmptranslate bin/snmptrap bin/snmpusm +bin/snmpvacm bin/snmpwalk bin/tkmib etc/rc.d/snmpd.sh @@ -57,10 +61,13 @@ include/ucd-snmp/var_struct.h include/ucd-snmp/version.h @dirrm include/ucd-snmp +lib/libsnmp.a lib/libsnmp.so lib/libsnmp.so.%%shlib%% +lib/libucdagent.a lib/libucdagent.so lib/libucdagent.so.%%shlib%% +lib/libucdmibs.a lib/libucdmibs.so lib/libucdmibs.so.%%shlib%% sbin/snmpd Index: files/patch-Makefile.top =================================================================== RCS file: patch-Makefile.top diff -N patch-Makefile.top --- /dev/null Thu Feb 8 11:00:01 2001 +++ patch-Makefile.top Thu Feb 8 10:24:27 2001 @@ -0,0 +1,11 @@ +--- Makefile.top.orig Mon Nov 20 05:58:05 2000 ++++ Makefile.top Thu Feb 8 01:21:42 2001 +@@ -51,7 +51,7 @@ + # Misc Compiling Stuff + CC = @CC@ + # version number is prefixed by a 0 for a better shared library version number +-LIB_LD_CMD = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -rpath $(libdir) -release 0.$(VERSION) -o ++LIB_LD_CMD = $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -rpath $(libdir) -release $(VERSION).0 -version-info 4 -o + LIB_EXTENSION = la + LIB_VERSION = + LIB_LDCONFIG_CMD = $(LIBTOOL) --mode=finish $(libdir) --Multipart_Thu_Feb__8_11:07:27_2001-1-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 18:38:13 2001 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 1D28E37B401 for ; Wed, 7 Feb 2001 18:37:56 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1098) id 7D2662B55E; Wed, 7 Feb 2001 20:37:55 -0600 (CST) Date: Wed, 7 Feb 2001 20:37:55 -0600 From: Bill Fumerola To: Jun Kuriyama Cc: Ports Team Subject: Re: net-snmp shlib number and libtool Message-ID: <20010207203755.G77020@elvis.mu.org> References: <7mn1by2ahs.wl@waterblue.imgsrc.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <7mn1by2ahs.wl@waterblue.imgsrc.co.jp>; from kuriyama@imgsrc.co.jp on Thu, Feb 08, 2001 at 11:07:27AM +0900 X-Operating-System: FreeBSD 4.2-FEARSOME-20001103 i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Feb 08, 2001 at 11:07:27AM +0900, Jun Kuriyama wrote: > Current pkg-plist is broken because libtool'ed shared library is > installed. How about to modify like this? Looks good to me. -- 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 Wed Feb 7 18:43:11 2001 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 5757637B401; Wed, 7 Feb 2001 18:42:47 -0800 (PST) Received: by elvis.mu.org (Postfix, from userid 1098) id 08BD62B55E; Wed, 7 Feb 2001 20:42:46 -0600 (CST) Date: Wed, 7 Feb 2001 20:42:46 -0600 From: Bill Fumerola To: Jun Kuriyama Cc: ports@freebsd.org Subject: Re: cvs commit: ports/net/net-snmp Makefile pkg-plist ports/net/net-snmp/files patch-Makefile.top Message-ID: <20010207204246.H77020@elvis.mu.org> References: <200102080239.f182dwI63501@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: <200102080239.f182dwI63501@freefall.freebsd.org>; from kuriyama@FreeBSD.org on Wed, Feb 07, 2001 at 06:39:58PM -0800 X-Operating-System: FreeBSD 4.2-FEARSOME-20001103 i386 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [ cvs-* -> ports ] On Wed, Feb 07, 2001 at 06:39:58PM -0800, Jun Kuriyama wrote: > Modified files: > net/net-snmp Makefile pkg-plist > Added files: > net/net-snmp/files patch-Makefile.top > Log: > Treat shlib number and libtool as our way. > > Approved by: maintainer Let me just also preemptively approve any patches that clean up the grossness (hard coded version number, etc) that we use to make both kinds of libraries (net-snmp wants to make one or the other, either by design or stupidity). -- 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 Wed Feb 7 18:43:32 2001 Delivered-To: freebsd-ports@freebsd.org Received: from leviathan.inethouston.net (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id CF8ED37B6BB; Wed, 7 Feb 2001 18:43:09 -0800 (PST) Received: from dwcjr (DWCJR.inethouston.net [216.118.21.147]) by leviathan.inethouston.net (Postfix) with ESMTP id 99E84177E8B; Wed, 7 Feb 2001 20:43:14 -0600 (CST) Message-ID: <01a901c09178$e106dbc0$931576d8@inethouston.net> From: "David W. Chapman Jr." To: , Cc: References: <20010207164516.D70586@dragon.nuxi.com> <200102080102.f1812Qp64268@gits.dyndns.org> <20010207170342.A71782@dragon.nuxi.com> Subject: Re: /usr/ports/net/isc-dhcp3 problem Date: Wed, 7 Feb 2001 20:43:12 -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 One good thing Ted did was make the facility logging in the config file so my original patch is finally obsoleted :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 21: 0:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E6E8837B491 for ; Wed, 7 Feb 2001 21:00:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18504u79919; Wed, 7 Feb 2001 21:00:04 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ABF9E37B491 for ; Wed, 7 Feb 2001 20:50:02 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f184o2F78472; Wed, 7 Feb 2001 20:50:02 -0800 (PST) (envelope-from nobody) Message-Id: <200102080450.f184o2F78472@freefall.freebsd.org> Date: Wed, 7 Feb 2001 20:50:02 -0800 (PST) From: reel@sympatico.ca To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24945: Link problem in the ports tree README.html Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24945 >Category: ports >Synopsis: Link problem in the ports tree README.html >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Feb 07 21:00:04 PST 2001 >Closed-Date: >Last-Modified: >Originator: Felix-Antoine Paradis >Release: FreeBSD 3.5-STABLE >Organization: Idemnia Networks >Environment: FreeBSD idemnia.ath.cx 3.5-STABLE FreeBSD 3.5-STABLE #3: Sun Jan 28 02:58:14 EST 2001 reel@idemnia.ath.cx:/usr/src/sys/compile/CHE i386 (but, using 5.0-CURRENT ports tree) >Description: When you look at README.html in the root of the ports tree, you can follow each links up to a single port directory. Then, there is a link suggested to see the full port description as: Please read the file "pkg/DESCR" for a longer description. Unfortunatly, as i'm using the -CURRENT ports tree, this link is broken. I am telling this because that, in native -RELEASE ports tree as in 3.4-R, this thing works. As you changed the files location from pkg/file to pkg-file, you didn't changed the url destination. So, we have a broken link here. I think that it just applies to the -CURRENT ports tree. >How-To-Repeat: With your favority browser, in /usr/ports (or at the root point of your ports tree), look at the file README.html. Then, follow the links with the idea of going to a single port. Then, follow a route like: archivers -> 9e-1.0 Then, follow the link on the line: Please read the file "pkg/DESCR" for a longer description. Broken link. >Fix: Fix all the README.html files in the single ports directories to make it point to "pkg-descr". >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 Feb 7 22:16:15 2001 Delivered-To: freebsd-ports@freebsd.org Received: from imediasolutions.net (ns1.imediasolutions.net [64.6.64.109]) by hub.freebsd.org (Postfix) with ESMTP id AE53F37B491 for ; Wed, 7 Feb 2001 22:15:53 -0800 (PST) Received: from imediasolutions.net (cmanjoin.inav.net [12.19.138.89]) by imediasolutions.net (8.11.1/8.11.1) with ESMTP id f186FU914866; Thu, 8 Feb 2001 00:15:34 -0600 (CST) Message-ID: <3A82397A.B8F53099@imediasolutions.net> Date: Thu, 08 Feb 2001 00:15:23 -0600 From: Chris Manjoine X-Mailer: Mozilla 4.75 (Macintosh; U; PPC) X-Accept-Language: en MIME-Version: 1.0 To: mike@fate.com Cc: ports@FreeBSD.org Subject: FreeBSD Port: pgp6-6.5.8 Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854"; x-mac-creator="4D4F5353" Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I get this error when installing your most current port on the 'make' my server is a freebsd 4.1.1 server gcc -O -pipe -DPGP_UNIX=1 -DPGP_COMPILER_GCC=1 -DHAVE_CONFIG_H -DPGP_DEBUG=1 -D UNFINISHED_CODE_ALLOWED=1 -DUSE_PGP_LEAKS=1 -I../../../.././unix -I../../../../ ./pub/include -I../../../.././priv/include -I../../../.././priv/include/opaque - I../../../.././priv/external/unix/bsafe/include/unknown -I../../../.././../pfl/c ommon -I../../../.././../pfl/common/prefs -I../../../.././../pfl/common/file -I. ./../../.././../pfl/common/util -I../../../.././../pfl/common/lthread -I../../.. /.././../pfl/common/sorting -I../../../.././../pfl/unix -I. -c -o pgpPrsBin .o pgpPrsBin.c gcc -O -pipe -DPGP_UNIX=1 -DPGP_COMPILER_GCC=1 -DHAVE_CONFIG_H -DPGP_DEBUG=1 -D UNFINISHED_CODE_ALLOWED=1 -DUSE_PGP_LEAKS=1 -I../../../.././unix -I../../../../ ./pub/include -I../../../.././priv/include -I../../../.././priv/include/opaque - I../../../.././priv/external/unix/bsafe/include/unknown -I../../../.././../pfl/c ommon -I../../../.././../pfl/common/prefs -I../../../.././../pfl/common/file -I. ./../../.././../pfl/common/util -I../../../.././../pfl/common/lthread -I../../.. /.././../pfl/common/sorting -I../../../.././../pfl/unix -I. -c -o pgpReadAn n.o pgpReadAnn.c gcc -O -pipe -DPGP_UNIX=1 -DPGP_COMPILER_GCC=1 -DHAVE_CONFIG_H -DPGP_DEBUG=1 -D UNFINISHED_CODE_ALLOWED=1 -DUSE_PGP_LEAKS=1 -I../../../.././unix -I../../../../ ./pub/include -I../../../.././priv/include -I../../../.././priv/include/opaque - I../../../.././priv/external/unix/bsafe/include/unknown -I../../../.././../pfl/c ommon -I../../../.././../pfl/common/prefs -I../../../.././../pfl/common/file -I. ./../../.././../pfl/common/util -I../../../.././../pfl/common/lthread -I../../.. /.././../pfl/common/sorting -I../../../.././../pfl/unix -I. -c -o pgpVerify Ra.o pgpVerifyRa.c gcc -O -pipe -DPGP_UNIX=1 -DPGP_COMPILER_GCC=1 -DHAVE_CONFIG_H -DPGP_DEBUG=1 -D UNFINISHED_CODE_ALLOWED=1 -DUSE_PGP_LEAKS=1 -I../../../.././unix -I../../../../ ./pub/include -I../../../.././priv/include -I../../../.././priv/include/opaque - I../../../.././priv/external/unix/bsafe/include/unknown -I../../../.././../pfl/c ommon -I../../../.././../pfl/common/prefs -I../../../.././../pfl/common/file -I. ./../../.././../pfl/common/util -I../../../.././../pfl/common/lthread -I../../.. /.././../pfl/common/sorting -I../../../.././../pfl/unix -I. -c -o pgpVrfySi g.o pgpVrfySig.c + echo pgpPrsBin.o pgpReadAnn.o pgpVerifyRa.o pgpVrfySig.o gmake[5]: Leaving directory `/usr/ports/security/pgp6/work/pgpsrc/libs/pgpcdk/pr iv/crypto/pipe/parser' gmake[4]: Leaving directory `/usr/ports/security/pgp6/work/pgpsrc/libs/pgpcdk/pr iv/crypto/pipe' Making all in priv/crypto/random gmake[4]: Entering directory `/usr/ports/security/pgp6/work/pgpsrc/libs/pgpcdk/p riv/crypto/random' gcc -O -pipe -DPGP_UNIX=1 -DPGP_COMPILER_GCC=1 -DHAVE_CONFIG_H -DPGP_DEBUG=1 -D UNFINISHED_CODE_ALLOWED=1 -DUSE_PGP_LEAKS=1 -I../../.././unix -I../../.././pub/ include -I../../.././priv/include -I../../.././priv/include/opaque -I../../.././ priv/external/unix/bsafe/include/unknown -I../../.././../pfl/common -I../../../. /../pfl/common/prefs -I../../.././../pfl/common/file -I../../.././../pfl/common/ util -I../../.././../pfl/common/lthread -I../../.././../pfl/common/sorting -I../ ../.././../pfl/unix -I. -c -o pgpRandomPool.o pgpRandomPool.c pgpRandomPool.c: In function `pgpGlobalRandomPoolEntropyWasAdded': pgpRandomPool.c:470: Invalid `asm' statement: pgpRandomPool.c:470: fixed or forbidden register 0 (ax) was spilled for class AR EG. pgpRandomPool.c: In function `sRandAddKeyEntropy': pgpRandomPool.c:870: Invalid `asm' statement: pgpRandomPool.c:870: fixed or forbidden register 0 (ax) was spilled for class AR EG. gmake[4]: *** [pgpRandomPool.o] Error 1 gmake[4]: Leaving directory `/usr/ports/security/pgp6/work/pgpsrc/libs/pgpcdk/pr iv/crypto/random' gmake[3]: *** [all] Error 1 gmake[3]: Leaving directory `/usr/ports/security/pgp6/work/pgpsrc/libs/pgpcdk/pr iv/crypto' gmake[2]: *** [all] Error 1 gmake[2]: Leaving directory `/usr/ports/security/pgp6/work/pgpsrc/libs/pgpcdk/pr iv' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/security/pgp6/work/pgpsrc/libs/pgpcdk' gmake: *** [all] Error 2 *** Error code 2 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 7 22:34:39 2001 Delivered-To: freebsd-ports@freebsd.org Received: from w250.z064001178.sjc-ca.dsl.cnc.net (w250.z064001178.sjc-ca.dsl.cnc.net [64.1.178.250]) by hub.freebsd.org (Postfix) with SMTP id ECC7537B69B for ; Wed, 7 Feb 2001 22:34:20 -0800 (PST) Received: (qmail 77180 invoked by uid 1000); 8 Feb 2001 06:34:38 -0000 Date: Wed, 7 Feb 2001 22:34:16 -0800 From: Jos Backus To: Frank DiGravina Cc: andreas@FreeBSD.org, ports@FreeBSD.org Subject: Re: FreeBSD Port: cflowd-2-1-b1_1 Message-ID: <20010207223416.B75770@lizzy.bugworks.com> Reply-To: Jos Backus References: <3A81EB9E.B7DBFE56@nts.umn.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A81EB9E.B7DBFE56@nts.umn.edu>; from digravin@nts.umn.edu on Wed, Feb 07, 2001 at 06:42:48PM -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Feb 07, 2001 at 06:42:48PM -0600, Frank DiGravina wrote: > Andreas, > > With regard to cflowd-2-1-b1_1 I am unable to see any data collection > occurring. I obnserve the cflowdmux, cflowd and cfdcollect processes > running. The OS is > FreeBSD 4.2. Any clues? Did you turn on netflow exports on your router(s)? Can you verify that your FreeBSD system indeed sees the packets (using tcpdump)? -- Jos Backus _/ _/_/_/ "Modularity is not a hack." _/ _/ _/ -- D. J. Bernstein _/ _/_/_/ _/ _/ _/ _/ josb@cncdsl.com _/_/ _/_/_/ use Std::Disclaimer; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 0: 0:29 2001 Delivered-To: freebsd-ports@freebsd.org Received: from balzac.cybercable.fr (balzac.cybercable.fr [212.198.0.198]) by hub.freebsd.org (Postfix) with SMTP id 9EAD237B503 for ; Thu, 8 Feb 2001 00:00:11 -0800 (PST) Received: (qmail 12313771 invoked from network); 8 Feb 2001 08:00:09 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by balzac.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 8 Feb 2001 08:00:09 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f18808869779; Thu, 8 Feb 2001 09:00:08 +0100 (CET) (envelope-from clefevre@poboxes.com) To: freebsd-ports@FreeBSD.ORG Cc: obrien@FreeBSD.ORG Subject: Re: Update port: sysutils/gtar - 1.13.19 References: <20010129173636.A49697@kemoauc.mips.inka.de> <200101292045.f0TKj6q94508@gits.dyndns.org> <20010131015608.A25609@kemoauc.mips.inka.de> <20010207165719.G70586@dragon.nuxi.com> X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C In-Reply-To: "David O'Brien"'s message of "Wed, 7 Feb 2001 16:57:19 -0800" From: Cyrille Lefevre Reply-To: clefevre@poboxes.com Mail-Copies-To: never Date: 08 Feb 2001 09:00:05 +0100 Message-ID: Lines: 20 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) 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" writes: [snip] > Is the alpha version of findutils really any better than the released > version? Those versions are on alpha.gnu.org for a _reason_. don't know right now. same comments applies to textutils, sh-utils and diffutils. I'll see in the meantime. for instance, I'm working on other things (stable ports, etc.). > > also, I'm thinking about making these ports as -devel as gtar should > > Make them -alpha, or -snapshot please. for the rest of the message, I'm all w/ you. Cyrille. -- home: mailto:clefevre@poboxes.com UNIX is user-friendly; it's just particular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 0:11:58 2001 Delivered-To: freebsd-ports@freebsd.org Received: from sj-msg-core-1.cisco.com (sj-msg-core-1.cisco.com [171.71.163.11]) by hub.freebsd.org (Postfix) with ESMTP id 2446437B401; Thu, 8 Feb 2001 00:11:41 -0800 (PST) Received: from mira1.cisco.com (mira1.cisco.com [171.71.208.193]) by sj-msg-core-1.cisco.com (8.9.3/8.9.1) with ESMTP id AAA04496; Thu, 8 Feb 2001 00:11:54 -0800 (PST) Received: from cisco.com (ptlm1-dhcp-113.cisco.com [171.71.210.113]) by mira1.cisco.com (Mirapoint) with ESMTP id AAI01683; Thu, 8 Feb 2001 00:11:39 -0800 (PST) Message-ID: <3A82547E.18AD4D26@cisco.com> Date: Thu, 08 Feb 2001 00:10:38 -0800 From: W Gerald Hicks Organization: Cisco Systems, Inc. X-Mailer: Mozilla 4.76 [en] (X11; U; SunOS 5.7 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: bmah@FreeBSD.ORG Cc: ports@FreeBSD.ORG, Kal Torak Subject: Re: Ports updating... Good ways? References: <3A8208E7.C6EE4C24@quake.com.au> <20010208061814.5E6C5E6A17@netcom1.netcom.com> <200102080638.f186c9s39260@bmah-freebsd-0.cisco.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [redirected to ports] (Hi Bruce :-) In thinking about this further, it seems to me there is also some missing metadata that one would need to automate port upgrades reliably. There doesn't seem to be anything that relates previous versions of a port to an updated one. At least not in a rigorous manner that could be trusted by naive scripts... Cheers, Jerry Hicks gehicks@cisco.com "Bruce A. Mah" wrote: > > Trying to impart some UI: > > Akinori MUSHA has an experimental tool to do ports upgrading at: > > http://people.FreeBSD.org/~knu/misc/portupgrade.tar.gz > > Also, see pkg_upgrade in -CURRENT. > > I haven't played with either of these (yet). > > Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 0:15:57 2001 Delivered-To: freebsd-ports@freebsd.org Received: from picalon.gun.de (picalon.gun.de [192.109.159.1]) by hub.freebsd.org (Postfix) with ESMTP id 670A137B65D; Thu, 8 Feb 2001 00:15:38 -0800 (PST) Received: (from uucp@localhost) by picalon.gun.de (8.9.3/8.9.3) id JAA01396; Thu, 8 Feb 2001 09:15:18 +0100 (MET) >Received: (from andreas@localhost) by klemm.gtn.com (8.11.1/8.11.1) id f187mES06415; Thu, 8 Feb 2001 08:48:14 +0100 (CET) (envelope-from andreas) Date: Thu, 8 Feb 2001 08:48:14 +0100 From: Andreas Klemm To: Frank DiGravina Cc: andreas@FreeBSD.org, ports@FreeBSD.org Subject: Re: FreeBSD Port: cflowd-2-1-b1_1 Message-ID: <20010208084814.A6392@titan.klemm.gtn.com> References: <3A81EB9E.B7DBFE56@nts.umn.edu> Mime-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A81EB9E.B7DBFE56@nts.umn.edu>; from digravin@nts.umn.edu on Wed, Feb 07, 2001 at 06:43:10PM -0600 X-Operating-System: FreeBSD 4.2-STABLE SMP X-Disclaimer: A free society is one where it is safe to be unpopular Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="nFreZHaLTZJo0R7j" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --nFreZHaLTZJo0R7j Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Feb 07, 2001 at 06:43:10PM -0600, Frank DiGravina wrote: > Andreas, >=20 > With regard to cflowd-2-1-b1_1 I am unable to see any data collection > occurring. I obnserve the cflowdmux, cflowd and cfdcollect processes > running. The OS is > FreeBSD 4.2. Any clues? Well, I also have problems and get error messages. No reply from the list yet and no time to debug. See the cflowd mailing list archive (if they have one). I currently don't have time to debug. Andreas /// --=20 Andreas Klemm - Powered by FreeBSD 4.2 SMP Need a magic printfilter today ? -> http://www.apsfilter.org/ --nFreZHaLTZJo0R7j Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Weitere Infos: siehe http://www.gnupg.org iD8DBQE6gk8+d3o+lGxvbLoRAgJSAKCLDcPkB9CQ84PmrZbVuC3G5NGJMgCgpVc0 pLCwCLD40CSS2i4YhMME9Uo= =XwMY -----END PGP SIGNATURE----- --nFreZHaLTZJo0R7j-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 0:34:43 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF99237B401; Thu, 8 Feb 2001 00:34:25 -0800 (PST) Received: from shell2.lomag.net (shell2.lomag.net [208.185.83.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F9786E2983; Thu, 8 Feb 2001 00:34:23 -0800 (PST) Received: from localhost (chris@localhost) by shell2.lomag.net (8.11.2/8.11.2) with ESMTP id f188X7096302; Thu, 8 Feb 2001 03:33:07 -0500 (EST) (envelope-from chris@shell2.lomag.net) Date: Thu, 8 Feb 2001 03:33:07 -0500 (EST) From: Chris Byrnes To: Cc: Subject: 'screen' 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 is 'screen' in the base system now, or does one still have to use ports to install? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 0:50:44 2001 Delivered-To: freebsd-ports@freebsd.org Received: from rapier.smartspace.co.za (rapier.smartspace.co.za [66.8.25.34]) by hub.freebsd.org (Postfix) with SMTP id 4308437B503 for ; Thu, 8 Feb 2001 00:50:24 -0800 (PST) Received: (qmail 11898 invoked by uid 1001); 8 Feb 2001 08:50:04 -0000 Date: Thu, 8 Feb 2001 10:50:03 +0200 From: Neil Blakey-Milner To: Chris Byrnes Cc: ports@freebsd.org, questions@freebsd.org Subject: Re: 'screen' Message-ID: <20010208105003.A11803@rapier.smartspace.co.za> 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 chris@shell2.lomag.net on Thu, Feb 08, 2001 at 03:33:07AM -0500 Organization: Building Intelligence X-Operating-System: FreeBSD 4.2-RELEASE i386 X-URL: http://rucus.ru.ac.za/~nbm/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu 2001-02-08 (03:33), Chris Byrnes wrote: > is 'screen' in the base system now, or does one still have to use ports to > install? One has to install it by ports or packages. I doubt it'll ever be in "base" - it doesn't provide any necessary functionality to have a running system, or to rebuild a system from scratch. Neil -- Neil Blakey-Milner nbm@mithrandr.moria.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 0:58:45 2001 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 8B16737B503 for ; Thu, 8 Feb 2001 00:58:14 -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 <20010208085813.BQOG19464.mail.rdc1.kt.home.ne.jp@daemon.local.idaemons.org>; Thu, 8 Feb 2001 00:58:13 -0800 Received: by daemon.local.idaemons.org (8.11.1/3.7W) id f188wDv39739; Thu, 8 Feb 2001 17:58:13 +0900 (JST) Date: Thu, 08 Feb 2001 17:58:12 +0900 Message-ID: <868znhk0uz.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: "David O'Brien" Cc: ports@FreeBSD.org Subject: Re: new tool: portupgrade In-Reply-To: <20010207163439.C70586@dragon.nuxi.com> References: <86k874g4c5.wl@archon.local.idaemons.org> <20010207163439.C70586@dragon.nuxi.com> User-Agent: Wanderlust/2.5.4 (Smooth) SEMI/1.14.2 (=?ISO-8859-1?Q?Daish=F2?= =?ISO-8859-1?Q?ji?=) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (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.2 - =?ISO-8859-1?Q?=22Daish=F2ji=22?=) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Wed, 7 Feb 2001 16:34:39 -0800, David O'Brien wrote: > On Tue, Feb 06, 2001 at 07:19:54AM +0900, Akinori MUSHA wrote: > > I wrote a handy tool to upgrade already installed packages with the > > latest ports, called . It's still far from finished > > (error handling, recursive upgrades, etc.), but it has achieved my > > primary goal. > > How does this compare with pkg_update? Portupgrade upgrades ports. And as it does in somewhat an "illegal" way to do the job (i.e. it does something out of the ports/packages framework), I have completely no intention of putting it into the system. The fact that it's written in Ruby is also a good reason not to do that. :> I'll write some more useful tools in addition, but they are just meant to be a workaround until the openpackages framework, which is naturally supposed to provide the updating facilities, is realized. P.S. By the way, it's a shame that even pkg_version hasn't still been implemented correctly (i.e. it still doesn't compare version numbers the way the Porter's Handbook says) although someone (it's me ;) had submitted a patch long time ago. I don't push that any more, but doesn't anyone really care? -- / /__ __ 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 Thu Feb 8 1: 5:38 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4B2B337B698; Thu, 8 Feb 2001 01:05:22 -0800 (PST) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1895MW18514; Thu, 8 Feb 2001 01:05:22 -0800 (PST) (envelope-from asmodai) Date: Thu, 8 Feb 2001 01:05:22 -0800 (PST) From: Message-Id: <200102080905.f1895MW18514@freefall.freebsd.org> To: asmodai@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24889: upgrade port chinese/pine4 from 4.32 to 4.33 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: upgrade port chinese/pine4 from 4.32 to 4.33 Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: asmodai Responsible-Changed-When: Thu Feb 8 01:04:31 PST 2001 Responsible-Changed-Why: Belongs to ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=24889 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 1:10:10 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 32EC237B69D; Thu, 8 Feb 2001 01:09:53 -0800 (PST) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1899qn19684; Thu, 8 Feb 2001 01:09:52 -0800 (PST) (envelope-from asmodai) Date: Thu, 8 Feb 2001 01:09:52 -0800 (PST) From: Message-Id: <200102080909.f1899qn19684@freefall.freebsd.org> To: hurtta+elm@ozone.fmi.fi, asmodai@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24922: Re: Updated port: mail/elm+ME - 2.4ME+88 (critical) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: Updated port: mail/elm+ME - 2.4ME+88 (critical) State-Changed-From-To: open->closed State-Changed-By: asmodai State-Changed-When: Thu Feb 8 01:08:56 PST 2001 State-Changed-Why: Was a reply to an already existing PR. Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: asmodai Responsible-Changed-When: Thu Feb 8 01:08:56 PST 2001 Responsible-Changed-Why: Belonged to -ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=24922 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 1:10:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0697C37B69E for ; Thu, 8 Feb 2001 01:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f189A3x19714; Thu, 8 Feb 2001 01:10:03 -0800 (PST) (envelope-from gnats) Received: from jivago.ryazan.ru (jivago.ryazan.ru [212.26.226.45]) by hub.freebsd.org (Postfix) with ESMTP id 1513037B698 for ; Thu, 8 Feb 2001 01:03:14 -0800 (PST) Received: from root by jivago.ryazan.ru with local (Exim 3.16 #1) id 14Qmyq-000Cv9-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 08 Feb 2001 12:03:08 +0300 Message-Id: Date: Thu, 08 Feb 2001 12:03:08 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24947: New port: gc - a garbage collecting storage allocator that is intended to be used as a plug-in replacement for C's malloc Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24947 >Category: ports >Synopsis: New port: gc - a garbage collecting storage allocator that is intended to be used as a plug-in replacement for C's malloc >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Feb 08 01:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: New port: gc - a garbage collecting storage allocator that is intended to be used as a plug-in replacement for C's malloc >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: # # gc # gc/Makefile # gc/distinfo # gc/pkg-plist # gc/files # gc/files/patch-Makefile # gc/pkg-comment # gc/pkg-descr # echo c - gc mkdir -p gc > /dev/null 2>&1 echo x - gc/Makefile sed 's/^X//' >gc/Makefile << 'END-of-gc/Makefile' X# New ports collection makefile for: gc X# Date created: 08 Feb 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= gc XPORTVERSION= 6.0alpha5 XCATEGORIES= devel XMASTER_SITES= http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/ XDISTNAME= ${PORTNAME}${PORTVERSION} X XMAINTAINER= skv@protey.ru X XWRKSRC= ${WRKDIR}/${PORTNAME} X XALL_TARGET= BSD-pkg-all XMAN3= gc.3 X Xdo-install: X ${INSTALL_DATA} ${WRKSRC}/include/gc.h ${PREFIX}/include X ${INSTALL_DATA} ${WRKSRC}/include/gc_cpp.h ${PREFIX}/include X ${INSTALL_DATA} ${WRKSRC}/libgc.a ${PREFIX}/lib X ${INSTALL_MAN} ${WRKSRC}/doc/gc.man ${PREFIX}/man/man3/gc.3 X X.include END-of-gc/Makefile echo x - gc/distinfo sed 's/^X//' >gc/distinfo << 'END-of-gc/distinfo' XMD5 (gc6.0alpha5.tar.gz) = c8e1c89dac9d355f0d6d8e7ead2481e4 END-of-gc/distinfo echo x - gc/pkg-plist sed 's/^X//' >gc/pkg-plist << 'END-of-gc/pkg-plist' Xinclude/gc.h Xinclude/gc_cpp.h Xlib/libgc.a X END-of-gc/pkg-plist echo c - gc/files mkdir -p gc/files > /dev/null 2>&1 echo x - gc/files/patch-Makefile sed 's/^X//' >gc/files/patch-Makefile << 'END-of-gc/files/patch-Makefile' X*** Makefile.orig Thu Feb 1 12:48:37 2001 X--- Makefile Thu Feb 1 13:08:43 2001 X*************** X*** 6,15 **** X # and runs some tests of collector and cords. Does not add cords or X # c++ interface to gc.a X # cord/de - builds dumb editor based on cords. X! ABI_FLAG= X! CC=cc $(ABI_FLAG) X! CXX=g++ $(ABI_FLAG) X! AS=as $(ABI_FLAG) X # The above doesn't work with gas, which doesn't run cpp. X # Define AS as `gcc -c -x assembler-with-cpp' instead. X # Under Irix 6, you will have to specify the ABI (-o32, -n32, or -64) X--- 6,15 ---- X # and runs some tests of collector and cords. Does not add cords or X # c++ interface to gc.a X # cord/de - builds dumb editor based on cords. X! #ABI_FLAG= X! #CC=cc $(ABI_FLAG) X! #CXX=g++ $(ABI_FLAG) X! #AS=as $(ABI_FLAG) X # The above doesn't work with gas, which doesn't run cpp. X # Define AS as `gcc -c -x assembler-with-cpp' instead. X # Under Irix 6, you will have to specify the ABI (-o32, -n32, or -64) X*************** X*** 20,26 **** X srcdir= . X VPATH= $(srcdir) X X! CFLAGS= -O -I$(srcdir)/include -DATOMIC_UNCOLLECTABLE -DNO_SIGNALS -DNO_EXECUTE_PERMISSION -DALL_INTERIOR_POINTERS -DSILENT X X # To build the parallel collector on Linux, add to the above: X # -DGC_LINUX_THREADS -DPARALLEL_MARK -DTHREAD_LOCAL_ALLOC X--- 20,26 ---- X srcdir= . X VPATH= $(srcdir) X X! CFLAGS= -O -I$(srcdir)/include -I$(srcdir) -DATOMIC_UNCOLLECTABLE -DNO_SIGNALS -DNO_EXECUTE_PERMISSION -DALL_INTERIOR_POINTERS -DSILENT X X # To build the parallel collector on Linux, add to the above: X # -DGC_LINUX_THREADS -DPARALLEL_MARK -DTHREAD_LOCAL_ALLOC X*************** X*** 256,262 **** X X bsd-libgc.a: X $(MAKE) CFLAGS="$(CFLAGS)" clean c++-t X! mv gc.a bsd-libgc.a X X BSD-pkg-install: BSD-pkg-all X ${CP} bsd-libgc.a libgc.a X--- 256,262 ---- X X bsd-libgc.a: X $(MAKE) CFLAGS="$(CFLAGS)" clean c++-t X! mv gc.a libgc.a X X BSD-pkg-install: BSD-pkg-all X ${CP} bsd-libgc.a libgc.a END-of-gc/files/patch-Makefile echo x - gc/pkg-comment sed 's/^X//' >gc/pkg-comment << 'END-of-gc/pkg-comment' Xa garbage collecting storage allocator that is intended to be used as a plug-in replacement for C's malloc END-of-gc/pkg-comment echo x - gc/pkg-descr sed 's/^X//' >gc/pkg-descr << 'END-of-gc/pkg-descr' XThis is a garbage collecting storage allocator that is intended to be Xused as a plug-in replacement for C's malloc. X Xhttp://www.hpl.hp.com/personal/Hans_Boehm/gc END-of-gc/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 Feb 8 1:11: 9 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B8D8137B69E; Thu, 8 Feb 2001 01:10:52 -0800 (PST) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f189Aqm19898; Thu, 8 Feb 2001 01:10:52 -0800 (PST) (envelope-from asmodai) Date: Thu, 8 Feb 2001 01:10:52 -0800 (PST) From: Message-Id: <200102080910.f189Aqm19898@freefall.freebsd.org> To: asmodai@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24778: "update" target not available in categories Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: "update" target not available in categories Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: asmodai Responsible-Changed-When: Thu Feb 8 01:10:30 PST 2001 Responsible-Changed-Why: Belongs to -ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=24778 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 1:15:55 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D82FC37B69F; Thu, 8 Feb 2001 01:15:36 -0800 (PST) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f189FaP20542; Thu, 8 Feb 2001 01:15:36 -0800 (PST) (envelope-from asmodai) Date: Thu, 8 Feb 2001 01:15:36 -0800 (PST) From: Message-Id: <200102080915.f189FaP20542@freefall.freebsd.org> To: dwcjr@inethouston.net, asmodai@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24446: Re: Postfix current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: Postfix current State-Changed-From-To: open->closed State-Changed-By: asmodai State-Changed-When: Thu Feb 8 01:14:34 PST 2001 State-Changed-Why: Was a reply. Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: asmodai Responsible-Changed-When: Thu Feb 8 01:14:34 PST 2001 Responsible-Changed-Why: Belonged to ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=24446 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 1:17:25 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 524FF37B69D; Thu, 8 Feb 2001 01:17:07 -0800 (PST) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f189H6120690; Thu, 8 Feb 2001 01:17:06 -0800 (PST) (envelope-from asmodai) Date: Thu, 8 Feb 2001 01:17:06 -0800 (PST) From: Message-Id: <200102080917.f189H6120690@freefall.freebsd.org> To: yds@dppl.com, asmodai@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24470: Re: Postfix current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: Postfix current State-Changed-From-To: open->closed State-Changed-By: asmodai State-Changed-When: Thu Feb 8 01:16:06 PST 2001 State-Changed-Why: Was a reply to a previous PR. Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: asmodai Responsible-Changed-When: Thu Feb 8 01:16:06 PST 2001 Responsible-Changed-Why: Belonged to ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=24470 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 1:19:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 76C1337B69C; Thu, 8 Feb 2001 01:18:53 -0800 (PST) Received: (from asmodai@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f189IrU20910; Thu, 8 Feb 2001 01:18:53 -0800 (PST) (envelope-from asmodai) Date: Thu, 8 Feb 2001 01:18:53 -0800 (PST) From: Message-Id: <200102080918.f189IrU20910@freefall.freebsd.org> To: FreeBSD-gnats-submit@FreeBSD.org, asmodai@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24471: Re: your mail Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Re: your mail State-Changed-From-To: open->closed State-Changed-By: asmodai State-Changed-When: Thu Feb 8 01:17:56 PST 2001 State-Changed-Why: Reply to other PR. Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: asmodai Responsible-Changed-When: Thu Feb 8 01:17:56 PST 2001 Responsible-Changed-Why: Belongs to ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=24471 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 1:20:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B750C37B69F for ; Thu, 8 Feb 2001 01:20:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f189K2i21038; Thu, 8 Feb 2001 01:20:02 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Feb 2001 01:20:02 -0800 (PST) Message-Id: <200102080920.f189K2i21038@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Subject: Re: ports/24471: Re: your mail Reply-To: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24471; it has been noted by GNATS. From: To: FreeBSD-gnats-submit@FreeBSD.org, asmodai@FreeBSD.org, gnats-admin@FreeBSD.org, freebsd-ports@FreeBSD.org Cc: Subject: Re: ports/24471: Re: your mail Date: Thu, 8 Feb 2001 01:18:53 -0800 (PST) Synopsis: Re: your mail State-Changed-From-To: open->closed State-Changed-By: asmodai State-Changed-When: Thu Feb 8 01:17:56 PST 2001 State-Changed-Why: Reply to other PR. Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: asmodai Responsible-Changed-When: Thu Feb 8 01:17:56 PST 2001 Responsible-Changed-Why: Belongs to ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=24471 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 1:20:27 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 162E837B6A3 for ; Thu, 8 Feb 2001 01:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f189K3e21047; Thu, 8 Feb 2001 01:20:03 -0800 (PST) (envelope-from gnats) Received: from jivago.ryazan.ru (jivago.ryazan.ru [212.26.226.45]) by hub.freebsd.org (Postfix) with ESMTP id 1B24037B69C for ; Thu, 8 Feb 2001 01:19:29 -0800 (PST) Received: from root by jivago.ryazan.ru with local (Exim 3.16 #1) id 14QnEc-000EOQ-00 for FreeBSD-gnats-submit@freebsd.org; Thu, 08 Feb 2001 12:19:26 +0300 Message-Id: Date: Thu, 08 Feb 2001 12:19:26 +0300 From: skv@protey.ru Reply-To: skv@protey.ru To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24948: New port: Orchard - innovative, lightweight API for event stream and tree views of XML and data represented in XML Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24948 >Category: ports >Synopsis: New port: Orchard - innovative, lightweight API for event stream and tree views of XML and data represented in XML >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Feb 08 01:20:02 PST 2001 >Closed-Date: >Last-Modified: >Originator: Sergey Skvortsov >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: New port: Orchard - innovative, lightweight API for event stream and tree views of XML and data represented in XML >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: # # orchard # orchard/Makefile # orchard/distinfo # orchard/files # orchard/files/patch-Makefile.in # orchard/pkg-plist # orchard/pkg-comment # orchard/pkg-descr # echo c - orchard mkdir -p orchard > /dev/null 2>&1 echo x - orchard/Makefile sed 's/^X//' >orchard/Makefile << 'END-of-orchard/Makefile' X# New ports collection makefile for: orchard X# Date created: 08 Feb 2001 X# Whom: Sergey Skvortsov X# X# $FreeBSD$ X# X XPORTNAME= Orchard-C XPORTVERSION= 0.5.0 XCATEGORIES= textproc XMASTER_SITES= ftp://orchard.sourceforge.net/pub/orchard/ \ X http://axKit.org/download/ X XMAINTAINER= skv@protey.ru X XLIB_DEPENDS= expat.2:${PORTSDIR}/textproc/expat2 XRUN_DEPENDS= ${LOCALBASE}/lib/libgc.a:${PORTSDIR}/devel/gc XBUILD_DEPENDS= python:${PORTSDIR}/lang/python X XINSTALLS_SHLIB= yes XLDCONFIG_DIRS= %%PREFIX%%/lib X XUSE_AUTOCONF= yes XCONFIGURE_ENV= CFLAGS="${CFLAGS} -I${LOCALBASE}/include" CPPFLAGS=-I${LOCALBASE}/include LDFLAGS=-L${LOCALBASE}/lib XUSE_LIBTOOL= yes X XMAKE_ENV+= RM="${RM} -f" X X.include END-of-orchard/Makefile echo x - orchard/distinfo sed 's/^X//' >orchard/distinfo << 'END-of-orchard/distinfo' XMD5 (Orchard-C-0.5.0.tar.gz) = 3b32c83aebbfd25e9716a1f5dd6d0cf8 END-of-orchard/distinfo echo c - orchard/files mkdir -p orchard/files > /dev/null 2>&1 echo x - orchard/files/patch-Makefile.in sed 's/^X//' >orchard/files/patch-Makefile.in << 'END-of-orchard/files/patch-Makefile.in' X*** Makefile.in.orig Sun Jan 28 04:17:32 2001 X--- Makefile.in Thu Feb 1 17:33:00 2001 X*************** X*** 35,41 **** X SHELL = /bin/sh X X LIBS = -lexpat -lgc X! CFLAGS = -I. -g -O2 X TESTSRCS = t/node_unit.moc t/node_func.moc t/MyNode.moc \ X t/list_unit.moc t/int_unit.moc t/string_unit.moc t/hash_unit.moc \ X t/symbol_unit.moc t/key_unit.moc t/if_unit.moc t/MyHandler.moc \ X--- 35,41 ---- X SHELL = /bin/sh X X LIBS = -lexpat -lgc X! CFLAGS = -I. -I$(includedir) -g -O2 X TESTSRCS = t/node_unit.moc t/node_func.moc t/MyNode.moc \ X t/list_unit.moc t/int_unit.moc t/string_unit.moc t/hash_unit.moc \ X t/symbol_unit.moc t/key_unit.moc t/if_unit.moc t/MyHandler.moc \ X*************** X*** 148,153 **** X--- 148,154 ---- X $(LIBTOOL) --mode=install $(INSTALL) $(LIBRARY) $(DESTDIR)$(libdir)/$(LIBRARY) X $(INSTALL_DATA) moc.h $(DESTDIR)$(includedir)/moc.h X $(INSTALL_DATA) moc_generated.h $(DESTDIR)$(includedir)/moc_generated.h X+ $(INSTALL_DATA) cexcept.h $(DESTDIR)$(includedir)/cexcept.h X X uninstall: X $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(libdir)/$(LIBRARY); END-of-orchard/files/patch-Makefile.in echo x - orchard/pkg-plist sed 's/^X//' >orchard/pkg-plist << 'END-of-orchard/pkg-plist' Xinclude/moc_generated.h Xinclude/moc.h Xlib/liborchard.a Xlib/liborchard.so Xlib/liborchard.so.0 END-of-orchard/pkg-plist echo x - orchard/pkg-comment sed 's/^X//' >orchard/pkg-comment << 'END-of-orchard/pkg-comment' Xinnovative, lightweight API for event stream and tree views of XML and data represented in XML END-of-orchard/pkg-comment echo x - orchard/pkg-descr sed 's/^X//' >orchard/pkg-descr << 'END-of-orchard/pkg-descr' XOrchard is an innovative, lightweight API for event stream and tree Xviews of XML and data represented in XML. Orchard merges the best Xparts of SAX and DOM while greatly simplifying both at the same time. X XWWW: http://beauvoir.phil.unc.edu/groves END-of-orchard/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 Feb 8 1:44:56 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (smtp.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 86A6437B684 for ; Thu, 8 Feb 2001 01:44:30 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f189i6g17137 for ; Thu, 8 Feb 2001 11:44:10 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f189i6m09923 for ; Thu, 8 Feb 2001 11:44:06 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A826A65.3436847B@FreeBSD.org> Date: Thu, 08 Feb 2001 11:44:06 +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: Strange problems with dynamic linking of libGL.so.1 from XFree86-4.0.2_5 References: <3A6C3D19.E1F56291@FreeBSD.org> <3A755D84.266A80E7@FreeBSD.org> <86vgqn7vj4.wl@cheerful.com> <3A8188ED.FC2A6241@FreeBSD.org> <200102080052.f180qxH02749@vashon.polstra.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org John Polstra wrote: > In article <3A8188ED.FC2A6241@FreeBSD.org>, > Maxim Sobolev wrote: > > FUJISHIMA Satsuki wrote: > > > > > As libc_r does not have libc feature now, there's no reason to avoid > > > linking -lc_r against shared libraries, I think. > > > > > > Index: contrib/gcc.295/config/freebsd.h > > > =================================================================== > > > RCS file: /home/ncvs/src/contrib/gcc.295/config/freebsd.h,v > > > retrieving revision 1.31 > > > diff -u -r1.31 freebsd.h > > > --- contrib/gcc.295/config/freebsd.h 2001/01/25 18:57:13 1.31 > > > +++ contrib/gcc.295/config/freebsd.h 2001/02/06 08:54:23 > > > @@ -76,10 +76,8 @@ > > > (like the default, except no -lg, and no -p). */ > > > #undef LIB_SPEC > > > #define LIB_SPEC "\ > > > - %{!shared: \ > > > - %{!pg: %{pthread:-lc_r} -lc} \ > > > - %{pg: %{pthread:-lc_r_p} -lc_p} \ > > > - }" > > > + %{!pg: %{pthread:-lc_r} %{!shared:-lc}} \ > > > + %{pg: %{pthread:-lc_r_p} %{!shared:-lc_p}}" > > > > > > > > > /************************[ Target stuff ]***********************************/ > > > > David, John what do you think about this patch? > > I think it would be a mistake to implement this. > > If the patch above were used then the shared library would contain > a dependency on a specific version of libc_r -- say libc_r.so.4. > But that version of libc_r is intimately tied to a specific version > of libc. Now if the application were run on a later version of > FreeBSD, it might get a newer libc which would be incompatible with > libc_r.so.4. Why not link against both libc_r and libc? Then the library would contain dependency to the particular libc_r/libc pair and all should be OK. #define LIB_SPEC "\ - %{!shared: \ - %{!pg: %{pthread:-lc_r} -lc} \ - %{pg: %{pthread:-lc_r_p} -lc_p} \ - }" + %{!pg: %{pthread:-lc_r} -lc} \ + %{pg: %{pthread:-lc_r_p} -lc_p}" > I think we need to view both libc and libc_r as basic low-level > system libraries which are to be linked once and only once into > the application. Other shared libraries should not have explicit > dependencies on them. If an application uses a library that requires > threads then the application itself should be linked with -lc_r or > -pthread. But that makes dlopen()ing a shared module linked against libc_r by the program that not linked against libc_r impossible. Also this makes life harder when linking against such libraries, for example if the shared library (GL in my example) requires libc_r then all programs that want to link against it should explicitly use -pthread or -lc_r. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 2:22:17 2001 Delivered-To: freebsd-ports@freebsd.org Received: from ringworld.nanolink.com (pool147-tch-1.Sofia.0rbitel.net [212.95.170.147]) by hub.freebsd.org (Postfix) with SMTP id 1BB5037B491 for ; Thu, 8 Feb 2001 02:21:57 -0800 (PST) Received: (qmail 30580 invoked by uid 1000); 8 Feb 2001 10:20:13 -0000 Date: Thu, 8 Feb 2001 12:20:13 +0200 From: Peter Pentchev To: Maxim Sobolev Cc: Jordan Hubbard , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] Message-ID: <20010208122012.H21672@ringworld.oblivion.bg> Mail-Followup-To: Maxim Sobolev , Jordan Hubbard , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis References: <10197.981450491@winston.osd.bsdi.com> <3A7FC36A.1434D2CC@FreeBSD.org> <3A801D32.DE73F780@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: <3A801D32.DE73F780@FreeBSD.org>; from sobomax@FreeBSD.org on Tue, Feb 06, 2001 at 05:50:10PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 06, 2001 at 05:50:10PM +0200, Maxim Sobolev wrote: > Maxim Sobolev wrote: > > Here it is. With this patch pkg_install treats any arguments as shell globs by > default and as regexs with -x, so for example the following is equivalent: > $ pkg_info foo\* > $ pkg_info -x ^foo.\* > > Please let me know what do you think about those patches. Finally got the time to look them over; they work great! Just one minor thing - look at the attached patch to completely get rid of the AllInstalled variable, and make pkg_info DTRT when called with no arguments (that was the first thing I tried, and it failed badly :) Great work, thanks! G'luck, Peter -- I've heard that this sentence is a rumor. diff -urN pkg_install-orig/info/main.c pkg_install/info/main.c --- pkg_install-orig/info/main.c Thu Feb 8 11:41:05 2001 +++ pkg_install/info/main.c Thu Feb 8 12:14:37 2001 @@ -32,7 +32,6 @@ int Flags = 0; match_t MatchType = MATCH_GLOB; -Boolean AllInstalled = FALSE; Boolean Quiet = FALSE; char *InfoPrefix = ""; char PlayPen[FILENAME_MAX]; @@ -49,7 +48,7 @@ pkgs = start = argv; if (argc == 1) { - AllInstalled = TRUE; + MatchType = MATCH_ALL; Flags = SHOW_INDEX; } else while ((ch = getopt(argc, argv, Options)) != -1) { @@ -186,7 +185,7 @@ } /* If no packages, yelp */ - if (pkgs == start && !AllInstalled && !CheckPkg) + if (pkgs == start && (MatchType != MATCH_ALL) && !CheckPkg) warnx("missing package name(s)"), usage(); *pkgs = NULL; return pkg_perform(start); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 2:24:54 2001 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 3B34F37B401 for ; Thu, 8 Feb 2001 02:24:29 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f18ANxg17955; Thu, 8 Feb 2001 12:23:59 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f18AO1m10119; Thu, 8 Feb 2001 12:24:01 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A8273C0.68E16021@FreeBSD.org> Date: Thu, 08 Feb 2001 12:24:00 +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: Akinori MUSHA Cc: "David O'Brien" , ports@FreeBSD.org Subject: Re: new tool: portupgrade References: <86k874g4c5.wl@archon.local.idaemons.org> <20010207163439.C70586@dragon.nuxi.com> <868znhk0uz.wl@archon.local.idaemons.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Akinori MUSHA wrote: > At Wed, 7 Feb 2001 16:34:39 -0800, > David O'Brien wrote: > > On Tue, Feb 06, 2001 at 07:19:54AM +0900, Akinori MUSHA wrote: > > > I wrote a handy tool to upgrade already installed packages with the > > > latest ports, called . It's still far from finished > > > (error handling, recursive upgrades, etc.), but it has achieved my > > > primary goal. > > > > How does this compare with pkg_update? > > Portupgrade upgrades ports. And as it does in somewhat an "illegal" > way to do the job (i.e. it does something out of the ports/packages > framework), I have completely no intention of putting it into the > system. The fact that it's written in Ruby is also a good reason not > to do that. :> Well, unless you remove cra^H^H^Hperl from the base and put ruby instead ;). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 2:28: 9 2001 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 14C0C37B401; Thu, 8 Feb 2001 02:27:42 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f18AR3g17997; Thu, 8 Feb 2001 12:27:03 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f18AR5m10135; Thu, 8 Feb 2001 12:27:05 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A827478.26A49757@FreeBSD.org> Date: Thu, 08 Feb 2001 12:27:04 +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: Peter Pentchev Cc: Jordan Hubbard , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] References: <10197.981450491@winston.osd.bsdi.com> <3A7FC36A.1434D2CC@FreeBSD.org> <3A801D32.DE73F780@FreeBSD.org> <20010208122012.H21672@ringworld.oblivion.bg> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Peter Pentchev wrote: > On Tue, Feb 06, 2001 at 05:50:10PM +0200, Maxim Sobolev wrote: > > Maxim Sobolev wrote: > > > > Here it is. With this patch pkg_install treats any arguments as shell globs by > > default and as regexs with -x, so for example the following is equivalent: > > $ pkg_info foo\* > > $ pkg_info -x ^foo.\* > > > > Please let me know what do you think about those patches. > > Finally got the time to look them over; they work great! > > Just one minor thing - look at the attached patch to completely get rid > of the AllInstalled variable, and make pkg_info DTRT when called with > no arguments (that was the first thing I tried, and it failed badly :) > > diff -urN pkg_install-orig/info/main.c pkg_install/info/main.c > --- pkg_install-orig/info/main.c Thu Feb 8 11:41:05 2001 > +++ pkg_install/info/main.c Thu Feb 8 12:14:37 2001 > @@ -32,7 +32,6 @@ > > int Flags = 0; > match_t MatchType = MATCH_GLOB; > -Boolean AllInstalled = FALSE; > [...] OOPS, how I missed it??? :-/ Merged, thank you for your comment. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 2:30:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34EDC37B401 for ; Thu, 8 Feb 2001 02:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18AU3n31604; Thu, 8 Feb 2001 02:30:03 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Feb 2001 02:30:03 -0800 (PST) Message-Id: <200102081030.f18AU3n31604@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Maxim Sobolev Subject: Re: ports/24932: Update port: x11-wm/xfce to version 3.7.2 Reply-To: Maxim Sobolev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24932; it has been noted by GNATS. From: Maxim Sobolev To: tkato@prontomail.ne.jp Cc: freebsd-gnats-submit@FreeBSD.org Subject: Re: ports/24932: Update port: x11-wm/xfce to version 3.7.2 Date: Thu, 08 Feb 2001 12:20:06 +0200 tkato@prontomail.ne.jp wrote: > >Number: 24932 > >Category: ports > >Synopsis: Update port: x11-wm/xfce to version 3.7.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: Wed Feb 07 10:30:02 PST 2001 > >Closed-Date: > >Last-Modified: > >Originator: KATO Tsuguru > >Release: 4.2-RELEASE i386 > >Organization: > >Environment: > >Description: > - Update to version 3.7.2 > > New file: > files/patch-ag files/patch-ah files/patch-ai files/patch-aj > files/patch-ak > > Remove file: > files/patch-af > > No response from maintainer. > > >How-To-Repeat: > > >Fix: > diff -urN /usr/ports/x11-wm/xfce/Makefile x11-wm/xfce/Makefile > > +USE_AUTOMAKE= yes > +AUTOMAKE_ARGS= --include-deps I don't like this change. USE_AUTOMAKE should be avoided wherever possible (and in my view it could be done easily here), because automake/autoconf/etc are poorly designed and error prone (try to install both gtk-1.2 and gtk-1.3, or sdl-1.0 and sdl-1.1 at the same time and see how it fails due to duplicated macros). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 2:40:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DD76837B65D for ; Thu, 8 Feb 2001 02:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18Ae1I32494; Thu, 8 Feb 2001 02:40:01 -0800 (PST) (envelope-from gnats) Date: Thu, 8 Feb 2001 02:40:01 -0800 (PST) Message-Id: <200102081040.f18Ae1I32494@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Anton Berezin Subject: Re: ports/24947: New port: gc - a garbage collecting storage allocator that is intended to be used as a plug-in replacement for C's malloc Reply-To: Anton Berezin Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24947; it has been noted by GNATS. From: Anton Berezin To: skv@protey.ru Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: ports/24947: New port: gc - a garbage collecting storage allocator that is intended to be used as a plug-in replacement for C's malloc Date: Thu, 8 Feb 2001 11:34:34 +0100 On Thu, Feb 08, 2001 at 12:03:08PM +0300, skv@protey.ru wrote: > New port: gc - a garbage collecting storage allocator that is intended > to be used as a plug-in replacement for C's malloc > XPORTNAME= gc > XPORTVERSION= 6.0alpha5 > XCATEGORIES= devel > XMASTER_SITES= http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/ How is it different (apart from the version) from devel/boehm-gc? Cheers, +Anton. -- May the tuna salad be with you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 4:20:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3E20937B491; Thu, 8 Feb 2001 04:20:25 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18CKMS52849; Thu, 8 Feb 2001 04:20:22 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 04:20:22 -0800 (PST) From: Message-Id: <200102081220.f18CKMS52849@freefall.freebsd.org> To: rjoseph@mammalia.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24910: Update port: graphics/linux-bmrt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/linux-bmrt State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 04:20:02 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24910 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 4:21:49 2001 Delivered-To: freebsd-ports@freebsd.org Received: from kleopatra.acc.umu.se (kleopatra.acc.umu.se [130.239.18.150]) by hub.freebsd.org (Postfix) with ESMTP id 6C08437B401; Thu, 8 Feb 2001 04:21:28 -0800 (PST) Received: from mao.acc.umu.se (root@mao.acc.umu.se [130.239.18.154]) by kleopatra.acc.umu.se (8.11.2/8.11.2) with ESMTP id f18CLOv23786; Thu, 8 Feb 2001 13:21:25 +0100 Received: (from markush@localhost) by mao.acc.umu.se (8.9.3/8.9.3/Debian 8.9.3-21) id NAA07539; Thu, 8 Feb 2001 13:21:23 +0100 Date: Thu, 8 Feb 2001 13:21:23 +0100 From: Markus Holmberg To: Garrett Wollman Cc: Wes Peters , freebsd-security@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: Package integrity check? Message-ID: <20010208132123.A4400@acc.umu.se> References: <20010205210459.A2479@acc.umu.se> <3A7F9AB6.5CAA983B@softweyr.com> <200102061526.KAA31832@khavrinen.lcs.mit.edu> <3A802FAF.792F61F5@softweyr.com> <200102061802.NAA33086@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3-current-20000511i In-Reply-To: <200102061802.NAA33086@khavrinen.lcs.mit.edu>; from wollman@khavrinen.lcs.mit.edu on Tue, Feb 06, 2001 at 01:02:08PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thanks Wes. I'm running -STABLE (and I was mostly just curious, not in a hurting need for this functionality right away) so I'm not sure I'm trying it out. But it's good to know it's available. On Tue, Feb 06, 2001 at 01:02:08PM -0500, Garrett Wollman wrote: > 1) Whatever process generates and checksums the packages also makes > and signs a master list of all the checksums from each package, and > > 2) Whatever process installs software from the package compares its > checksum against this master list, and verifies the signature of the > master list. It was these two things that I was thinking of in first place.. (When asking if it was possible to check for package integrity). But I realize it is not conceivable without a good deal of effort, so I was merely wondering if anyone else thought of it. > I think that this would be both useful and worthwhile, but again, we > need to make sure that legally we are not promising anything other > than ``these packages have not been modified since generation''. Of course, one could not ask for anything else either (more than to know that the packages were built by the FreeBSD Project and have not been modified since, as is the same with building software from the ports system). Markus -- Markus Holmberg | Give me Unix or give me a typewriter. markush@acc.umu.se | 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 Feb 8 4:22:25 2001 Delivered-To: freebsd-ports@freebsd.org Received: from 172.18.12.12 (unknown [64.79.156.24]) by hub.freebsd.org (Postfix) with SMTP id 5B58237B4EC for ; Thu, 8 Feb 2001 04:22:05 -0800 (PST) From: "California Casino" To: ports@freebsd.org Subject: Win a trip to Paris - California Casino Reply-To: "California Casino" Date: 08 Feb 2001 09:39:24 +0100 Mime-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_dhLeDYq3~bRxPkvo2-MR" X-LYRIS-Message-Id: Message-Id: <20010208122205.5B58237B4EC@hub.freebsd.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ------=_dhLeDYq3~bRxPkvo2-MR Content-Type: multipart/alternative; boundary="----=_6MQpOErZ~We7RI2nV-MA" ------=_6MQpOErZ~We7RI2nV-MA Content-Type: text/plain Content-Transfer-Encoding: 8bit Dear, Sir or Madam Love is in the air at California Casino, Enter the Valentine Prize Draw to get a chance to win one of three Trips for Two to Paris, the City of Love. For every deposit of $50+ and every wager of $10+, between 7th of February, 12.00 GMT until the 15th of February, 12.00 GMT, you will receive one contest entry. Three lucky winners will be chosen. Details here: http://www.californiacasino.com/re/re.pl/NL020701d The trip Includes two (2) coach class round trip airfare from any city in the world and hotel accommodations for two (2) adults for three (3) nights. Winners are responsible for all applicable taxes and fees in connection with prize receipt and use. Winners will be drawn February 15, 15.00 GMT and informed by California Casino the same day. *** New 3D Software **** January 10, 2001, Version 2.2 of the California Casino Software was released. Version 2.2 includes a number of improvements and new features such as the ability to play MP3 Files and more. Download California Casino's 3D Casino Software for FREE: http://www.californiacasino.com/re/re.pl/NL020701 Request a FREE California Casino CD-ROM: http://www.californiacasino.com/re/re.pl/NL020701 All the best, The California Casino Team http://www.californiacasino.com/re/re.pl/NL020701 ------=_6MQpOErZ~We7RI2nV-MA Content-Type: text/html Content-Transfer-Encoding: 8bit California Casino

California Casino


Love is in the air at California Casino, Enter the Valentine Prize Draw to get a chance to win one of three Trips for Two to Paris, the City of Love.

For every deposit of $50+ and every wager of $10+, between 7th of February, 12.00 GMT until the 15th of February, 12.00 GMT, you will receive one contest entry. Three lucky winners will be chosen. Details here:

The trip Includes two (2) coach class round trip airfare from any city in the world and hotel accommodations for two (2) adults for three (3) nights. Winners are responsible for all applicable taxes and fees in connection with prize receipt and use. Winners will be drawn February 15, 15.00 GMT and informed by California Casino the same day.

*** New 3D Software ****

January 10, 2001, Version 2.2 of the California Casino Software was released. Version 2.2 includes a number of improvements and new features such as the ability to play MP3 Files and more.

Download California Casino's 3D Casino Software for FREE:

Request a FREE California Casino CD-ROM:

California CasinoAll the best,
The California Casino Team


California Casino is strongly against sending unsolicited e-mail. If you would prefer not to receive any newsletters or information about our promotions and competitions, please go to http://www.californiacasino.com/remove/ to unsubscribe your e-mail address.

 

California Casino Home Download Help News Contact Previews Webmaster School Security CD-ROM

------=_6MQpOErZ~We7RI2nV-MA-- ------=_dhLeDYq3~bRxPkvo2-MR-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 4:27:55 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 26D5037B6BE; Thu, 8 Feb 2001 04:27:36 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18CRZ753717; Thu, 8 Feb 2001 04:27:35 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 04:27:35 -0800 (PST) From: Message-Id: <200102081227.f18CRZ753717@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24872: Update port: devel/jam to 2.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: devel/jam to 2.3 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 04:27:17 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24872 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 4:33:44 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4793B37B503; Thu, 8 Feb 2001 04:33:27 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18CXRB54507; Thu, 8 Feb 2001 04:33:27 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 04:33:27 -0800 (PST) From: Message-Id: <200102081233.f18CXRB54507@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24873: Update port: devel/kdevelop Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: devel/kdevelop State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 04:32:57 PST 2001 State-Changed-Why: Fixed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24873 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 4:36:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3B1B237B6DE; Thu, 8 Feb 2001 04:35:50 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18CZoT54926; Thu, 8 Feb 2001 04:35:50 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 04:35:50 -0800 (PST) From: Message-Id: <200102081235.f18CZoT54926@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24874: Update port: editors/nvi-m17n Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: editors/nvi-m17n State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 04:35:33 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24874 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 4:42: 7 2001 Delivered-To: freebsd-ports@freebsd.org Received: from fling.sanbi.ac.za (fling.sanbi.ac.za [196.38.142.119]) by hub.freebsd.org (Postfix) with ESMTP id C28C537B503; Thu, 8 Feb 2001 04:41:47 -0800 (PST) Received: from johann by fling.sanbi.ac.za with local (Exim 3.13 #4) id 14QqO5-000FoL-00; Thu, 08 Feb 2001 14:41:25 +0200 Date: Thu, 8 Feb 2001 14:41:25 +0200 From: Johann Visagie To: Neil Blakey-Milner Cc: Kris Kennaway , ports@FreeBSD.org, sheldonh@freebsd.org Subject: Re: Needed: apache/httpd ports to use 'www' user Message-ID: <20010208144125.I56586@fling.sanbi.ac.za> References: <20010207014012.B22502@mollari.cthul.hu> <20010207115736.A37769@rapier.smartspace.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: <20010207115736.A37769@rapier.smartspace.co.za>; from nbm@mithrandr.moria.org on Wed, Feb 07, 2001 at 11:57:37AM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Neil Blakey-Milner on 2001-02-07 (Wed) at 11:57:37 +0200: > > I prefer a "httpd" bikeshed - it's less likely to have been used by > others (and I've seen lots of places with a "www" group, and > group-writable web pages). I personally use "apache", but that may be > too specific; but I like specific. > > I've been working on moving zope to user zope - it's also the way I run > it by default. "squid" is another good target. Moving off at a slight tangent... what about alternative MTAs (where "alterntive" means "non-sendmail")? The only alternative MTA I use fairly often is Exim, and I recently noted that the FreeBSD port of Exim is still installed to run as root. There are certainly some security advantages to be gained from running it as a non-privileged user (though this could imply fiddling with the permissions of various spool directories). Does this apply to other alternative MTAs as well? If so, should there be one "mail" user for all of them, or should they each create their own sanbox user? [ CC to sheldonh, as I've been talking to him about the Exim port recently ] -- Johann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 4:47:58 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id EF53D37B503; Thu, 8 Feb 2001 04:47:40 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18CleP56756; Thu, 8 Feb 2001 04:47:40 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 04:47:40 -0800 (PST) From: Message-Id: <200102081247.f18CleP56756@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24875: Update port: lang/Gofer to 2.30b Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: lang/Gofer to 2.30b State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 04:47:28 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24875 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 4:54:49 2001 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 CC17B37B4EC for ; Thu, 8 Feb 2001 04:54:24 -0800 (PST) Received: from localhost (casantos@localhost) by gate.cpmet.ufpel.tche.br (8.11.1/8.11.1) with ESMTP id f18CsHQ04263 for ; Thu, 8 Feb 2001 12:54:18 GMT (envelope-from casantos@cpmet.ufpel.tche.br) Date: Thu, 8 Feb 2001 12:54:17 +0000 (GMT) From: "Carlos A. M. dos Santos" To: FreeBSD ports mailing list Subject: AST kit port? In-Reply-To: <200102081247.f18CleP56756@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 Hello Is there any ongoing effort to port the At&T's AST kit to FreeBSD. There is already a shells/ksh-19931228 but now that AT&T opened the source code of the whole package. Thanks -- 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 Thu Feb 8 4:55: 4 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B41737B6B2; Thu, 8 Feb 2001 04:54:42 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18Csga57896; Thu, 8 Feb 2001 04:54:42 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 04:54:42 -0800 (PST) From: Message-Id: <200102081254.f18Csga57896@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24876: Update port: mail/nail to 9.25 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: mail/nail to 9.25 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 04:54:30 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24876 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 5: 8:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4FF6537B67D; Thu, 8 Feb 2001 05:08:25 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18D8PZ61812; Thu, 8 Feb 2001 05:08:25 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 05:08:25 -0800 (PST) From: Message-Id: <200102081308.f18D8PZ61812@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24878: Update port: net/mrt to 2.2.2a Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/mrt to 2.2.2a State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 05:08:14 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24878 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 5:14:32 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1D9EB37B503; Thu, 8 Feb 2001 05:14:15 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18DEFk62596; Thu, 8 Feb 2001 05:14:15 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 05:14:15 -0800 (PST) From: Message-Id: <200102081314.f18DEFk62596@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24879: Update port: print/dvi2tty Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: print/dvi2tty State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 05:14:03 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24879 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 5:19:41 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 0960C37B67D; Thu, 8 Feb 2001 05:19:25 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18DJPQ63180; Thu, 8 Feb 2001 05:19:25 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 05:19:25 -0800 (PST) From: Message-Id: <200102081319.f18DJPQ63180@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24881: Update port: www/kwebsearch Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: www/kwebsearch State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 05:19:14 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24881 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 5:22: 5 2001 Delivered-To: freebsd-ports@freebsd.org Received: from leviathan.inethouston.net (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 72F0837B4EC; Thu, 8 Feb 2001 05:21:46 -0800 (PST) Received: from dwcjr (216-118-21-147.pdq.net [216.118.21.147]) by leviathan.inethouston.net (Postfix) with ESMTP id F19CC177E8B; Thu, 8 Feb 2001 07:21:46 -0600 (CST) Message-ID: <002f01c091d2$1529e240$931576d8@inethouston.net> From: "David W. Chapman Jr." To: "Johann Visagie" , "Neil Blakey-Milner" Cc: "Kris Kennaway" , , References: <20010207014012.B22502@mollari.cthul.hu> <20010207115736.A37769@rapier.smartspace.co.za> <20010208144125.I56586@fling.sanbi.ac.za> Subject: Re: Needed: apache/httpd ports to use 'www' user Date: Thu, 8 Feb 2001 07:21:44 -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 Postfix-current has run as the user postfix/group postfix for a long time. > Moving off at a slight tangent... what about alternative MTAs (where > "alterntive" means "non-sendmail")? > > The only alternative MTA I use fairly often is Exim, and I recently noted > that the FreeBSD port of Exim is still installed to run as root. There are > certainly some security advantages to be gained from running it as a > non-privileged user (though this could imply fiddling with the permissions of > various spool directories). > > Does this apply to other alternative MTAs as well? If so, should there be > one "mail" user for all of them, or should they each create their own sanbox > user? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 6:20:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id ECFF737B698 for ; Thu, 8 Feb 2001 06:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18EK1D72516; Thu, 8 Feb 2001 06:20:01 -0800 (PST) (envelope-from gnats) Received: from salome.caimis.com (sdsl-216-46-87-226.dsl.nyc.megapath.net [216.46.87.226]) by hub.freebsd.org (Postfix) with ESMTP id 9927C37B401 for ; Thu, 8 Feb 2001 06:13:16 -0800 (PST) Received: (from horen@localhost) by salome.caimis.com (8.11.1/8.11.1) id f18EDFP01195; Thu, 8 Feb 2001 09:13:15 -0500 (EST) (envelope-from horen) Message-Id: <200102081413.f18EDFP01195@salome.caimis.com> Date: Thu, 8 Feb 2001 09:13:15 -0500 (EST) From: horen@caimis.com Reply-To: horen@caimis.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24951: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24951 >Category: ports >Synopsis: >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 Feb 08 06:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Horen Kuecuekyan >Release: FreeBSD 4.2-STABLE i386 >Organization: Caimis Inc. >Environment: >Description: >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: # # omniORB-Notify # omniORB-Notify/Makefile # omniORB-Notify/pkg-comment # omniORB-Notify/pkg-descr # omniORB-Notify/pkg-plist # omniORB-Notify/distinfo # omniORB-Notify/files # omniORB-Notify/files/patch-aa # omniORB-Notify/files/patch-aj # omniORB-Notify/files/patch-ak # omniORB-Notify/files/patch-ba # omniORB-Notify/files/patch-bb # omniORB-Notify/files/patch-bc # omniORB-Notify/files/patch-bd # echo c - omniORB-Notify mkdir -p omniORB-Notify > /dev/null 2>&1 echo x - omniORB-Notify/Makefile sed 's/^X//' >omniORB-Notify/Makefile << 'END-of-omniORB-Notify/Makefile' X# New ports collection makefile for: omniNotify X# Date created: February 7 2001 X# Whom: horen@caimis.com X# X# $FreeBSD$ X# X XPORTNAME= omniORB-Notify XPORTVERSION= 3.0.2N XCATEGORIES= devel XMASTER_SITES= ftp://ftp.uk.research.att.com/pub/omniNotify/omniNotify1/ \ X ftp://ftp.uk.research.att.com/pub/omniORB/omniORB3/ XDISTFILES= omniNotify11b1.tar.gz \ X omniORB_302.tar.gz X XMAINTAINER= horen@caimis.com X XMAN1= catior.1 genior.1 nameclt.1 obuildtree.1 ols.1 omake.1 \ X omniNames.1 opriv.1 oshadow.1 X XUSE_PYTHON= yes XUSE_NEWGCC= yes XUSE_GMAKE= yes XINSTALLS_SHLIB= yes XNO_FILTER_SHLIBS=yes XMAKEFILE= GNUmakefile XALL_TARGET= export XMAKE_ENV+= CDEBUGFLAGS="${CFLAGS}" CXXDEBUGFLAGS="${CXXFLAGS}" \ X BSD_INSTALL="${INSTALL}" PYTHON_CMD="${PYTHON_CMD}" \ X MKDIR="${MKDIR}" X XONLY_FOR_ARCHS= i386 XCONFIG_TARGET= x86_freebsd_4.0 X XWRKSRC=${WRKDIR}/omni/src X Xpre-patch: X (${MV} ${PORTSDIR}/devel/omniORB-Notify/work/omniNotify \ X ${PORTSDIR}/devel/omniORB-Notify/work/omni/src/services) X Xpost-patch: X @${SETENV} LANG=C ${PERL} -pi -e 's/__PLATFORM__/${CONFIG_TARGET}/;' \ X ${WRKSRC}/../config/config.mk X Xbinfiles= all_cosnotify_clients any_pull_consumer any_pull_supplier \ X any_push_consumer any_push_supplier batch_pull_consumer \ X batch_pull_supplier batch_push_consumer batch_push_supplier \ X catior convertior demo_add_filter demo_offer_change \ X demo_subscription_change genior legacy_pull_consumer \ X legacy_pull_supplier legacy_push_consumer \ X legacy_push_supplier nameclt notifd omkdepend omniMapper \ X omniNames struct_pull_consumer struct_pull_supplier \ X struct_push_consumer struct_push_supplier X Xscriptfiles= omniidl omniidlrun.py X Xdo-install: X.for binfile in ${binfiles} X ${INSTALL_PROGRAM} ${WRKSRC}/../bin/${CONFIG_TARGET}/${binfile} \ X ${PREFIX}/bin X.endfor X X.for scriptfile in ${scriptfiles} X ${INSTALL_SCRIPT} ${WRKSRC}/../bin/${CONFIG_TARGET}/${scriptfile} \ X ${PREFIX}/bin X.endfor X X cd ${WRKSRC}/../lib/${CONFIG_TARGET} && \ X find . |cpio -pdum -R ${BINOWN}:${BINGRP} ${PREFIX}/lib X cd ${WRKSRC}/../lib/python && \ X tar -cvf - * | (cd ${PYTHON_LIBDIR} ; tar -xvf -) X X.for m in ${MAN1} X ${INSTALL_MAN} ${WRKSRC}/../man/man1/${m} ${PREFIX}/man/man1 X.endfor X ${MKDIR} ${PREFIX}/include/omniORB3 X ${MKDIR} ${PREFIX}/include/omnithread X ${INSTALL_DATA} ${WRKSRC}/../include/omnithread.h ${PREFIX}/include X ${INSTALL_DATA} ${WRKSRC}/../include/omniNotify.h ${PREFIX}/include X cd ${WRKSRC}/../include && \ X ${INSTALL_DATA} omnithread/* ${PREFIX}/include/omnithread; \ X ${INSTALL_DATA} omniORB3/* ${PREFIX}/include/omniORB3 X @ cd ${.CURDIR} X X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/share/doc/omniORB X ${INSTALL_DATA} ${WRKSRC}/../README.unix ${PREFIX}/share/doc/omniORB X ${INSTALL_DATA} ${WRKSRC}/../README.FreeBSD ${PREFIX}/share/doc/omniORB X ${INSTALL_DATA} \ X ${WRKSRC}/../ReleaseNote_omniORB_302 ${PREFIX}/share/doc/omniORB X ${INSTALL_DATA} \ X ${WRKSRC}/services/omniNotify/ReleaseNote_omniNotify_11_beta \ X ${PREFIX}/share/doc/omniORB X ${MKDIR} ${PREFIX}/share/examples/omniORB X ${MKDIR} ${PREFIX}/share/examples/omniORB/omniNotify X ${CP} -r ${WRKSRC}/services/omniNotify/examples \ X ${PREFIX}/share/examples/omniORB/omniNotify X ${CP} -r ${WRKSRC}/examples ${PREFIX}/share/examples/omniORB X cd ${WRKSRC}/../doc && \ X find . |cpio -pdum -R ${SHAREOWN}:${SHAREGRP} \ X ${PREFIX}/share/doc/omniORB X.endif X X.include END-of-omniORB-Notify/Makefile echo x - omniORB-Notify/pkg-comment sed 's/^X//' >omniORB-Notify/pkg-comment << 'END-of-omniORB-Notify/pkg-comment' XCORBA 2 implementation (omniORB) with Notification service END-of-omniORB-Notify/pkg-comment echo x - omniORB-Notify/pkg-descr sed 's/^X//' >omniORB-Notify/pkg-descr << 'END-of-omniORB-Notify/pkg-descr' XNotification service for omniORB3, a GPL'd Object Request Broker (ORB) Xwhich implements specification 2.3 of the CORBA. X XWWW: http://www.uk.research.att.com/omniORB/ END-of-omniORB-Notify/pkg-descr echo x - omniORB-Notify/pkg-plist sed 's/^X//' >omniORB-Notify/pkg-plist << 'END-of-omniORB-Notify/pkg-plist' Xbin/catior Xbin/convertior Xbin/genior Xbin/nameclt Xbin/omkdepend Xbin/omniMapper Xbin/omniNames Xbin/omniidl Xbin/omniidlrun.py Xbin/notifd Xbin/any_push_consumer Xbin/any_push_supplier Xbin/batch_pull_consumer Xbin/batch_pull_supplier Xbin/batch_push_consumer Xbin/batch_push_supplier Xbin/event_pull_consumer Xbin/event_pull_supplier Xbin/event_push_consumer Xbin/event_push_supplier Xbin/filter_struct_pull_consumer Xbin/filter_struct_push_consumer Xbin/filter_struct_push_supplier Xbin/struct_pull_consumer Xbin/struct_pull_supplier Xbin/struct_push_consumer Xbin/struct_push_supplier Xinclude/omniORB3/CORBA.h Xinclude/omniORB3/CORBA_basetypes.h Xinclude/omniORB3/CORBA_sysdep.h Xinclude/omniORB3/CORBA_vartypes.h Xinclude/omniORB3/GIOP.h Xinclude/omniORB3/IIOP.h Xinclude/omniORB3/IOP.h Xinclude/omniORB3/Naming.hh Xinclude/omniORB3/boa.h Xinclude/omniORB3/bufferedStream.h Xinclude/omniORB3/callDescriptor.h Xinclude/omniORB3/corba_operators.h Xinclude/omniORB3/corbaidl_defs.hh Xinclude/omniORB3/corbaidl_operators.hh Xinclude/omniORB3/corbaidl_poa.hh Xinclude/omniORB3/giopDriver.h Xinclude/omniORB3/ir_defs.hh Xinclude/omniORB3/ir_operators.hh Xinclude/omniORB3/ir_poa.hh Xinclude/omniORB3/omniInternal.h Xinclude/omniORB3/omniLifeCycle.hh Xinclude/omniORB3/omniORB.h Xinclude/omniORB3/omniObjKey.h Xinclude/omniORB3/omniObjRef.h Xinclude/omniORB3/omniServant.h Xinclude/omniORB3/omniURI.h Xinclude/omniORB3/poa.h Xinclude/omniORB3/poa_defs.h Xinclude/omniORB3/poa_operators.h Xinclude/omniORB3/poa_poa.h Xinclude/omniORB3/proxyFactory.h Xinclude/omniORB3/rope.h Xinclude/omniORB3/seqtemplates.h Xinclude/omniORB3/stringtypes.h Xinclude/omniORB3/stringtypes.h.old Xinclude/omniORB3/tcDescriptor.h Xinclude/omniORB3/templatedecls.h Xinclude/omniORB3/templatedefns.h Xinclude/omniORB3/tracedthread.h Xinclude/omniORB3/userexception.h Xinclude/omnithread.h Xinclude/omnithread/mach.h Xinclude/omnithread/nt.h Xinclude/omnithread/posix.h Xinclude/omnithread/pthread_nt.h Xinclude/omnithread/solaris.h Xinclude/omniNotify.h Xlib/_omniidlmodule.so Xlib/_omniidlmodule.so.0 Xlib/_omniidlmodule.so.0.1 Xlib/libCOS3.a Xlib/libCOS3.so Xlib/libCOS3.so.0 Xlib/libCOS3.so.0.2 Xlib/libCOSBOA3.a Xlib/libCOSBOA3.so Xlib/libCOSBOA3.so.0 Xlib/libCOSBOA3.so.0.2 Xlib/libCOSDynamic3.a Xlib/libCOSDynamic3.so Xlib/libCOSDynamic3.so.0 Xlib/libCOSDynamic3.so.0.2 Xlib/libomniDynamic3.a Xlib/libomniDynamic3.so Xlib/libomniDynamic3.so.0 Xlib/libomniDynamic3.so.0.2 Xlib/libomniGK_alone.a Xlib/libomniGK_stub.a Xlib/libomniORB3.a Xlib/libomniORB3.so Xlib/libomniORB3.so.0 Xlib/libomniORB3.so.0.2 Xlib/libomnithread.a Xlib/libomnithread.so Xlib/libomnithread.so.2 Xlib/libomnithread.so.2.1 Xlib/libtcpwrapGK.a Xlib/libtcpwrapGK.so Xlib/libtcpwrapGK.so.2 Xlib/libtcpwrapGK.so.2.0 Xlib/omnicpp Xlib/libCOSNotifyBOA3.a Xlib/libCOSNotifyBOA3.so Xlib/libCOSNotifyBOA3.so.0 Xlib/libCOSNotifyBOA3.so.0.2 Xhare/doc/omniORB/README.FreeBSD Xshare/doc/omniORB/README.unix Xshare/doc/omniORB/ReleaseNote_omniORB_302 Xshare/doc/omniORB/omniNames.html Xshare/doc/omniORB/omniNames.pdf Xshare/doc/omniORB/omniNames.ps Xshare/doc/omniORB/omniNames.tex Xshare/doc/omniORB/omniORB.pdf Xshare/doc/omniORB/omniORB.ps Xshare/doc/omniORB/omniORB/contents_motif.gif Xshare/doc/omniORB/omniORB/index.html Xshare/doc/omniORB/omniORB/next_motif.gif Xshare/doc/omniORB/omniORB/omniORB001.html Xshare/doc/omniORB/omniORB/omniORB002.html Xshare/doc/omniORB/omniORB/omniORB003.html Xshare/doc/omniORB/omniORB/omniORB004.html Xshare/doc/omniORB/omniORB/omniORB005.html Xshare/doc/omniORB/omniORB/omniORB006.html Xshare/doc/omniORB/omniORB/omniORB007.html Xshare/doc/omniORB/omniORB/omniORB008.html Xshare/doc/omniORB/omniORB/omniORB009.html Xshare/doc/omniORB/omniORB/omniORB010.html Xshare/doc/omniORB/omniORB/omniORB011.html Xshare/doc/omniORB/omniORB/omniORB012.html Xshare/doc/omniORB/omniORB/omniORB013.html Xshare/doc/omniORB/omniORB/omniORB014.html Xshare/doc/omniORB/omniORB/previous_motif.gif Xshare/doc/omniORB/omniidl.html Xshare/doc/omniORB/omniidl.pdf Xshare/doc/omniORB/omniidl.ps Xshare/doc/omniORB/omnithread.html Xshare/doc/omniORB/omnithread.pdf Xshare/doc/omniORB/omnithread.ps Xshare/doc/omniORB/omnithread.tex Xshare/doc/omniORB/tex/cover.tex Xshare/doc/omniORB/tex/ode.tex Xshare/doc/omniORB/tex/omniORB.bib Xshare/doc/omniORB/tex/omniORB.tex Xshare/doc/omniORB/tex/omniParTcl.tex Xshare/doc/omniORB/tex/omniidl.tex Xshare/doc/omniORB/tex/omnithread.tex Xshare/doc/omniORB/utilities.html Xshare/doc/omniORB/utilities.pdf Xshare/doc/omniORB/utilities.ps Xshare/doc/omniORB/utilities.tex X@dirrm share/doc/omniORB/tex X@dirrm share/doc/omniORB/omniORB X@dirrm share/doc/omniORB X@dirrm include/omnithread X@dirrm include/omniORB3 END-of-omniORB-Notify/pkg-plist echo x - omniORB-Notify/distinfo sed 's/^X//' >omniORB-Notify/distinfo << 'END-of-omniORB-Notify/distinfo' XMD5 (omniORB_302.tar.gz) = fd44f65cfd56a5c5d5a2a46d1da6c8e1 XMD5 (omniNotify11b1.tar.gz) = b4b1ef0c05f178e0e93485f852467882 END-of-omniORB-Notify/distinfo echo c - omniORB-Notify/files mkdir -p omniORB-Notify/files > /dev/null 2>&1 echo x - omniORB-Notify/files/patch-aa sed 's/^X//' >omniORB-Notify/files/patch-aa << 'END-of-omniORB-Notify/files/patch-aa' X--- ../config/config.mk.orig Fri Aug 18 16:09:38 2000 X+++ ../config/config.mk Mon Sep 11 17:26:22 2000 X@@ -77,6 +77,7 @@ X #platform = x86_freebsd_3.2 X #platform = x86_freebsd_4.0 X #platform = pc486_rtems_4.5.0 X+platform = __PLATFORM__ X X # On Win32 platforms, uncomment the following line to build all the binaries X # with debugging information. Useful if you want to debug the binaries under END-of-omniORB-Notify/files/patch-aa echo x - omniORB-Notify/files/patch-aj sed 's/^X//' >omniORB-Notify/files/patch-aj << 'END-of-omniORB-Notify/files/patch-aj' X--- ../mk/platforms/x86_freebsd_4.0.mk.orig Fri Aug 18 16:09:33 2000 X+++ ../mk/platforms/x86_freebsd_4.0.mk Tue Sep 12 09:56:52 2000 X@@ -10,7 +10,7 @@ X # X # You must set a path to a Python 1.5.2 interpreter. X X-#PYTHON = /usr/local/bin/python X+PYTHON = ${PYTHON_CMD} X X X # X@@ -25,12 +25,13 @@ X # X X AR = ar cq X+MKDIRHIER= ${MKDIR} X X CPP = /usr/libexec/cpp X X-CXX = g++295 X+CXX ?= g++ X CXXMAKEDEPEND += -D__cplusplus -D__GNUG__ -D__GNUC__ X-CXXDEBUGFLAGS = -O2 X+CXXDEBUGFLAGS ?= -O2 X X CXXLINK = $(CXX) -pthread -s X CXXLINKOPTIONS = $(CXXDEBUGFLAGS) $(CXXOPTIONS) X@@ -39,14 +40,14 @@ X EgcsMajorVersion = 1 X EgcsMinorVersion = 1 # This is actually a post-1.0 egcs snapshot. X X-CC = gcc295 X+CC ?= gcc X CMAKEDEPEND += -D__GNUC__ X-CDEBUGFLAGS = -O2 X+CDEBUGFLAGS ?= -O2 X X CLINK = $(CC) X CLINKOPTIONS = $(CDEBUGFLAGS) $(COPTIONS) X X-INSTALL = install -c X+INSTALL = ${BSD_INSTALL} -c X X IMPORT_CPPFLAGS += -D__x86__ -D__freebsd__ -D__OSVERSION__=4 X X@@ -72,10 +73,10 @@ X # Default location of the omniORB configuration file [falls back to this if X # the environment variable OMNIORB_CONFIG is not set] : X X-OMNIORB_CONFIG_DEFAULT_LOCATION = /etc/omniORB.cfg X+OMNIORB_CONFIG_DEFAULT_LOCATION = ${PREFIX}/etc/omniORB.cfg X X # Default directory for the omniNames log files. X-OMNINAMES_LOG_DEFAULT_LOCATION = /var/omninames X+OMNINAMES_LOG_DEFAULT_LOCATION = /var/log/omninames X X # Uncomment the following if you want all utils and examples build in X # this tree to statically linke with the omniORB libraries. END-of-omniORB-Notify/files/patch-aj echo x - omniORB-Notify/files/patch-ak sed 's/^X//' >omniORB-Notify/files/patch-ak << 'END-of-omniORB-Notify/files/patch-ak' X--- tool/omniidl/cxx/idlutil.cc.orig Fri Aug 18 16:09:06 2000 X+++ tool/omniidl/cxx/idlutil.cc Mon Sep 11 17:44:48 2000 X@@ -148,7 +148,7 @@ X IdlIntLiteral X idl_strtoul(const char* text, int base) X { X- return strtoull(text, 0, base); X+ return strtouq(text, 0, base); X } X X # endif END-of-omniORB-Notify/files/patch-ak echo x - omniORB-Notify/files/patch-ba sed 's/^X//' >omniORB-Notify/files/patch-ba << 'END-of-omniORB-Notify/files/patch-ba' X*** services/omniNotify/lib/RDILog.cc.orig Wed Nov 15 16:17:30 2000 X--- services/omniNotify/lib/RDILog.cc Wed Feb 7 13:52:47 2001 X*************** X*** 744,750 **** X X if ( _dirpath ) { X sprintf(fname, "%s/%s", _logpath, log_anchor_name); X! if ( (afdes = ::open(fname, O_RDWR | O_SYNC, 0600)) == -1 ) { X RDI_DUMP("failed to open anchor " << fname << " - errno " << errno); X return -1; X } X--- 744,750 ---- X X if ( _dirpath ) { X sprintf(fname, "%s/%s", _logpath, log_anchor_name); X! if ( (afdes = ::open(fname, O_RDWR | O_FSYNC, 0600)) == -1 ) { X RDI_DUMP("failed to open anchor " << fname << " - errno " << errno); X return -1; X } END-of-omniORB-Notify/files/patch-ba echo x - omniORB-Notify/files/patch-bb sed 's/^X//' >omniORB-Notify/files/patch-bb << 'END-of-omniORB-Notify/files/patch-bb' X*** services/omniNotify/include/RDIEvent.h.orig Fri Dec 15 11:15:27 2000 X--- services/omniNotify/include/RDIEvent.h Wed Feb 7 13:53:23 2001 X*************** X*** 662,673 **** X Key_t key; X Val_t vnode; X _vmap = new RTValMap(Key_t::hash, Key_t::rank); X- if (_evnt.header.variable_header.length()) X- _vahdr_rtval = new RDI_RTVal[_evnt.header.variable_header.length()]; X- if (_evnt.filterable_data.length()) X- _fdata_rtval = new RDI_RTVal[_evnt.filterable_data.length()]; X X! for (i=0; i < _evnt.header.variable_header.length(); i++) { X _vahdr_rtval[i].init_from_any( _evnt.header.variable_header[i].value ); X const char* nm = _evnt.header.variable_header[i].name; X key._nm = nm; X--- 662,677 ---- X Key_t key; X Val_t vnode; X _vmap = new RTValMap(Key_t::hash, Key_t::rank); X X! unsigned int len = _evnt.header.variable_header.length(); X! if (len) X! _vahdr_rtval = new RDI_RTVal[len]; X! X! unsigned int flen = _evnt.filterable_data.length(); X! if (flen) X! _fdata_rtval = new RDI_RTVal[flen]; X! X! for (i=0; i < len; i++) { X _vahdr_rtval[i].init_from_any( _evnt.header.variable_header[i].value ); X const char* nm = _evnt.header.variable_header[i].name; X key._nm = nm; END-of-omniORB-Notify/files/patch-bb echo x - omniORB-Notify/files/patch-bc sed 's/^X//' >omniORB-Notify/files/patch-bc << 'END-of-omniORB-Notify/files/patch-bc' X*** services/dir.mk.orig Wed Feb 7 17:17:41 2001 X--- services/dir.mk Wed Feb 7 17:17:03 2001 X*************** X*** 1,4 **** X! SUBDIRS = mklib X X all:: X @$(MakeSubdirs) X--- 1,4 ---- X! SUBDIRS = mklib omniNotify X X all:: X @$(MakeSubdirs) END-of-omniORB-Notify/files/patch-bc echo x - omniORB-Notify/files/patch-bd sed 's/^X//' >omniORB-Notify/files/patch-bd << 'END-of-omniORB-Notify/files/patch-bd' X*** services/omniNotify/daemon/ReadyChannel_d.cc.orig Wed Feb 7 17:30:18 2001 X--- services/omniNotify/daemon/ReadyChannel_d.cc Wed Feb 7 17:31:00 2001 X*************** X*** 60,66 **** X #include X #include X #include X! #include X #include "corba_wrappers.h" X #include "CosNotifyShorthands.h" X #include "omniNotify.h" X--- 60,66 ---- X #include X #include X #include X! // #include X #include "corba_wrappers.h" X #include "CosNotifyShorthands.h" X #include "omniNotify.h" X*************** X*** 89,101 **** X if (strrchr(pn, '\\')) { pn = strrchr(pn, '\\'); pn++; } X if (strlen(pn) == 0) { pn = (char*)"notifd"; } X char* pname = CORBA::string_dup(pn); X- X- // Increase the limit of open file descriptor to the maximum X- struct rlimit rlp; X- if ( getrlimit(RLIMIT_NOFILE, &rlp) == 0 ) { X- rlp.rlim_cur = rlp.rlim_max; X- (void) setrlimit(RLIMIT_NOFILE, &rlp); X- } X X while ( indx < argc ) { X if ( strcmp(argv[indx], "-i") == 0 ) { X--- 89,94 ---- END-of-omniORB-Notify/files/patch-bd 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 Feb 8 7:16:55 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5DB7237B401; Thu, 8 Feb 2001 07:16:39 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18FGdh66702; Thu, 8 Feb 2001 07:16:39 -0800 (PST) (envelope-from okazaki) Date: Thu, 8 Feb 2001 07:16:39 -0800 (PST) From: Message-Id: <200102081516.f18FGdh66702@freefall.freebsd.org> To: rjoseph@mammalia.org, okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23373: Update Port: graphics/linux-bmrt Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Port: graphics/linux-bmrt State-Changed-From-To: open->closed State-Changed-By: okazaki State-Changed-When: Thu Feb 8 07:13:33 PST 2001 State-Changed-Why: Superseded by ports/24910 http://www.freebsd.org/cgi/query-pr.cgi?pr=23373 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 7:32: 6 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 605A937B4EC; Thu, 8 Feb 2001 07:31:49 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18FVnx68414; Thu, 8 Feb 2001 07:31:49 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 07:31:49 -0800 (PST) From: Message-Id: <200102081531.f18FVnx68414@freefall.freebsd.org> To: roman@xpert.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24883: [MAINTAINER UPDATE] graphics/xine 0.3.6->0.3.7 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE] graphics/xine 0.3.6->0.3.7 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 07:31:36 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24883 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 7:40:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 900A737B4EC for ; Thu, 8 Feb 2001 07:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18Fe2S69571; Thu, 8 Feb 2001 07:40:02 -0800 (PST) (envelope-from gnats) Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (Postfix) with ESMTP id 0EB6B37B401 for ; Thu, 8 Feb 2001 07:30:24 -0800 (PST) Received: from v-ger.we.lc.ehu.es (v-ger [158.227.6.179]) by polaris.we.lc.ehu.es (8.11.1/8.11.1) with ESMTP id f18FUJb20222 for ; Thu, 8 Feb 2001 16:30:19 +0100 (MET) Received: (from jose@localhost) by v-ger.we.lc.ehu.es (8.11.1/8.11.1) id f18FUCH04599; Thu, 8 Feb 2001 16:30:12 +0100 (CET) (envelope-from jose) Message-Id: <200102081530.f18FUCH04599@v-ger.we.lc.ehu.es> Date: Thu, 8 Feb 2001 16:30:12 +0100 (CET) From: "Jose M. Alcaide" Reply-To: jose@we.lc.ehu.es To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24952: kdebase2 fails to install when using qt-2.2.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24952 >Category: ports >Synopsis: kdebase2 fails to install when using qt-2.2.4 >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 08 07:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jose M. Alcaide >Release: FreeBSD 4.2-RELEASE i386 >Organization: Universidad del Pais Vasco - Dept. de Electricidad y Electronica >Environment: Recent 5.0-CURRENT: FreeBSD defiant.we.lc.ehu.es 5.0-CURRENT FreeBSD 5.0-CURRENT #1: Wed Feb 7 15:04:53 CET 2001 toor@defiant.we.lc.ehu.es:/usr/obj/usr/src/sys/DEFIANT i386 >Description: While trying to install the kdebase2 port (once it has been succesfully built) a SIGSEGV is triggered when the kappfinder_install utility is executed as part of the installation process. Backtracing with a debugger shows some kind of problem in a Qt routine. This problem happens after the qt2 port was updated to qt-2.2.4. I installed qt-2.2.3 (built from the qt2 port as of Feb, 3, i.e., just before the update to 2.2.4), and then I rebuilt and installed kdebase2 without any problems. Here is an excerpt from the kdebase2 install log: ..... Installing non-KDE applications pwd=`pwd`; \ (cd . && $pwd/kappfinder_install "/usr/local/share/applnk") Segmentation fault - core dumped gmake[3]: *** [runkappfinder_yes] Error 139 ..... >How-To-Repeat: Try to install kdebase2 and all of its dependencies (particularly qt2) on a system with and up-to-date ports tree. I only tested this on a -CURRENT system. >Fix: Downgrade the qt2 port back to version 2.2.3 until *the* fix is found. >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 Feb 8 8: 4: 1 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 88AD337B6B5; Thu, 8 Feb 2001 08:03:40 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18G3dJ72770; Thu, 8 Feb 2001 08:03:39 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 08:03:39 -0800 (PST) From: Message-Id: <200102081603.f18G3dJ72770@freefall.freebsd.org> To: osa@FreeBSD.org.ru, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24894: update databases/db3: sominor version fixed (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update databases/db3: sominor version fixed (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 08:03:22 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24894 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 8: 7:46 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 53ABC37B401; Thu, 8 Feb 2001 08:07:30 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18G7TL75451; Thu, 8 Feb 2001 08:07:29 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 08:07:29 -0800 (PST) From: Message-Id: <200102081607.f18G7TL75451@freefall.freebsd.org> To: runge@core.de, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24897: xmradio's homepage moved and authors/port maintainers address Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: xmradio's homepage moved and authors/port maintainers address State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 08:07:17 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24897 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 8:12:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F12F037B491; Thu, 8 Feb 2001 08:12:04 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18GC4e76087; Thu, 8 Feb 2001 08:12:04 -0800 (PST) (envelope-from olgeni) Date: Thu, 8 Feb 2001 08:12:04 -0800 (PST) From: Message-Id: <200102081612.f18GC4e76087@freefall.freebsd.org> To: olgeni@FreeBSD.org, freebsd-ports@FreeBSD.org, olgeni@FreeBSD.org Subject: Re: ports/19854: [PATCH] inclusion of full mozart-oz documentation Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [PATCH] inclusion of full mozart-oz documentation Responsible-Changed-From-To: freebsd-ports->olgeni Responsible-Changed-By: olgeni Responsible-Changed-When: Thu Feb 8 08:11:10 PST 2001 Responsible-Changed-Why: I handled this. http://www.freebsd.org/cgi/query-pr.cgi?pr=19854 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 8:14:43 2001 Delivered-To: freebsd-ports@freebsd.org Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (Postfix) with ESMTP id DC54837B503; Thu, 8 Feb 2001 08:14:23 -0800 (PST) Received: from v-ger.we.lc.ehu.es (v-ger [158.227.6.179]) by polaris.we.lc.ehu.es (8.11.1/8.11.1) with ESMTP id f18GELb20660; Thu, 8 Feb 2001 17:14:21 +0100 (MET) Received: from we.lc.ehu.es (localhost [127.0.0.1]) by v-ger.we.lc.ehu.es (8.11.1/8.11.1) with ESMTP id f18GE8d25571; Thu, 8 Feb 2001 17:14:08 +0100 (CET) (envelope-from jose@we.lc.ehu.es) Message-ID: <3A82C5D0.C8228E5F@we.lc.ehu.es> Date: Thu, 08 Feb 2001 17:14:08 +0100 From: "Jose M. Alcaide" Organization: Universidad del Pais Vasco - Dpto. de Electricidad y Electronica X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: es-ES, es, en-US, en MIME-Version: 1.0 To: Matthew Thyer Cc: will@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: kappfinder segmentation fault during ports/x11/kdebase2 install on recent -CURRENT References: <3A80143D.908D5886@camtech.net.au> <3A804159.F459DD29@we.lc.ehu.es> <3A80B117.557C82BF@camtech.net.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Matthew Thyer wrote: > > "Jose M. Alcaide" wrote: > > > > Matthew Thyer wrote: > [snip] > > > (cd . && $pwd/kappfinder_install "/usr/local/share/applnk") > > > Segmentation fault - core dumped > > > gmake[3]: *** [runkappfinder_yes] Error 139 > > > > I have just got the same error after building _everything_ under /usr/X11R6 > > and /usr/local from scratch. If this problem is related to -pthread/libc_r > > changes in -CURRENT, it doesn't go away after a full rebuild. Another > > test could be downgrading to qt-2.2.3. > > We have done the same things. I have not only removed all of my ports > but I have also cleaned up all the crap left in /usr/X11R6 and /usr/local > before rebuilding everything. > After replacing qt-2.2.4 by qt-2.2.3 (built from the qt2 port as of February, 3 - just before it was updated to 2.2.4), I rebuilt kdebase2 and now the install process finished with no problems. I just filed a PR about this issue: http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24952 BTW, the KDE logout problem continues alive :-( Cheers, -- JMA ****** Jose M. Alcaide // jose@we.lc.ehu.es // jmas@FreeBSD.org ****** ** "Beware of Programmers who carry screwdrivers" -- Leonard Brandwein ** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 8:21:17 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F050C37B401; Thu, 8 Feb 2001 08:21:00 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18GL0177000; Thu, 8 Feb 2001 08:21:00 -0800 (PST) (envelope-from okazaki) Date: Thu, 8 Feb 2001 08:21:00 -0800 (PST) From: Message-Id: <200102081621.f18GL0177000@freefall.freebsd.org> To: tkato@prontomail.ne.jp, okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23830: Update port: graphics/sane to 1.0.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/sane to 1.0.4 State-Changed-From-To: open->closed State-Changed-By: okazaki State-Changed-When: Thu Feb 8 08:16:16 PST 2001 State-Changed-Why: Superseded by ports/24931 http://www.freebsd.org/cgi/query-pr.cgi?pr=23830 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 8:25:26 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C085937B491; Thu, 8 Feb 2001 08:25:08 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18GP8q77580; Thu, 8 Feb 2001 08:25:08 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 08:25:08 -0800 (PST) From: Message-Id: <200102081625.f18GP8q77580@freefall.freebsd.org> To: goranrunfeldt@home.se, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24905: Update port: games/xtux 2001.01.07 -> 2001.02.04 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: games/xtux 2001.01.07 -> 2001.02.04 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 08:24:56 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24905 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 8:31:47 2001 Delivered-To: freebsd-ports@freebsd.org Received: from homer.softweyr.com (bsdconspiracy.net [208.187.122.220]) by hub.freebsd.org (Postfix) with ESMTP id 3D26D37B503; Thu, 8 Feb 2001 08:31:18 -0800 (PST) Received: from [127.0.0.1] (helo=softweyr.com ident=Fools trust ident!) by homer.softweyr.com with esmtp (Exim 3.16 #1) id 14QYTR-0000NM-00; Wed, 07 Feb 2001 10:33:45 -0700 Message-ID: <3A8186F9.CF98EB75@softweyr.com> Date: Wed, 07 Feb 2001 10:33:45 -0700 From: Wes Peters Organization: Softweyr LLC X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Maxim Sobolev Cc: ports@FreeBSD.org Subject: Re: Package integrity check? References: <20010205210459.A2479@acc.umu.se> <3A7F9AB6.5CAA983B@softweyr.com> <200102061526.KAA31832@khavrinen.lcs.mit.edu> <3A802FAF.792F61F5@softweyr.com> <3A8030F0.EA4D3A99@FreeBSD.org> <3A8108A2.DB335434@softweyr.com> <3A811E72.125885CD@FreeBSD.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Maxim Sobolev wrote: > > Wes Peters wrote: > > > Maxim Sobolev wrote: > > > > > > Wes Peters wrote: > > > > > > Are you going to reply to my question why general utility for signing > > > gzip-compressed files has been added into pkg_install module? IMHO it's better to > > > add it in its own directory under usr.bin, because it's not pkg_install specific at > > > all. > > > > If you'd just read the code you'd find that your assertion isn't true. I'm > > really astonished at the amount of rhetoric being flung about by this commit > > from people who obviously haven't bothered to look at the code. Please feel > > free to return with sensible comments when you have actually read the code. > > It's wrong assertion. I did read the code but was unable to find any traces indicating > that pkg_sign is using any pkg_install infrastructure. Moreover, even pkg_sign manpage > indicates that it's just a general utility to sign gzip-compressed archives, so my > question is a pretty valid. You are partially answered it in your another e-mail on the > topic (it's where it located in OpenBSD), but this is not a very strong point, as poor > architectural choices of one project should not be automatically inherited by another > just because 'it's how they did it'. Go back and read the SHA1 code. As indicated in another mail, Jeremy Lea has suggested some ways to improve this, within the framework of the improved version of the packaging tools he is working on. The signatures are stuck in the gzip header right now because it is simple to extract the the signature and because currently all packages are gzipped. Stuffing the signature inside the the compressed/signed data leads to nasty chicken-and-egg problems where you have to uncompress the data to retrieve the signature, and where the signature itself modifies the data you are trying to sign. Whatever format is chosen for packaging tools would be wise to include some facility for attaching a signature that is external to the compressed contents of the package itself. The ability to attach and verify multiple signatures might be of some value too; the current tools allow that but don't really verify them well. -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 8:34:34 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 7830B37B503; Thu, 8 Feb 2001 08:34:13 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18GYCr78754; Thu, 8 Feb 2001 08:34:12 -0800 (PST) (envelope-from ijliao) Date: Thu, 8 Feb 2001 08:34:12 -0800 (PST) From: Message-Id: <200102081634.f18GYCr78754@freefall.freebsd.org> To: ijliao@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24946: Update to math/R port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to math/R port Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: ijliao Responsible-Changed-When: Thu Feb 8 08:33:24 PST 2001 Responsible-Changed-Why: change category http://www.freebsd.org/cgi/query-pr.cgi?pr=24946 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 8:35: 8 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6528A37B491; Thu, 8 Feb 2001 08:34:51 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18GYpG78910; Thu, 8 Feb 2001 08:34:51 -0800 (PST) (envelope-from okazaki) Date: Thu, 8 Feb 2001 08:34:51 -0800 (PST) From: Message-Id: <200102081634.f18GYpG78910@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, mi@FreeBSD.org Subject: Re: ports/23917: replacing sane with sane-backends and sane-frontends Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: replacing sane with sane-backends and sane-frontends Responsible-Changed-From-To: freebsd-ports->mi Responsible-Changed-By: okazaki Responsible-Changed-When: Thu Feb 8 08:27:11 PST 2001 Responsible-Changed-Why: Submitter is a committer now :-) http://www.freebsd.org/cgi/query-pr.cgi?pr=23917 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 8:38:46 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D12B437B503; Thu, 8 Feb 2001 08:38:28 -0800 (PST) Received: (from okazaki@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18GcSM79538; Thu, 8 Feb 2001 08:38:28 -0800 (PST) (envelope-from okazaki) Date: Thu, 8 Feb 2001 08:38:28 -0800 (PST) From: Message-Id: <200102081638.f18GcSM79538@freefall.freebsd.org> To: okazaki@FreeBSD.org, freebsd-ports@FreeBSD.org, mi@FreeBSD.org Subject: Re: ports/24931: Update port: graphics/sane to 1.0.4 (fix ports/23830) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: graphics/sane to 1.0.4 (fix ports/23830) Responsible-Changed-From-To: freebsd-ports->mi Responsible-Changed-By: okazaki Responsible-Changed-When: Thu Feb 8 08:36:16 PST 2001 Responsible-Changed-Why: Update of ports/23917 http://www.freebsd.org/cgi/query-pr.cgi?pr=24931 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 8:53:14 2001 Delivered-To: freebsd-ports@freebsd.org Received: from server.agraf.sk (unknown [62.168.105.150]) by hub.freebsd.org (Postfix) with SMTP id 04C9137B491 for ; Thu, 8 Feb 2001 08:52:56 -0800 (PST) Received: (qmail 18592 invoked from network); 8 Feb 2001 16:53:44 -0000 Received: from unknown (HELO agraf.sk) (192.168.1.47) by 62.168.105.150 with SMTP; 8 Feb 2001 16:53:44 -0000 Message-ID: <3A82CF98.8340B658@agraf.sk> Date: Thu, 08 Feb 2001 17:55:52 +0100 From: Radovan Gibala X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.16 i586) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Subject: Qmail + MySQL Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi ! Will anybody, please, answer me, if there is a chance to get ported Qmail with MySQL support ? Thanks. Radovan Gibala To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 9: 2: 7 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 543ED37B401; Thu, 8 Feb 2001 09:01:51 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18H1p483741; Thu, 8 Feb 2001 09:01:51 -0800 (PST) (envelope-from ijliao) Date: Thu, 8 Feb 2001 09:01:51 -0800 (PST) From: Message-Id: <200102081701.f18H1p483741@freefall.freebsd.org> To: maurice@planetoid.serc.rmit.edu.au, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24946: Update to math/R port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to math/R port State-Changed-From-To: open->feedback State-Changed-By: ijliao State-Changed-When: Thu Feb 8 08:58:19 PST 2001 State-Changed-Why: maybe maintainer have to update his ports tree first it's 1.1.0 in ports tree now http://www.freebsd.org/cgi/query-pr.cgi?pr=24946 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 9: 7:24 2001 Delivered-To: freebsd-ports@freebsd.org Received: from sj-msg-core-4.cisco.com (sj-msg-core-4.cisco.com [171.71.163.10]) by hub.freebsd.org (Postfix) with ESMTP id 59FC437B401; Thu, 8 Feb 2001 09:06:56 -0800 (PST) Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by sj-msg-core-4.cisco.com (8.9.3/8.9.1) with ESMTP id JAA11232; Thu, 8 Feb 2001 09:06:58 -0800 (PST) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.1/8.11.1) id f18H6tj43176; Thu, 8 Feb 2001 09:06:55 -0800 (PST) (envelope-from bmah) Message-Id: <200102081706.f18H6tj43176@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.3.1 01/19/2001 with nmh-1.0.4 To: Mike Harding Cc: bmah@FreeBSD.ORG, kaltorak@quake.com.au, freebsd-ports@FreeBSD.ORG Subject: Re: Ports updating... Good ways? In-Reply-To: <20010208152133.03F37E6A17@netcom1.netcom.com> References: <3A8208E7.C6EE4C24@quake.com.au> <20010208061814.5E6C5E6A17@netcom1.netcom.com> <200102080635.f186ZPe39170@bmah-freebsd-0.cisco.com> <20010208152133.03F37E6A17@netcom1.netcom.com> Comments: In-reply-to Mike Harding message dated "Thu, 08 Feb 2001 07:21:33 -0800." From: bmah@FreeBSD.ORG (Bruce A. Mah) Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_353712189P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Thu, 08 Feb 2001 09:06:55 -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_353712189P Content-Type: text/plain; charset=us-ascii [moved to -ports] If memory serves me right, Mike Harding wrote: > > Well, just to defend myself... > > I find that pkg_version -c is a useful tool for helping me do > upgrades. I do put the result in a file and do the appropriate thing. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ That was my point. You do *not* want to blindly execute the output of "pkg_version -c". I'm about --><-- this far away from crippling the output of "pkg_version -c" so that it can't be run without editing. People don't realize how dangerous this is; like it can actually render a system unusable. (I know, it happened to a good friend of mine.) > I do agree that something better is needed - one issue is the way that > the ports system tracks dependencies. If the dependency was tracked > in the dependent port rather than the other way around (in other > words, the ports notes that it needs the library rather than the > library noting that it is needed by another port) then the whole > upgrade issue would be simpler as you could actually make multiple > scans over the dependencies until everything was in order. Right now > the dependency information is 'lost' if you ugrade a library. Yeah. I posted a brain-dump of what I think is needed to -ports sometime earlier this week or last week. It's actually not that hard now that we have the "port origin" information for installed ports. The hard part is dealing with all the edge cases. I think that it would be a great project for someone to hack on bsd.port.mk to create a "make upgrade" target. But it has to be extremely conservative in the face of pathologies. > Also, > say, upgrading X with the current system will cause huge amounts of > things to be rebuilt - these ports depend on X but not the version. I think that XFree86 is handled as a special case, but your point is well-taken. Bruce. --==_Exmh_353712189P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE6gtIu2MoxcVugUsMRAklpAKDh0/N0Visap7CxG65cx2jUjZL28gCePz+C XIRM5pGDozMSheH6H8Cn63o= =3hJC -----END PGP SIGNATURE----- --==_Exmh_353712189P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 9: 8:25 2001 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 07E4E37B401; Thu, 8 Feb 2001 09:08:08 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.2/8.11.1) with ESMTP id f18H7wV16941; Thu, 8 Feb 2001 09:07:58 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Maxim Sobolev Cc: Peter Pentchev , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] In-Reply-To: Message from Maxim Sobolev of "Thu, 08 Feb 2001 12:27:04 +0200." <3A827478.26A49757@FreeBSD.org> Date: Thu, 08 Feb 2001 09:07:58 -0800 Message-ID: <16937.981652078@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > OOPS, how I missed it??? :-/ > > Merged, thank you for your comment. OK, are we ready to commit something then? If so, I'll be happy to do it if someone sends me a final, definitive patch set. Thanks! - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 9:22: 3 2001 Delivered-To: freebsd-ports@freebsd.org Received: from sj-msg-core-2.cisco.com (sj-msg-core-2.cisco.com [171.69.43.88]) by hub.freebsd.org (Postfix) with ESMTP id 80E5037B491; Thu, 8 Feb 2001 09:21:44 -0800 (PST) Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by sj-msg-core-2.cisco.com (8.9.3/8.9.1) with ESMTP id JAA16600; Thu, 8 Feb 2001 09:21:57 -0800 (PST) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.1/8.11.1) id f18HLiN44975; Thu, 8 Feb 2001 09:21:44 -0800 (PST) (envelope-from bmah) Message-Id: <200102081721.f18HLiN44975@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.3.1 01/19/2001 with nmh-1.0.4 To: W Gerald Hicks Cc: bmah@FreeBSD.ORG, ports@FreeBSD.ORG, Kal Torak Subject: Re: Ports updating... Good ways? In-Reply-To: <3A82547E.18AD4D26@cisco.com> References: <3A8208E7.C6EE4C24@quake.com.au> <20010208061814.5E6C5E6A17@netcom1.netcom.com> <200102080638.f186c9s39260@bmah-freebsd-0.cisco.com> <3A82547E.18AD4D26@cisco.com> Comments: In-reply-to W Gerald Hicks message dated "Thu, 08 Feb 2001 00:10:38 -0800." From: bmah@FreeBSD.ORG (Bruce A. Mah) Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_417760173P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Thu, 08 Feb 2001 09:21:44 -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_417760173P Content-Type: text/plain; charset=us-ascii If memory serves me right, W Gerald Hicks wrote: > (Hi Bruce :-) Hi Jerry! :-) > In thinking about this further, it seems to me there is also some > missing metadata that one would need to automate port upgrades reliably. > > There doesn't seem to be anything that relates previous versions of a > port to an updated one. At least not in a rigorous manner that could be > trusted by naive scripts... Recently-installed ports (recently-built packages maybe) contain meta-data that says where their port skeleton directory lives within the ports tree. pkg_info and pkg_version both use this data. For example: bmah-freebsd-0:bmah% grep ORIGIN /var/db/pkg/gnupg-1.0.4_3/+CONTENTS @comment ORIGIN:security/gnupg bmah-freebsd-0:bmah% pkg_info -q -o gnupg-1.0.4_3 security/gnupg bmah-freebsd-0:bmah% pkg_version -v | grep gnupg gnupg-1.0.4_3 = up-to-date with port I am not sure if any of the (three?) proposed ports/package upgrading tools use this field or not. Bruce. --==_Exmh_417760173P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE6gtWn2MoxcVugUsMRAuKbAJ0fui1kqfUVhzl1tep4e0egovnORwCfc+/H l+qftPWq10uyncW4JHJZwKk= =GnzA -----END PGP SIGNATURE----- --==_Exmh_417760173P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 9:29:12 2001 Delivered-To: freebsd-ports@freebsd.org Received: from jason03.u.washington.edu (jason03.u.washington.edu [140.142.8.11]) by hub.freebsd.org (Postfix) with ESMTP id 5D0F837B401; Thu, 8 Feb 2001 09:28:52 -0800 (PST) Received: from mead4.u.washington.edu (kraemer@mead4.u.washington.edu [140.142.12.172]) by jason03.u.washington.edu (8.9.3+UW00.05/8.9.3+UW00.12) with ESMTP id JAA35818; Thu, 8 Feb 2001 09:28:48 -0800 Received: from localhost (kraemer@localhost) by mead4.u.washington.edu (8.9.3+UW00.05/8.9.3+UW00.12) with ESMTP id JAA46604; Thu, 8 Feb 2001 09:28:47 -0800 Date: Thu, 8 Feb 2001 09:28:47 -0800 (PST) From: Brian Kraemer To: freebsd-stable@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: Ports updating... Good ways? In-Reply-To: <200102081706.f18H6tj43176@bmah-freebsd-0.cisco.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 What about extending "make" so that it is possible to do the following: $ cd /usr/ports/foo/bar $ make update "make" would then automatically deal with updating dependencies for that specific port, remove the old version and build the new one. I know this thread is mostly about updating all your ports at once, but this seems to be a good start. Using "make" in such a way ties in nicely with the current use of the ports system in my opinion. -Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 9:32:31 2001 Delivered-To: freebsd-ports@freebsd.org Received: from homer.softweyr.com (bsdconspiracy.net [208.187.122.220]) by hub.freebsd.org (Postfix) with ESMTP id 1599937B503; Thu, 8 Feb 2001 09:32:05 -0800 (PST) Received: from [127.0.0.1] (helo=softweyr.com ident=Fools trust ident!) by homer.softweyr.com with esmtp (Exim 3.16 #1) id 14Qv3m-0000Kc-00; Thu, 08 Feb 2001 10:40:47 -0700 Message-ID: <3A82DA1E.BC4A9CDD@softweyr.com> Date: Thu, 08 Feb 2001 10:40:46 -0700 From: Wes Peters Organization: Softweyr LLC X-Mailer: Mozilla 4.75 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Markus Holmberg Cc: Garrett Wollman , freebsd-security@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: Package integrity check? References: <20010205210459.A2479@acc.umu.se> <3A7F9AB6.5CAA983B@softweyr.com> <200102061526.KAA31832@khavrinen.lcs.mit.edu> <3A802FAF.792F61F5@softweyr.com> <200102061802.NAA33086@khavrinen.lcs.mit.edu> <20010208132123.A4400@acc.umu.se> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Markus Holmberg wrote: > > Thanks Wes. > > I'm running -STABLE (and I was mostly just curious, not in a hurting need > for this functionality right away) so I'm not sure I'm trying it out. But > it's good to know it's available. As soon as we get a couple of other issues (mostly Makefile) worked out, I'll MFC the package-signing stuff. It runs fine on my laptop, which is: FreeBSD homer 4.2-STABLE FreeBSD 4.2-STABLE #0: Mon Jan 29 10:13:07 MST 2001 > On Tue, Feb 06, 2001 at 01:02:08PM -0500, Garrett Wollman wrote: > > 1) Whatever process generates and checksums the packages also makes > > and signs a master list of all the checksums from each package, and > > > > 2) Whatever process installs software from the package compares its > > checksum against this master list, and verifies the signature of the > > master list. > > It was these two things that I was thinking of in first place.. (When > asking if it was possible to check for package integrity). But I realize > it is not conceivable without a good deal of effort, so I was merely > wondering if anyone else thought of it. That's the nice thing about X.509 certs, you only have to distribute the cert from whoever is providing the package. The package contains the checksum, verifying the contents, and the signing process assures you that the checksum contained in the cert hasn't been tampered with. Now all you need is a secure way to get the certificate from the originator. > > I think that this would be both useful and worthwhile, but again, we > > need to make sure that legally we are not promising anything other > > than ``these packages have not been modified since generation''. ^^^^^^^^^^ signing -- "Where am I, and what am I doing in this handbasket?" Wes Peters Softweyr LLC wes@softweyr.com http://softweyr.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 9:36:14 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 83CAF37B65D; Thu, 8 Feb 2001 09:35:57 -0800 (PST) Received: (from sf@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18HZs591103; Thu, 8 Feb 2001 09:35:54 -0800 (PST) (envelope-from sf) Date: Thu, 8 Feb 2001 09:35:54 -0800 (PST) From: Message-Id: <200102081735.f18HZs591103@freefall.freebsd.org> To: clefevre@citeweb.net, sf@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24502: Update port: sysutils/gtar - 1.13.19 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: sysutils/gtar - 1.13.19 State-Changed-From-To: analyzed->closed State-Changed-By: sf State-Changed-When: Thu Feb 8 09:33:38 PST 2001 State-Changed-Why: This port moved to archivers. All procedure has done. Thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=24502 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 9:40:48 2001 Delivered-To: freebsd-ports@freebsd.org Received: from 200-227-201-239-as.acessonet.com.br (200-227-201-239-as.acessonet.com.br [200.227.201.239]) by hub.freebsd.org (Postfix) with ESMTP id 9BF1237B491 for ; Thu, 8 Feb 2001 09:40:31 -0800 (PST) Received: (qmail 1371 invoked by uid 1001); 8 Feb 2001 17:25:01 -0000 From: "Mario Sergio Fujikawa Ferreira" Date: Thu, 8 Feb 2001 15:24:39 -0200 To: Radovan Gibala Cc: ports@FreeBSD.ORG Subject: Re: Qmail + MySQL Message-ID: <20010208152439.A1164@Fedaykin.here> References: <3A82CF98.8340B658@agraf.sk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A82CF98.8340B658@agraf.sk>; from gigi@agraf.sk on Thu, Feb 08, 2001 at 05:55:30PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I am the current maintainter of all qmail(-.+)* ports. I was unavailable for some time but I am looking into your issue. Regards, -- Mario S F Ferreira - UnB - Brazil - "I guess this is a signature." lioux at ( freebsd dot org | linf dot unb dot br ) flames to beloved devnull@someotherworldbeloworabove.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 9:46:57 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (pop3.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 13AFE37B65D; Thu, 8 Feb 2001 09:46:25 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f18Hj0602604; Thu, 8 Feb 2001 19:45:07 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f18Hium11583; Thu, 8 Feb 2001 19:44:56 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A82DB11.7A52238C@FreeBSD.org> Date: Thu, 08 Feb 2001 19:44:49 +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: Jordan Hubbard Cc: Peter Pentchev , ports@FreeBSD.org, jkh@FreeBSD.org, Edwin Groothuis Subject: Re: Request for comments [Fwd: bin/24695: [patch] pkg_info: prefix search for a package] References: <16937.981652078@winston.osd.bsdi.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jordan Hubbard wrote: > > OOPS, how I missed it??? :-/ > > > > Merged, thank you for your comment. > > OK, are we ready to commit something then? If so, I'll be happy > to do it if someone sends me a final, definitive patch set. Thanks! Done, boss! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 9:50:15 2001 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 4C70A37B491 for ; Thu, 8 Feb 2001 09:49:54 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.2/8.11.1) with ESMTP id f18HneV17291; Thu, 8 Feb 2001 09:49:40 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Brian Kraemer Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Ports updating... Good ways? In-Reply-To: Message from Brian Kraemer of "Thu, 08 Feb 2001 09:28:47 PST." Date: Thu, 08 Feb 2001 09:49:40 -0800 Message-ID: <17287.981654580@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org [cc line trimmed to just include -ports; this is clearly applicable to ONLY that mailing list] > What about extending "make" so that it is possible to do the following: > > $ cd /usr/ports/foo/bar > $ make update > > "make" would then automatically deal with updating dependencies for that > specific port, remove the old version and build the new one. Well, this is a cool concept on the face of it but it needs more infrastructure work to actually function. Let's say I install the "gtkwooba" port which depends on gtk, libtools, glib and libwooba. Then I come back over a year later and do a "make update" in gtkwooba. It's pretty much a surety that just about everything it depends on has been updated, so I have to upgrade gtk, libtools, glib and libwooba too. Because of the other things which depend on them and the manner in which they're constructed, however, these four items fall into different categories: gtk: older version cannot be removed, new version must go alongside libtools, glib: older versions can be replaced by new version with full backwards compatibility libwooba: no other dependencies, can be replaced by new version with no other concerns Now there may also be a safe way to achieve the upgrades in all cases, depending on the skill and dedication of the people maintaining the ports, but the ports collection doesn't currently have enough descriptive metadata to be *sure* of that or to know when it can safely pkg_delete an older version. That's why more sophisticated package management systems than our own have keywords like "replaces", "augments" and "occludes" in their metadata, each followed by a list of previous versions for which that keyword applies. If it replaces a version, it's backwards compatible with that version. If it augments a version, it's strictly an upgrade kit (e.g. just the deltas) and if it occludes a version, it means you have to have both installed if there are remaining dependencies on the old version. Reference counts also help for knowing when the last dependency on something drops away and you can remove it too. :) Anyway, "make update" is basically a feature which is awaiting a Ports Hero to come along and add the necessary intelligence to actually automate it properly. :) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 10: 9: 4 2001 Delivered-To: freebsd-ports@freebsd.org Received: from jason02.u.washington.edu (jason02.u.washington.edu [140.142.8.52]) by hub.freebsd.org (Postfix) with ESMTP id D01A737B6A1 for ; Thu, 8 Feb 2001 10:08:46 -0800 (PST) Received: from mead4.u.washington.edu (kraemer@mead4.u.washington.edu [140.142.12.172]) by jason02.u.washington.edu (8.9.3+UW00.05/8.9.3+UW00.12) with ESMTP id KAA47214; Thu, 8 Feb 2001 10:08:46 -0800 Received: from localhost (kraemer@localhost) by mead4.u.washington.edu (8.9.3+UW00.05/8.9.3+UW00.12) with ESMTP id KAA100742; Thu, 8 Feb 2001 10:08:45 -0800 Date: Thu, 8 Feb 2001 10:08:45 -0800 (PST) From: Brian Kraemer To: Jordan Hubbard Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Ports updating... Good ways? In-Reply-To: <17287.981654580@winston.osd.bsdi.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 Thu, 8 Feb 2001, Jordan Hubbard wrote: > That's why more sophisticated package management systems than our own > have keywords like "replaces", "augments" and "occludes" in their > metadata, each followed by a list of previous versions for which that > keyword applies. If it replaces a version, it's backwards compatible > with that version. If it augments a version, it's strictly an upgrade > kit (e.g. just the deltas) and if it occludes a version, it means you > have to have both installed if there are remaining dependencies on the > old version. Reference counts also help for knowing when the last > dependency on something drops away and you can remove it too. :) > > Anyway, "make update" is basically a feature which is awaiting a Ports > Hero to come along and add the necessary intelligence to actually > automate it properly. :) If we're willing to sacrifice a little bit of automation, "make update" could ask the user what to do with each dependency. i.e. gtkwooba depends on port gtk. [R]eplace/[A]ugment/[O]cclude? gtkwooba depends on port libwooba. [R]eplace/[A]ugment/[O]cclude? ... Of course all this would be fully documented :) The major downside of this is that it depends (no pun intended) on the user knowing how each dependency should be handled, which they may or may not know. However I would think it would make implementing "make update" much easier. Even with this user-interaction, I still think it would be a big win over updating each port and dependency by hand. -Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 10:14:12 2001 Delivered-To: freebsd-ports@freebsd.org Received: from s3.quintessential.com (s3.quintessential.com [209.98.180.234]) by hub.freebsd.org (Postfix) with SMTP id 605E637B6A1 for ; Thu, 8 Feb 2001 10:13:54 -0800 (PST) Received: (qmail 55049 invoked from network); 8 Feb 2001 18:37:43 -0000 Received: from unknown (HELO xyz.soundconcept.net) (63.225.150.153) by s3.quintessential.com with SMTP; 8 Feb 2001 18:37:43 -0000 Message-Id: <4.3.2.7.0.20010208121330.03053100@pop3.norton.antivirus> X-Sender: wood%soundconcept.net/soundconcept.net@pop3.norton.antivirus X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Thu, 08 Feb 2001 12:14:05 -0600 To: From: "Brian D. Woodruff" Subject: FreeBSD Port: ImageMagick-5.2.7_2 Cc: 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 We are trying to install ImageMagick on a new FreeBSD-4.2 STABLE machine and can't get it to compile. All of the depends are there, and we have no problems, but on "make" we get this error: > checking for strip... strip > updating cache ./config.cache > ltconfig: unrecognized option `--build=i386--freebsd4.2' > Try `ltconfig --help' for more information. > configure: error: libtool configure failed > ===> 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:657: checking host system type > Any advice or assistance would be appreciated. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 10:18:46 2001 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id BDA0E37B6A1 for ; Thu, 8 Feb 2001 10:18:25 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.2/8.11.1) with ESMTP id f18IIDV17495; Thu, 8 Feb 2001 10:18:13 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Brian Kraemer Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Ports updating... Good ways? In-Reply-To: Message from Brian Kraemer of "Thu, 08 Feb 2001 10:08:45 PST." Date: Thu, 08 Feb 2001 10:18:13 -0800 Message-ID: <17491.981656293@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The major downside of this is that it depends (no pun intended) on the > user knowing how each dependency should be handled, which they may or may > not know. However I would think it would make implementing "make update" > much easier. Even with this user-interaction, I still think it would be a > big win over updating each port and dependency by hand. Well, I actually happen to think that this level of automation will be just enough to land the user in the mud, stranded between two banks. By this, I'm saying that it's reasonable to assume that the lion's share of users won't have the faintest idea whether a given port can be safely Replaced, Augmented or Occluded and those who really *do* know are also skilled enough to just do it by hand, something many of those same individuals have already implemented their own automation for. If it's an interface as "public" as update, however, then all you're really guaranteeing is that a bunch of naive users will think it's the "real" update feature and start leaning too hard on it, to everyone's general sorrow and despair as the breakage reports start coming in. :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 10:18:51 2001 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 3D95D37B401; Thu, 8 Feb 2001 10:18:04 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f18IHQ603234; Thu, 8 Feb 2001 20:17:26 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f18IHUm11754; Thu, 8 Feb 2001 20:17:30 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A82E2B2.CE8D214B@FreeBSD.org> Date: Thu, 08 Feb 2001 20:17:23 +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: "Brian D. Woodruff" Cc: jseger@FreeBSD.org, ports@FreeBSD.org Subject: Re: FreeBSD Port: ImageMagick-5.2.7_2 References: <4.3.2.7.0.20010208121330.03053100@pop3.norton.antivirus> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Brian D. Woodruff" wrote: > > ltconfig: unrecognized option `--build=i386--freebsd4.2' > > Any advice or assistance would be appreciated. Please update your libtool port to the latest version - libtool-1.3.4_2. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 10:20:56 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 229FB37B401; Thu, 8 Feb 2001 10:20:40 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18IKZ697692; Thu, 8 Feb 2001 10:20:35 -0800 (PST) (envelope-from ijliao) Date: Thu, 8 Feb 2001 10:20:35 -0800 (PST) From: Message-Id: <200102081820.f18IKZ697692@freefall.freebsd.org> To: leeym@bsd.ce.ntu.edu.tw, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/23807: update ports: fix some checksum problem Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports: fix some checksum problem State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Feb 8 10:19:31 PST 2001 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=23807 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 10:30:30 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DF8F237B6AF; Thu, 8 Feb 2001 10:30:13 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18IUDe98505; Thu, 8 Feb 2001 10:30:13 -0800 (PST) (envelope-from ijliao) Date: Thu, 8 Feb 2001 10:30:13 -0800 (PST) From: Message-Id: <200102081830.f18IUDe98505@freefall.freebsd.org> To: amakawa@sf.t.u-tokyo.ac.jp, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24938: update math/netcdf Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update math/netcdf State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Feb 8 10:29:45 PST 2001 State-Changed-Why: committed, thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=24938 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 10:59:38 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A38C937B700; Thu, 8 Feb 2001 10:59:18 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18IxIo02063; Thu, 8 Feb 2001 10:59:18 -0800 (PST) (envelope-from ijliao) Date: Thu, 8 Feb 2001 10:59:18 -0800 (PST) From: Message-Id: <200102081859.f18IxIo02063@freefall.freebsd.org> To: naddy@mips.inka.de, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24936: Maintainer update: mail/bsmtp 1.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Maintainer update: mail/bsmtp 1.02 State-Changed-From-To: open->closed State-Changed-By: ijliao State-Changed-When: Thu Feb 8 10:58:58 PST 2001 State-Changed-Why: committed (with minor change), thanks http://www.freebsd.org/cgi/query-pr.cgi?pr=24936 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 11: 7:28 2001 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by hub.freebsd.org (Postfix) with ESMTP id 3A65F37B684 for ; Thu, 8 Feb 2001 11:07:12 -0800 (PST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id 14FB32E443 for ; Thu, 8 Feb 2001 14:07:11 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id f18J7AK49357; Thu, 8 Feb 2001 14:07:10 -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: <14978.61022.830169.622956@onceler.kciLink.com> Date: Thu, 8 Feb 2001 14:07:10 -0500 To: ports@FreeBSD.org Subject: Re: Needed: apache/httpd ports to use 'www' user In-Reply-To: <20010208144125.I56586@fling.sanbi.ac.za> References: <20010207014012.B22502@mollari.cthul.hu> <20010207115736.A37769@rapier.smartspace.co.za> <20010208144125.I56586@fling.sanbi.ac.za> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "JV" == Johann Visagie writes: JV> Neil Blakey-Milner on 2001-02-07 (Wed) at 11:57:37 +0200: Does JV> this apply to other alternative MTAs as well? If so, should there JV> be one "mail" user for all of them, or should they each create JV> their own sanbox user? The postfix port uses a postfix user and maildrop group. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 11:19:41 2001 Delivered-To: freebsd-ports@freebsd.org Received: from yertle.kciLink.com (yertle.kciLink.com [208.184.13.195]) by hub.freebsd.org (Postfix) with ESMTP id A41C737B503 for ; Thu, 8 Feb 2001 11:19:24 -0800 (PST) Received: from onceler.kciLink.com (onceler.kciLink.com [208.184.13.196]) by yertle.kciLink.com (Postfix) with ESMTP id C9BD82E440 for ; Thu, 8 Feb 2001 14:19:23 -0500 (EST) Received: (from khera@localhost) by onceler.kciLink.com (8.11.1/8.11.1) id f18JJN072359; Thu, 8 Feb 2001 14:19:23 -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: <14978.61755.591132.77697@onceler.kciLink.com> Date: Thu, 8 Feb 2001 14:19:23 -0500 To: freebsd-ports@FreeBSD.ORG Subject: Re: Ports updating... Good ways? In-Reply-To: References: <200102081706.f18H6tj43176@bmah-freebsd-0.cisco.com> X-Mailer: VM 6.90 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >>>>> "BK" == Brian Kraemer writes: BK> What about extending "make" so that it is possible to do the following: BK> $ cd /usr/ports/foo/bar BK> $ make update BK> "make" would then automatically deal with updating dependencies for that BK> specific port, remove the old version and build the new one. What do you suggest it do when port "foo" depends on "bar" and port "baz" also depends on "bar". When you "make update" inside "foo", it would attempt to remove/update "bar", but it can't because "baz" is depending on it to be there. You sort of have to update globally, unless you can guarantee that a swapout of a base package won't break all things that depend on it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 11:30:28 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 3D7BA37B67D; Thu, 8 Feb 2001 11:30:00 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f18JTk604341; Thu, 8 Feb 2001 21:29:52 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f18JTom12407; Thu, 8 Feb 2001 21:29:50 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A82F3A7.9F7BB427@FreeBSD.org> Date: Thu, 08 Feb 2001 21:29:43 +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: Request for comment: bsd.port.mk and recent pthreads changes Content-Type: multipart/mixed; boundary="------------8A6F32E137C9AD9126F0700B" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------8A6F32E137C9AD9126F0700B Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Hi, As you may know recent changes in the pthreads (depreciation of -pthread flag) made necessary to ajust many ports from our ports collection. This change would be conditional, as older versions of the FreeBSD still need this flag. Therefore it would be nice to have some support for that from the bsd.port.mk, because it's not very handy to put the same conditional in every single port that use pthreads. With this message I'm attaching patch that represents my vision of such support. I would like to hear comments on it and theoretically get it (or something like it) committed in the nearest future. Thanks! -Maxim --------------8A6F32E137C9AD9126F0700B Content-Type: text/plain; charset=koi8-r; name="bsd.port.mk-pthread.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="bsd.port.mk-pthread.diff" --- bsd.port.mk 2001/02/08 19:09:54 1.2 +++ bsd.port.mk 2001/02/08 19:15:50 @@ -948,6 +948,14 @@ MAKEFILE?= Makefile MAKE_ENV+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} X11BASE=${X11BASE} MOTIFLIB="${MOTIFLIB}" LIBDIR="${LIBDIR}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" +.if ${OSVERSION} < 500000 +PTHREAD_CFLAGS= -D_THREAD_SAFE +PTHREAD_LIBS= "-pthread" +.else +PTHREAD_CFLAGS= "" +PTHREAD_LIBS= "-lc_r" +.endif + .if exists(/usr/bin/fetch) # avoid -A for 2.2 -- it's not ported to that branch .if ${OSVERSION} < 300000 --------------8A6F32E137C9AD9126F0700B-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 11:36:41 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.clickarray.com (unknown [216.132.92.2]) by hub.freebsd.org (Postfix) with ESMTP id 2ABF037B69F for ; Thu, 8 Feb 2001 11:36:22 -0800 (PST) Received: from vader.clickarray.com (nattedaddress.clickarray.com [10.2.1.199]) by mail.clickarray.com (Postfix) with ESMTP id B98B15EF03; Thu, 8 Feb 2001 11:39:32 -0800 (PST) Received: (from asami@localhost) by vader.clickarray.com (8.11.0/8.11.0) id f18Jcln51936; Thu, 8 Feb 2001 11:38:47 -0800 (PST) (envelope-from asami@cs.berkeley.edu) X-Authentication-Warning: vader.clickarray.com: asami set sender to asami@cs.berkeley.edu using -f To: Kris Kennaway Cc: ports@FreeBSD.org Subject: Re: Needed: apache/httpd ports to use 'www' user References: <20010207014012.B22502@mollari.cthul.hu> 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: 08 Feb 2001 11:38:45 -0800 In-Reply-To: <20010207014012.B22502@mollari.cthul.hu> (Kris Kennaway's message of "Wed, 07 Feb 2001 01:40:12 -0800") Message-ID: Lines: 17 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: Kris Kennaway * Subject says it all - we need to update the various webserver ports * (and any others) to not use the 'nobody' user, but to use a 'www' user * (which should be added to the base system, IMO). The 'nobody' user * should NOT confer any privileges on people who hold it - the fact that * e.g. apache runs as the nobody user is certainly a privilege, as it * will let attackers compromise the website if they gain access to the * nobody user by breaking some other utility. I've been looking at squid and was thinking the same thing. I change uid/gid to "www" locally, but that should be done by the port. nbm's suggestion that we have one for each class (webserver, proxy, zope?) is probably a good idea though. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 12:10:53 2001 Delivered-To: freebsd-ports@freebsd.org Received: from privatecube.privatelabs.com (unknown [63.114.185.254]) by hub.freebsd.org (Postfix) with ESMTP id 1279037B6A8; Thu, 8 Feb 2001 12:10:35 -0800 (PST) Received: from misha.privatelabs.com (root@misha.plten [10.0.0.106]) by privatecube.privatelabs.com (8.9.3/8.9.2) with ESMTP id PAA04153; Thu, 8 Feb 2001 15:30:45 -0500 Received: from virtual-estates.net (mi@localhost [127.0.0.1]) by misha.privatelabs.com (8.11.1/8.9.3) with ESMTP id f18KAVP61876; Thu, 8 Feb 2001 15:10:32 -0500 (EST) (envelope-from mi@virtual-estates.net) Message-Id: <200102082010.f18KAVP61876@misha.privatelabs.com> Date: Thu, 8 Feb 2001 15:10:30 -0500 (EST) From: mi@aldan.algebra.com Subject: Re: ports/23917: replacing sane with sane-backends and sane-fronten ds To: okazaki@FreeBSD.org Cc: freebsd-ports@FreeBSD.org In-Reply-To: <200102081634.f18GYpG78910@freefall.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 On 8 Feb, okazaki@FreeBSD.org wrote: = Synopsis: replacing sane with sane-backends and sane-frontends = = Responsible-Changed-From-To: freebsd-ports->mi = Responsible-Changed-By: okazaki = Responsible-Changed-When: Thu Feb 8 08:27:11 PST 2001 = Responsible-Changed-Why: = Submitter is a committer now :-) = = http://www.freebsd.org/cgi/query-pr.cgi?pr=23917 Aha. And noone else uses the port and is willing to review the submitted changes? -mi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 12:29:59 2001 Delivered-To: freebsd-ports@freebsd.org Received: from london.physics.purdue.edu (london.physics.purdue.edu [128.210.67.35]) by hub.freebsd.org (Postfix) with ESMTP id 078A837B6C8; Thu, 8 Feb 2001 12:29:41 -0800 (PST) Received: (from will@localhost) by london.physics.purdue.edu (8.8.8/8.8.8) id PAA16100; Thu, 8 Feb 2001 15:29:39 -0500 (EST) X-Authentication-Warning: london.physics.purdue.edu: will set sender to will@physics.purdue.edu using -f Date: Thu, 8 Feb 2001 15:29:38 -0500 From: Will Andrews To: Maxim Sobolev Cc: ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: Request for comment: bsd.port.mk and recent pthreads changes Message-ID: <20010208152938.L20957@london.physics.purdue.edu> Reply-To: Will Andrews Mail-Followup-To: Will Andrews , Maxim Sobolev , ports@FreeBSD.ORG, asami@FreeBSD.ORG References: <3A82F3A7.9F7BB427@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: <3A82F3A7.9F7BB427@FreeBSD.org>; from sobomax@FreeBSD.ORG on Thu, Feb 08, 2001 at 09:29:43PM +0200 X-Operating-System: SunOS 4.1.3_U1 sun4m Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Feb 08, 2001 at 09:29:43PM +0200, Maxim Sobolev wrote: > As you may know recent changes in the pthreads (depreciation of -pthread flag) > made necessary to ajust many ports from our ports collection. This change would > be conditional, as older versions of the FreeBSD still need this flag. > Therefore it would be nice to have some support for that from the bsd.port.mk, > because it's not very handy to put the same conditional in every single port > that use pthreads. With this message I'm attaching patch that represents my > vision of such support. I would like to hear comments on it and theoretically > get it (or something like it) committed in the nearest future. Looks good to 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 Feb 8 12:44:57 2001 Delivered-To: freebsd-ports@freebsd.org Received: from balzac.cybercable.fr (balzac.cybercable.fr [212.198.0.198]) by hub.freebsd.org (Postfix) with SMTP id B4B4937B6C5 for ; Thu, 8 Feb 2001 12:44:39 -0800 (PST) Received: (qmail 12738354 invoked from network); 8 Feb 2001 20:44:35 -0000 Received: from d165.dhcp212-231.cybercable.fr (HELO gits.dyndns.org) ([212.198.231.165]) (envelope-sender ) by balzac.cybercable.fr (qmail-ldap-1.03) with SMTP for ; 8 Feb 2001 20:44:35 -0000 Received: (from root@localhost) by gits.dyndns.org (8.11.1/8.11.1) id f18KiXd77527; Thu, 8 Feb 2001 21:44:33 +0100 (CET) (envelope-from clefevre@poboxes.com) To: "Carlos A. M. dos Santos" Cc: FreeBSD ports mailing list Subject: Re: AST kit port? References: X-Face: V|+c;4!|B?E%BE^{E6);aI.[<97Zd*>^#%Y5Cxv;%Y[PT-LW3;A:fRrJ8+^k"e7@+30g0YD0*^^3jgyShN7o?a]C la*Zv'5NA,=963bM%J^o]C In-Reply-To: "Carlos A. M. dos Santos"'s message of "Thu, 8 Feb 2001 12:54:17 +0000 (GMT)" From: Cyrille Lefevre Reply-To: clefevre@poboxes.com Mail-Copies-To: never Date: 08 Feb 2001 21:44:31 +0100 Message-ID: Lines: 13 User-Agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Carlos A. M. dos Santos" writes: > Is there any ongoing effort to port the At&T's AST kit to FreeBSD. There > is already a shells/ksh-19931228 but now that AT&T opened the source code > of the whole package. I'm working on. it's almost finished. I'll submit a PR w/in 2 weeks including ast-ksh, ast-base, ast-open and *-locale. Cyrille. -- home: mailto:clefevre@poboxes.com UNIX is user-friendly; it's just particular work: mailto:Cyrille.Lefevre@edf.fr about who it chooses to be friends with. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 13:10:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C01D37B6B3 for ; Thu, 8 Feb 2001 13:10:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18LA1Z21863; Thu, 8 Feb 2001 13:10:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 9A19C37B6D7 for ; Thu, 8 Feb 2001 13:01:37 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18L1bZ18493; Thu, 8 Feb 2001 13:01:37 -0800 (PST) (envelope-from nobody) Message-Id: <200102082101.f18L1bZ18493@freefall.freebsd.org> Date: Thu, 8 Feb 2001 13:01:37 -0800 (PST) From: goranrunfeldt@home.se To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24956: New port: games/tetrinet, A tetrinet client for the console Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24956 >Category: ports >Synopsis: New port: games/tetrinet, A tetrinet client for the console >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 Feb 08 13:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Göran Runfeldt >Release: >Organization: >Environment: >Description: This is a port of tetrinet, a tetrinet client for the console See http://achurch.org/tetrinet/ for more info >How-To-Repeat: >Fix: begin 644 tetrinet-0.7.shar M(R!4:&ES(&ES(&$@2!Y;W4@86YD"B,@:&%V92!D969A=6QT('!E M65R"!I2!A9&1I;F<@)V%L;'-C#4P M(B<@=&\@+V5T8R]R8RYC;VYF+@I8(`I85U=7.B!H='1P.B\O86-H=7)C:"YO M"`M('1E=')I;F5T+TUA:V5F:6QE"G-E9"`G6"\O)R`^=&5TU=22U-20WTO4D5!1$U%("1[4%)%1DE8?2]S:&%R M92]D;V,O=&5TTE.4U1!3$Q?1$%407T@)'M74DM34D-]+W1E M=')I;F5T+G1X="`D>U!2149)6'TO"`M('1E=')I;F5T+V9I;&5S+W!A M=&-H+6%A"G-E9"`G6"\O)R`^=&5T2YO('AW:6XN;PI8*T]"2E,@/2!S;V-K971S+F\@=&5T M"`M('1E=')I;F5T+V9I;&5S+W!A=&-H+6%B"G-E9"`G6"\O)R`^=&5T M'=I;BYC"51U92!*86X@(#(@,#@Z,S`Z-3`@,C`P,0I8 M0$`@+3(T-"PW("LR-#0L-B!`0`I8("`@("!S:6=N86PH4TE'55-2,2P@ > What about extending "make" so that it is possible to do the following: > > > > $ cd /usr/ports/foo/bar > > $ make update > > > > "make" would then automatically deal with updating dependencies for that > > specific port, remove the old version and build the new one. > > Well, this is a cool concept on the face of it but it needs more > infrastructure work to actually function. I think we have some of that infrastructure with the ORIGIN information that sobomax added to the pkg_* utilities and bsd.port.mk. > Let's say I install the "gtkwooba" port which depends on gtk, > libtools, glib and libwooba. Then I come back over a year later and > do a "make update" in gtkwooba. It's pretty much a surety that just > about everything it depends on has been updated, so I have to upgrade > gtk, libtools, glib and libwooba too. I'm not sure about that. You should only have to upgrade the dependencies listed in the Makefile for gtkwooba that aren't still satisfied. For example, even if libtool has been upgraded, the executable /path/to/libtool still exists, and so "make install" for gtkwooba isn't going to try to update that. I presume that's still the correct behavior. > Because of the other things > which depend on them and the manner in which they're constructed, > however, these four items fall into different categories: > > gtk: older version cannot be removed, new version must go alongside Right. The Makefile will depend on a newer gtk (one that presumably has a different library version, or something like that). The old gtk will have one less dependency (and thus it may be a useless component in the system), but that's fine. (IMHO) > libtools, glib: older versions can be replaced by new version with full > backwards compatibility Yep. They don't *have* to be though. > libwooba: no other dependencies, can be replaced by new version with > no other concerns Yep. > Now there may also be a safe way to achieve the upgrades in all cases, > depending on the skill and dedication of the people maintaining the > ports, but the ports collection doesn't currently have enough > descriptive metadata to be *sure* of that or to know when it can > safely pkg_delete an older version. I'd choose not to pkg_delete the old version. This means we might have a bunch of cruft lying around. But at least everything still works. > Anyway, "make update" is basically a feature which is awaiting a Ports > Hero to come along and add the necessary intelligence to actually > automate it properly. :) OK. With a little trepidation (sp?), I'm going to post shortly (like within an hour or so), what my solution for "make update" is. I can't believe I've blown away an entire day working on this. :-( Bruce. --==_Exmh_-1619484544P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE6gx242MoxcVugUsMRAmuVAJ44dNNu9l5gABiX9vMZyVB0sXacNACfch5U ajJOnj4OrSPQWA6/FyW/Q6Q= =0S6R -----END PGP SIGNATURE----- --==_Exmh_-1619484544P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 14:43:16 2001 Delivered-To: freebsd-ports@freebsd.org Received: from katrien.skystream.nl (katrien.skystream.nl [195.7.130.55]) by hub.freebsd.org (Postfix) with ESMTP id 567D837B699 for ; Thu, 8 Feb 2001 14:42:59 -0800 (PST) Received: from dyn.dailup.c227129201.isd.to (dyn.dailup.c227129201.isd.to [213.227.129.201]) by katrien.skystream.nl (8.11.1/8.11.0) with ESMTP id f18Mefq29948 for ; Thu, 8 Feb 2001 23:40:41 +0100 Received: (qmail 60651 invoked by uid 1000); 8 Feb 2001 23:44:37 -0000 From: "Andre Goeree" Date: Thu, 8 Feb 2001 23:44:37 +0000 To: freebsd-ports@freebsd.org Subject: glclock broken? pthread Message-ID: <20010208234437.A59433@mandark.attica.home> Reply-To: abgoeree@uwnet.nl Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Sender: abgoeree@uwnet.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, My attempt to build x11-clocks/glclock ended with the following error: /usr/X11R6/lib/libGL.so: undefined reference to `pthread_getspecific' /usr/X11R6/lib/libGL.so: undefined reference to `pthread_key_create' /usr/X11R6/lib/libGL.so: undefined reference to `pthread_setspecific' *** Error code 1 Stop in /usr/local/ports/x11-clocks/glclock/work/glclock-5.0. *** Error code 1 just fixed a similar error with xscreensaver;) The trick of adding "CONFIGURE_ENV= LDFLAGS=-pthread" to the Makefile didn't work here. What should i try next? (XFree86-4.0.2_5 Mesa-3.2.1_1) -- Andre. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 15: 8:58 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5E7FA37C128; Thu, 8 Feb 2001 15:08:42 -0800 (PST) Received: (from sobomax@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f18N8gV36830; Thu, 8 Feb 2001 15:08:42 -0800 (PST) (envelope-from sobomax) Date: Thu, 8 Feb 2001 15:08:42 -0800 (PST) From: Message-Id: <200102082308.f18N8gV36830@freefall.freebsd.org> To: sobomax@FreeBSD.org, freebsd-ports@FreeBSD.org, sobomax@FreeBSD.org Subject: Re: ports/24808: NEW PORT net/samba-dev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW PORT net/samba-dev Responsible-Changed-From-To: freebsd-ports->sobomax Responsible-Changed-By: sobomax Responsible-Changed-When: Thu Feb 8 15:07:47 PST 2001 Responsible-Changed-Why: I'll take this. http://www.freebsd.org/cgi/query-pr.cgi?pr=24808 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 15:45:45 2001 Delivered-To: freebsd-ports@freebsd.org Received: from katrien.skystream.nl (katrien.skystream.nl [195.7.130.55]) by hub.freebsd.org (Postfix) with ESMTP id 3E1B437B503 for ; Thu, 8 Feb 2001 15:45:27 -0800 (PST) Received: from dyn.dailup.c227140233.isd.to (dyn.dailup.c227140233.isd.to [213.227.140.233]) by katrien.skystream.nl (8.11.1/8.11.0) with ESMTP id f18NhCq30414 for ; Fri, 9 Feb 2001 00:43:12 +0100 Received: (qmail 15821 invoked by uid 1000); 9 Feb 2001 00:47:57 -0000 From: "Andre Goeree" Date: Fri, 9 Feb 2001 00:47:57 +0000 To: freebsd-ports@freebsd.org Subject: installation of xaos failed Message-ID: <20010209004757.A15791@mandark.attica.home> Reply-To: abgoeree@uwnet.nl Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Sender: abgoeree@uwnet.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, While installing graphics/xaos the following error occurred: ===> Installing for xaos-3.0 ===> xaos-3.0 depends on shared library: png.4 - found ===> xaos-3.0 depends on shared library: X11.6 - found /usr/bin/install -c -o root -g wheel -d /usr/local/share/XaoS /usr/bin/install -c -o root -g wheel -d /usr/local/share/XaoS/tutorial /usr/bin/install -c -o root -g wheel -d /usr/local/share/XaoS/examples /usr/bin/install -c -o root -g wheel -d /usr/local/share/XaoS/catalogs /usr/bin/install -c -o root -g wheel -d /usr/local/share/XaoS/doc /usr/bin/install -c -o root -g wheel -d /usr/local/bin /usr/bin/install -c -o root -g wheel -d /usr/local/man/man6 /usr/bin/install -c -o root -g wheel -s bin/xaos /usr/local/bin /usr/bin/install -c -o root -g wheel -m 444 tutorial/*.x[ah]f /usr/local/share/XaoS/tutorial /usr/bin/install -c -o root -g wheel -m 444 examples/* /usr/local/share/XaoS/examples /usr/bin/install -c -o root -g wheel -m 444 catalogs/* /usr/local/share/XaoS/catalogs /usr/bin/install -c -o root -g wheel -m 444 doc/README doc/README.bugs doc/compilers.txt doc/ANNOUNCE doc/PROBLEMS doc/tutorial.txt /usr/local/share/XaoS/doc /usr/bin/install -c -o root -g wheel -m 444 doc/xaos.6 /usr/local/man/man6 chmod +s /usr/local/bin/xaos; chown root /usr/local/bin/xaos; chgrp root /usr/local/bin/xaos chgrp: root: illegal group name *** Error code 1 -- Andre. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 15:48: 8 2001 Delivered-To: freebsd-ports@freebsd.org Received: from sj-msg-core-4.cisco.com (sj-msg-core-4.cisco.com [171.71.163.10]) by hub.freebsd.org (Postfix) with ESMTP id 399D637B491; Thu, 8 Feb 2001 15:47:43 -0800 (PST) Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by sj-msg-core-4.cisco.com (8.9.3/8.9.1) with ESMTP id PAA13586; Thu, 8 Feb 2001 15:47:45 -0800 (PST) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.1/8.11.1) id f18NlgO12046; Thu, 8 Feb 2001 15:47:42 -0800 (PST) (envelope-from bmah) Message-Id: <200102082347.f18NlgO12046@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.3.1 01/19/2001 with nmh-1.0.4 To: freebsd-ports@freebsd.org Cc: bmah@freebsd.org Subject: [RFC] make upgrade target for bsd.port.mk From: bmah@freebsd.org (Bruce A. Mah) Reply-To: bmah@freebsd.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_-194770182P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Thu, 08 Feb 2001 15:47:42 -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_-194770182P Content-Type: multipart/mixed ; boundary="==_Exmh_-1948315890" This is a multipart MIME message. --==_Exmh_-1948315890 Content-Type: text/plain; charset=us-ascii (Second try at sending this...apparently I'm so brain-dead I can't even spell "freebsd-ports" correctly.) OK. All of this talk about how to upgrade ports (plus apparently-rampant abuse of "pkg_version -c") finally pushed me over the edge and today I sat down to write some Makefile magic to actually implement a ports upgrade target for bsd.port.mk. It's based on a brain dump I did to -ports last week. Here it is. Make sure you have backups...it'll probably blow something away you didn't expect. Notes: I've actually tried this on a few installed ports, and it seemed to upgrade things OK. It's good at preserving the dependency data for things that depend on the port being upgraded. It relies on the existing ports mechanisms for finding things that a new version might depend on, and on trying to upgrade those recursively (but only if necessary to fulfill some dependency). The port being upgraded *must* have been installed with the ORIGIN feature was added to the ports infrastructure. I tried to make it as conservative as possible, but I'm pretty sure there'll be some cases it doesn't handle (shared library version bumps?). Some material came out of some conversations surrounding pkg_upgrade(1). Apologies for duplicating the efforts of several other people who have done other scripts of this type; I wanted to try something that can be well-integrated into the existing ports infrastructure. I'm done with this for now. If someone wants to run with it (preferably someone who already understands bsd.port.mk) I'd be grateful. I don't know if I can spare any more cycles to look at this problem in the near future. If someone finds this idea fatally flawed, that's fine too. Cheers, Bruce. (crawling back to Real Work (TM)) --==_Exmh_-1948315890 Content-Type: text/plain ; name="bsd.port.mk.diff"; charset=us-ascii Content-Description: bsd.port.mk.diff Index: bsd.port.mk =================================================================== RCS file: /cvsroot/ports/Mk/bsd.port.mk,v retrieving revision 1.361 diff -c -r1.361 bsd.port.mk *** bsd.port.mk 2001/01/16 09:25:16 1.361 --- bsd.port.mk 2001/02/08 22:24:46 *************** *** 100,105 **** --- 100,106 ---- # NO_CDROM - Port may not go on CDROM. # NO_PACKAGE - Port should not be packaged but distfiles can be put on # ftp sites and CDROMs. + # NO_UPGRADE - Port should not be upgraded. # BROKEN_ELF - Port doesn't build on ELF machines. # BROKEN - Port is broken. # *************** *** 306,311 **** --- 307,313 ---- # flag. # deinstall - Remove the installation. # package - Create a package from an _installed_ port. + # upgrade - Upgrade an installed port. # describe - Try to generate a one-line description for each port for # use in INDEX files and the like. # checkpatch - Do a "patch -C" instead of a "patch". Note that it may *************** *** 455,460 **** --- 457,467 ---- # if this port is a beta version of another stable port # which is also in the tree. # + # For upgrade: + # + # TMPDEP - Temporary file used for dependencies + # (default: ${WRKDIR}/.UPGRADE.mktmp + # # This is used in all stages: # # SCRIPTS_ENV - Additional environment vars passed to scripts in *************** *** 919,924 **** --- 926,932 ---- BUILD_COOKIE?= ${WRKDIR}/.build_done PATCH_COOKIE?= ${WRKDIR}/.patch_done PACKAGE_COOKIE?= ${WRKDIR}/.package_done + UPGRADE_COOKIE?= ${WRKDIR}/.upgrade_done # How to do nothing. Override if you, for some strange reason, would rather # do something. *************** *** 1053,1058 **** --- 1061,1067 ---- PKGMESSAGE?= ${PKGDIR}/pkg-message TMPPLIST?= ${WRKDIR}/.PLIST.mktmp + TMPDEP?= ${WRKDIR}/.UPGRADE.mktmp .if ${OSVERSION} >= 400000 .for _CATEGORY in ${CATEGORIES} *************** *** 1510,1515 **** --- 1519,1526 ---- @${IGNORECMD} package: @${IGNORECMD} + upgrade: + @${IGNORECMD} .endif .endif *************** *** 1613,1618 **** --- 1624,1639 ---- .endif .endif + # Disable upgrade + .if defined(NO_UPGRADE) && !target(upgrade) + upgrade: + .if defined(IGNORE_SILENT) + @${DO_NADA} + .else + @${ECHO_MSG} "===> ${PKGNAME} may not be upgraded: ${NO_UPGRADE}." + .endif + .endif + # Disable describe .if defined(NO_DESCRIBE) && !target(describe) describe: *************** *** 1926,1931 **** --- 1947,2003 ---- @${ECHO} "[ -f ${PKGFILE} ] && (${ECHO} deleting ${PKGFILE}; ${RM} -f ${PKGFILE})" .endif + # Upgrade + + .if !target(do-upgrade) + do-upgrade: + @oldpkg=`eval ${MAKE} find-installed-port`; \ + if [ "x$$oldpkg" = "x" ]; then \ + ${ECHO} "Installed port cannot be determined from origin information."; \ + exit 1; \ + fi; \ + ${ECHO_MSG} "===> Upgrading $${oldpkg} to ${PKGNAME}"; \ + cd ${.CURDIR} && DEPENDS_TARGET=upgrade-or-install ${MAKE} build; \ + ${ECHO_MSG} "===> Preserving dependency information"; \ + downdep=`${PKG_INFO} -q -R $${oldpkg}`; \ + ${ECHO_MSG} "===> Deleting old port/package (warnings from pkg_delete may be ignored)"; \ + ${PKG_DELETE} -f $${oldpkg}; \ + cd ${.CURDIR} && DEPENDS_TARGET=upgrade-or-install ${MAKE} install; \ + dbdir=${PKG_DBDIR}/${PKGNAME}; \ + ${ECHO_MSG} "===> Restoring dependency information"; \ + ${ECHO} "$${downdep}" > $${dbdir}/+REQUIRED_BY; \ + ${ECHO_MSG} "===> Updating dependencies in other ports"; \ + for p in $${downdep}; do \ + ${ECHO_MSG} " $${p}"; \ + ${RM} -f ${TMPDEP}; \ + ${SED} "s/^@pkgdep $${oldpkg}/@pkgdep ${PKGNAME}/" < ${PKG_DBDIR}/$${p}/+CONTENTS > ${TMPDEP}; \ + ${CP} ${TMPDEP} ${PKG_DBDIR}/$${p}/+CONTENTS; \ + done + .endif + + .if !target(find-installed-port) + find-installed-port: + @for p in `${PKG_INFO} -a -I | awk '{print $$1}'`; do \ + o=`${PKG_INFO} -q -o $$p`; \ + if [ "x$$o" != "x" ]; then \ + if [ "$$o" = "${PKGORIGIN}" ]; then \ + oldpkg=$$p; \ + fi; \ + fi; \ + done; \ + ${ECHO} $$oldpkg + .endif + + .if !target(upgrade-or-install) + upgrade-or-install: + @oldpkg=`cd ${.CURDIR} && ${MAKE} find-installed-port`; \ + if [ "x$$oldpkg"="x" ]; then \ + DEPENDS_TARGET="${DEPENDS_TARGET}" ${MAKE} install; \ + else \ + DEPENDS_TARGET="${DEPENDS_TARGET}" ${MAKE} upgrade; \ + fi; + .endif + ################################################################ # This is the "generic" port target, actually a macro used from the # six main targets. See below for more. *************** *** 2064,2069 **** --- 2136,2145 ---- package: ${PACKAGE_COOKIE} .endif + .if !target(upgrade) + upgrade: ${UPGRADE_COOKIE} + .endif + ${EXTRACT_COOKIE}: @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} fetch @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} real-extract *************** *** 2114,2119 **** --- 2190,2198 ---- @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} install @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} real-package + ${UPGRADE_COOKIE}: + @cd ${.CURDIR} && ${MAKE} ${__softMAKEFLAGS} real-upgrade + # And call the macros real-fetch: _PORT_USE *************** *** 2128,2138 **** real-install: _PORT_USE @${ECHO_MSG} "===> Installing for ${PKGNAME}" real-package: _PORT_USE # Empty pre-* and post-* targets, note we can't use .if !target() # in the _PORT_USE macro ! .for name in fetch extract patch configure build install package .if !target(pre-${name}) pre-${name}: --- 2207,2219 ---- real-install: _PORT_USE @${ECHO_MSG} "===> Installing for ${PKGNAME}" real-package: _PORT_USE + real-upgrade: _PORT_USE + @${ECHO_MSG} "===> Upgrading for ${PKGNAME}" # Empty pre-* and post-* targets, note we can't use .if !target() # in the _PORT_USE macro ! .for name in fetch extract patch configure build install package upgrade .if !target(pre-${name}) pre-${name}: --==_Exmh_-1948315890-- --==_Exmh_-194770182P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE6gzAe2MoxcVugUsMRAtL+AJ9DScp6OOKdxEFi1qCMMjB3lMEdSwCcDYiN hFdMwXnSNovZmCeM63qLfbE= =uoDr -----END PGP SIGNATURE----- --==_Exmh_-194770182P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 16:55:14 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id D734537B4EC for ; Thu, 8 Feb 2001 16:54:54 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f190sm608151; Fri, 9 Feb 2001 02:54:50 +0200 Received: (from max@localhost) by vic.sabbo.net (8.11.2/8.11.2) id f190sn413421; Fri, 9 Feb 2001 02:54:49 +0200 (EET) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200102090054.f190sn413421@vic.sabbo.net> Subject: Re: glclock broken? pthread To: abgoeree@uwnet.nl Date: Fri, 9 Feb 2001 02:54:44 +0200 (EET) Cc: freebsd-ports@freebsd.org In-Reply-To: <20010208234437.A59433@mandark.attica.home> from "Andre Goeree" at Feb 08, 2001 11:44:37 PM X-Mailer: ELM [version 2.5 PL3] 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, > > My attempt to build x11-clocks/glclock ended > with the following error: > > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_getspecific' > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_key_create' > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_setspecific' > *** Error code 1 > > Stop in /usr/local/ports/x11-clocks/glclock/work/glclock-5.0. > *** Error code 1 > > just fixed a similar error with xscreensaver;) > The trick of adding "CONFIGURE_ENV= LDFLAGS=-pthread" > to the Makefile didn't work here. > What should i try next? > (XFree86-4.0.2_5 Mesa-3.2.1_1) > You have several choices ahead: 1. Wait a bit until -pthread weirdness would be resolved; 2. Manually replace -pthread in ports/x11/XFree86-4/files/patch-* with -lc_r and then recompile/reinstall XFree86-4; 3. Apply attached patch for gcc.295 and then recompile/reinstall XFree86-4. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 16:58:40 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (smtp.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 242D337B503; Thu, 8 Feb 2001 16:58:17 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f190wE608182; Fri, 9 Feb 2001 02:58:14 +0200 Received: (from max@localhost) by vic.sabbo.net (8.11.2/8.11.2) id f190wEu13453; Fri, 9 Feb 2001 02:58:14 +0200 (EET) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200102090058.f190wEu13453@vic.sabbo.net> Subject: Re: glclock broken? pthread To: sobomax@freebsd.org (Maxim Sobolev) Date: Fri, 9 Feb 2001 02:58:09 +0200 (EET) Cc: abgoeree@uwnet.nl, freebsd-ports@freebsd.org In-Reply-To: <200102090054.f190sn413421@vic.sabbo.net> from "Maxim Sobolev" at Feb 09, 2001 02:54:44 AM X-Mailer: ELM [version 2.5 PL3] MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="%--multipart-mixed-boundary-1.13403.981680289--%" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --%--multipart-mixed-boundary-1.13403.981680289--% Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit > 3. Apply attached patch for gcc.295 and then recompile/reinstall XFree86-4. > OOPS, forgot to attach a patch... -Maxim --%--multipart-mixed-boundary-1.13403.981680289--% Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Description: ASCII English text Content-Disposition: attachment; filename="diff" Index: src/contrib/gcc.295/config/freebsd.h =================================================================== RCS file: /home/ncvs/src/contrib/gcc.295/config/freebsd.h,v retrieving revision 1.31 diff -d -u -r1.31 freebsd.h --- src/contrib/gcc.295/config/freebsd.h 2001/01/25 18:57:13 1.31 +++ src/contrib/gcc.295/config/freebsd.h 2001/02/07 21:00:12 @@ -76,10 +76,8 @@ (like the default, except no -lg, and no -p). */ #undef LIB_SPEC #define LIB_SPEC "\ - %{!shared: \ - %{!pg: %{pthread:-lc_r} -lc} \ - %{pg: %{pthread:-lc_r_p} -lc_p} \ - }" + %{!pg: %{pthread:-lc_r} -lc} \ + %{pg: %{pthread:-lc_r_p} -lc_p}" /************************[ Target stuff ]***********************************/ --%--multipart-mixed-boundary-1.13403.981680289--%-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 17:45:36 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (pop3.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 9099D37B65D; Thu, 8 Feb 2001 17:45:15 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f191j8608629; Fri, 9 Feb 2001 03:45:09 +0200 Received: (from max@localhost) by vic.sabbo.net (8.11.2/8.11.2) id f191j9513959; Fri, 9 Feb 2001 03:45:09 +0200 (EET) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200102090145.f191j9513959@vic.sabbo.net> Subject: Re: Ports updating... Good ways? To: bmah@FreeBSD.ORG Date: Fri, 9 Feb 2001 03:45:04 +0200 (EET) Cc: jkh@winston.osd.bsdi.com (Jordan Hubbard), kraemer@u.washington.edu (Brian Kraemer), freebsd-ports@FreeBSD.ORG In-Reply-To: <200102082229.f18MTC806430@bmah-freebsd-0.cisco.com> from "Bruce A. Mah" at Feb 08, 2001 02:29:12 PM X-Mailer: ELM [version 2.5 PL3] 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 > > > Let's say I install the "gtkwooba" port which depends on gtk, > > libtools, glib and libwooba. Then I come back over a year later and > > do a "make update" in gtkwooba. It's pretty much a surety that just > > about everything it depends on has been updated, so I have to upgrade > > gtk, libtools, glib and libwooba too. > > I'm not sure about that. You should only have to upgrade the > dependencies listed in the Makefile for gtkwooba that aren't still > satisfied. For example, even if libtool has been upgraded, the > executable /path/to/libtool still exists, and so "make install" for > gtkwooba isn't going to try to update that. I presume that's still the > correct behavior. It's questionable point. The real life is often more messy and new version of a port may need really up-to-date versions of its dependencies. Good example is my addition of --build= stub into libtool. While this change is undetectable from the point of view of package dependency mechanism (i.e. no files were added or removed), change in functionality would prevent ports that use that feature from building correctly if older version is installed (anything below 1.3.4_1). There are several more complicated cases of this problem as well. Consider the following sequence: 1. port A-1.0 created; 2. port B-1.0 created and depends on A; 3. new version 1.1 of port B released that relies upon feature that was present but no enabled in the current A-1.0 port; 4. maintainer revises port A-1.0 to enable requred for 1.1 version of the port B feature and bumps PORTREVISION to indicate that upgrade necessary; 5. port B updated to the new version 1.1. The similar situation would be in the case when some backward but not forward compatible changes were made in the software without shared library version bump (common situation in the GTK/Gnome word). Therefore the only safe method is to assume that a port needs most up-to-date versions of its dependencies. This, however, lead us to the necessity to update not only dependencies, but all the ports which depend on that dependencies. Take a look at the following simple graph: A --> B <-- C ^ | D The graph shows that packages A, C and D depend on package B. Then when we are trying to upgrade C and discovered that new version of B is available we have to update not only B and C, but all packages A, B, C, D, because new version of package C may need new version of package B, while new version of package B may be incompatible with already installed A and D, so we need to update them as well. This of course is a very simple case, in the real world graph would be much more complicated, so update of one package could trigger update of the whole set of installed packages. *sigh* Well, I have to emphasize that I said the above not to discourage you or anybody else, but to highlight some of the most important, in my own opinion of couse, problems with authomatic updating of ports/packages. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 18:18:41 2001 Delivered-To: freebsd-ports@freebsd.org Received: from sj-msg-core-2.cisco.com (sj-msg-core-2.cisco.com [171.69.43.88]) by hub.freebsd.org (Postfix) with ESMTP id DCECD37B69E; Thu, 8 Feb 2001 18:18:21 -0800 (PST) Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by sj-msg-core-2.cisco.com (8.9.3/8.9.1) with ESMTP id SAA08291; Thu, 8 Feb 2001 18:18:34 -0800 (PST) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.1/8.11.1) id f192ILh13295; Thu, 8 Feb 2001 18:18:21 -0800 (PST) (envelope-from bmah) Message-Id: <200102090218.f192ILh13295@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.3.1 01/19/2001 with nmh-1.0.4 To: Maxim Sobolev Cc: bmah@FreeBSD.ORG, jkh@winston.osd.bsdi.com (Jordan Hubbard), kraemer@u.washington.edu (Brian Kraemer), freebsd-ports@FreeBSD.ORG Subject: Re: Ports updating... Good ways? In-Reply-To: <200102090145.f191j9513959@vic.sabbo.net> References: <200102090145.f191j9513959@vic.sabbo.net> Comments: In-reply-to Maxim Sobolev message dated "Fri, 09 Feb 2001 03:45:04 +0200." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_-53236343P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Thu, 08 Feb 2001 18:18:21 -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_-53236343P Content-Type: text/plain; charset=us-ascii If memory serves me right, Maxim Sobolev wrote: > > > Let's say I install the "gtkwooba" port which depends on gtk, > > > libtools, glib and libwooba. Then I come back over a year later and > > > do a "make update" in gtkwooba. It's pretty much a surety that just > > > about everything it depends on has been updated, so I have to upgrade > > > gtk, libtools, glib and libwooba too. > > > > I'm not sure about that. You should only have to upgrade the > > dependencies listed in the Makefile for gtkwooba that aren't still > > satisfied. For example, even if libtool has been upgraded, the > > executable /path/to/libtool still exists, and so "make install" for > > gtkwooba isn't going to try to update that. I presume that's still the > > correct behavior. > > It's questionable point. The real life is often more messy and new > version of a port may need really up-to-date versions of its dependencies. > Good example is my addition of --build= stub into libtool. While this change > is undetectable from the point of view of package dependency mechanism > (i.e. no files were added or removed), change in functionality would > prevent ports that use that feature from building correctly if older > version is installed (anything below 1.3.4_1). Hi Max-- Good points. I'd say that in this situation we're no *worse* off than we are currently. A situation like this breaks installs of new ports also, not just updates. How is the user supposed to know that she has to go upgrade libtool if for all she knows she is just going to install libwooba? [snip] > Therefore the only safe method is to assume that a port needs most up-to-date > versions of its dependencies. This, however, lead us to the necessity to > update not only dependencies, but all the ports which depend on that > dependencies. Take a look at the following simple graph: This is a situation that our current dependency infrastructure is completely inadequate for. I don't know if I just stepped on people's toes or said something mind-numbingly obvious or both. Apologies if any of those are true. I interpret what you wrote as saying that "make install" for a port is potentially broken. This is shocking to me. > Well, I have to emphasize that I said the above not to discourage you > or anybody else, but to highlight some of the most important, in my > own opinion of couse, problems with authomatic updating of ports/packages. Point well taken. By now you've probably seen the patch for bsd.port.mk I posted. I believe that it's consistent with the current functionality of the rest of bsd.port.mk (and apparently broken in the same ways). Perhaps its main contribution to the body of knowledge on this problem is that it works within the confines of bsd.port.mk, and has only a couple of grotesque hacks where it has to grovel into the package database. I don't have any emotional attachment to what I posted, and I probably don't have any time to work on this further, so if if someone wants to pick it up and run with it, or if it dies from apathy, that's fine by me. I actually did use some test cases to update some ports that needed updating on one of my systems, so it wasn't a complete waste of time for me. :-) Well actually I lied. I do have one attachment to my solution...I want people to stop doing "pkg_version -c | sh" (how many times can I write that today?) and this seemed like a pretty good alternative. Cheers, Bruce. --==_Exmh_-53236343P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE6g1Nt2MoxcVugUsMRAuy0AKCQ5u44QCt+XlmFF1uLqv2vg5EepACfcR1k 6Pcz+MdkqW3FgqKtL9TALnQ= =PP4K -----END PGP SIGNATURE----- --==_Exmh_-53236343P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 18:22:32 2001 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 B75B137B503; Thu, 8 Feb 2001 18:22:11 -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 EAA97589; Fri, 9 Feb 2001 04:21:59 +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 f192LNR16551; Thu, 8 Feb 2001 18:21:23 -0800 (PST) (envelope-from reg) Date: Thu, 8 Feb 2001 18:21:23 -0800 From: Jeremy Lea To: "Bruce A. Mah" Cc: freebsd-ports@FreeBSD.ORG Subject: Re: [RFC] make upgrade target for bsd.port.mk Message-ID: <20010208182123.I8780@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , "Bruce A. Mah" , freebsd-ports@FreeBSD.ORG References: <200102082347.f18NlgO12046@bmah-freebsd-0.cisco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200102082347.f18NlgO12046@bmah-freebsd-0.cisco.com>; from bmah@FreeBSD.ORG on Thu, Feb 08, 2001 at 03:47:42PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Thu, Feb 08, 2001 at 03:47:42PM -0800, Bruce A. Mah wrote: > If someone finds this idea fatally flawed, that's fine too. This will fail if the new port includes a bump in a shared library version. The idea is implemented in the wrong place. This needs to be done by pkg_add (which bsd.port.mk should be using). In pkg_add you can determine if the port should upgrade an existing port automatically - the easiest and most reliable mechanism being a conflict in installed files: If the files we plan on installing overwrite files installed by (an)other port(s), then we need to upgraded that port/those ports, regardless of the origin. Even if we don't conflict, we need to upgrade any port with the same origin as us. (We also need a flag to force X to upgrade Y). If the port's base names not match, then most likely we have a real problem, and we should only install with a force flag, and only do manual upgrades. During the upgrade, we need to save any shared libraries installed by the upgraded port(s). 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 Feb 8 18:40:31 2001 Delivered-To: freebsd-ports@freebsd.org Received: from sj-msg-core-2.cisco.com (sj-msg-core-2.cisco.com [171.69.43.88]) by hub.freebsd.org (Postfix) with ESMTP id 6F38337B401; Thu, 8 Feb 2001 18:40:09 -0800 (PST) Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by sj-msg-core-2.cisco.com (8.9.3/8.9.1) with ESMTP id SAA19181; Thu, 8 Feb 2001 18:40:22 -0800 (PST) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.1/8.11.1) id f192e9u13590; Thu, 8 Feb 2001 18:40:09 -0800 (PST) (envelope-from bmah) Message-Id: <200102090240.f192e9u13590@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.3.1 01/19/2001 with nmh-1.0.4 To: Jeremy Lea Cc: "Bruce A. Mah" , freebsd-ports@FreeBSD.ORG Subject: Re: [RFC] make upgrade target for bsd.port.mk In-Reply-To: <20010208182123.I8780@shale.csir.co.za> References: <200102082347.f18NlgO12046@bmah-freebsd-0.cisco.com> <20010208182123.I8780@shale.csir.co.za> Comments: In-reply-to Jeremy Lea message dated "Thu, 08 Feb 2001 18:21:23 -0800." From: bmah@FreeBSD.ORG (Bruce A. Mah) Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_-24536347P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Thu, 08 Feb 2001 18:40:09 -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_-24536347P Content-Type: text/plain; charset=us-ascii If memory serves me right, Jeremy Lea wrote: > On Thu, Feb 08, 2001 at 03:47:42PM -0800, Bruce A. Mah wrote: > > If someone finds this idea fatally flawed, that's fine too. > > This will fail if the new port includes a bump in a shared library > version. I had a nagging doubt about this but I wasn't sure. > The idea is implemented in the wrong place. This needs to be done by > pkg_add (which bsd.port.mk should be using). In pkg_add you can > determine if the port should upgrade an existing port automatically - > the easiest and most reliable mechanism being a conflict in installed > files: I disagree (with your first sentence). You can only do pkg_add if you have a package constructed. The only way to make a package (currently) from a port is to actually install all the files. (Whether or not it *should* work this way is another matter. You could make the argument that we should install the port in a scratch directory, create the pkg, and then install it. But then we have problems with non-PREFIX-clean ports.) > If the files we plan on installing overwrite files installed by > (an)other port(s), then we need to upgraded that port/those ports, Aside from the fact that a lot of users have fubar'd package databases because they install old packages on top of new ones, there's the problem that we don't know how to do this without a PLIST, which (as I wrote earlier) we can't do without actually installing something. > regardless of the origin. Even if we don't conflict, we need to upgrade > any port with the same origin as us. (We also need a flag to force X to > upgrade Y). If the port's base names not match, then most likely we > have a real problem, and we should only install with a force flag, and > only do manual upgrades. > > During the upgrade, we need to save any shared libraries installed by > the upgraded port(s). Hmmm, I wonder does this need to be generalized to include other kinds of files too? Cheers, Bruce. --==_Exmh_-24536347P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE6g1iJ2MoxcVugUsMRAoNoAJ99fX0aVeZh6U2YBCpmUpPxTMNcDwCgygmf S3VQm/rOlQt9juM9ZsQsor4= =p2fI -----END PGP SIGNATURE----- --==_Exmh_-24536347P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 19: 2:49 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E93B437B491; Thu, 8 Feb 2001 19:02:31 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1932VR63384; Thu, 8 Feb 2001 19:02:31 -0800 (PST) (envelope-from kevlo) Date: Thu, 8 Feb 2001 19:02:31 -0800 (PST) From: Message-Id: <200102090302.f1932VR63384@freefall.freebsd.org> To: joseph@randomnetworks.com, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24440: PORT-UPDATE-NO MAINTAINER : mail/nail 9.23 -> 9.24 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: PORT-UPDATE-NO MAINTAINER : mail/nail 9.23 -> 9.24 State-Changed-From-To: feedback->closed State-Changed-By: kevlo State-Changed-When: Thu Feb 8 18:53:58 PST 2001 State-Changed-Why: PR# 24876 persuaded it. http://www.freebsd.org/cgi/query-pr.cgi?pr=24440 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 19:17:51 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mb1i0.ns.pitt.edu (mb1i0.ns.pitt.edu [136.142.186.35]) by hub.freebsd.org (Postfix) with ESMTP id 6A41937B491 for ; Thu, 8 Feb 2001 19:17:33 -0800 (PST) Received: from pitt.edu ("port 1268"@[136.142.89.21]) by pitt.edu (PMDF V5.2-32 #41462) with ESMTP id <01JZVTBWG95I00927Z@mb1i0.ns.pitt.edu> for ports@FreeBSD.org; Thu, 8 Feb 2001 22:17:32 EST Date: Thu, 08 Feb 2001 22:31:28 -0500 From: "Pedro F. Giffuni" Subject: Anyone wanting to port SCEPTRE (CAD) ? To: ports@FreeBSD.org Message-id: <3A836490.3C79C28F@pitt.edu> Organization: University of Pittsburgh MIME-version: 1.0 X-Mailer: Mozilla 4.76 [en] (Win98; U) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7bit X-Accept-Language: en,pdf,es-CO Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a classic, I don't think many people use it, but maybe there's someone interested in preserving history: Begin4 Title: SCEPTRE Version: 00.317 Entered-date: 2000-11-12 Description: Simulation and Analysis of Nonlinear Electric Circuits and Dynamic Systems. SCEPTRE is a general circuit analysis program, which provides all three major analyses, AC, DC and transient analysis, on either linear or nonlinear networks. It employs a free-form input language and state variable methods to simulate problems of interest to electrical engineers. Keywords: simulation, computer-aided analysis, electric circuits, nonlinear, dynamic systems Author: novender@novilux.fh-friedberg.de (Wolf-Rainer Novender) Maintained-by: novender@novilux.fh-friedberg.de (Wolf-Rainer Novender) Primary-site: ftp://novilux.fh-friedberg.de/pub/sceptre sceptre.lsm 1.1M sceptre-00.317.tar.gz Platforms: FORTRAN compiler required (tested with g77 version 0.5.24 under SuSE 6.3) GNUPLOT is not mandatory but improves the graphics. Also any other graphic system may be used, but must be adapted. Acrobat Reader for the documentation. Copying-policy: GPL End FWIW,I found this jewel in http://sal.kachinatech.com/ , a nice site for this type of stuff (too linux oriented for my taste though) enjoy and keep up the good work, Pedro. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 8 19:45:23 2001 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 41C1A37B503 for ; Thu, 8 Feb 2001 19:44:57 -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 <20010209034455.OLHG19464.mail.rdc1.kt.home.ne.jp@daemon.local.idaemons.org>; Thu, 8 Feb 2001 19:44:55 -0800 Received: by daemon.local.idaemons.org (8.11.1/3.7W) id f193itv15006; Fri, 9 Feb 2001 12:44:55 +0900 (JST) Date: Fri, 09 Feb 2001 12:44:55 +0900 Message-ID: <864ry4ikp4.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Takanori Saneto Cc: ports@FreeBSD.ORG Subject: Re: new tool: portupgrade In-Reply-To: <200102090004.JAA25400@mail.ba2.so-net.ne.jp> References: <86k874g4c5.wl@archon.local.idaemons.org> <200102090004.JAA25400@mail.ba2.so-net.ne.jp> User-Agent: Wanderlust/2.5.4 (Smooth) SEMI/1.14.2 (=?ISO-8859-1?Q?Daish=F2?= =?ISO-8859-1?Q?ji?=) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (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.2 - =?ISO-8859-1?Q?=22Daish=F2ji=22?=) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Fri, 09 Feb 2001 09:03:49 +0900, Takanori Saneto wrote: > I've tried portupgrade (my first experience of running ruby script) > and found that it automates everything I had to do by hand. Great > tool! I hope you'll love Ruby too. :) > BTW, I think I found a buglet in the script. When old package doesn't > have +REQUIRED_BY file (or when the file is empty, maybe), new > package info will have +REQUIRED_BY file which contains "nil" in it. > > Attached is a supposed fix for this. Because of my 30 minute experience of > ruby, it is likely that there is more appropreate way to do that. Fix applied, thanks! ($req_by -> req_by) I updated the distfile. Check it out. -- / /__ __ 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 Thu Feb 8 21:33:48 2001 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 179C137B401; Thu, 8 Feb 2001 21:33:27 -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 HAA98736; Fri, 9 Feb 2001 07:33:16 +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 f195Wcn19182; Thu, 8 Feb 2001 21:32:38 -0800 (PST) (envelope-from reg) Date: Thu, 8 Feb 2001 21:32:37 -0800 From: Jeremy Lea To: "Bruce A. Mah" Cc: freebsd-ports@FreeBSD.ORG Subject: Re: [RFC] make upgrade target for bsd.port.mk Message-ID: <20010208213237.K8780@shale.csir.co.za> Mail-Followup-To: Jeremy Lea , "Bruce A. Mah" , freebsd-ports@FreeBSD.ORG References: <200102082347.f18NlgO12046@bmah-freebsd-0.cisco.com> <20010208182123.I8780@shale.csir.co.za> <200102090240.f192e9u13590@bmah-freebsd-0.cisco.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200102090240.f192e9u13590@bmah-freebsd-0.cisco.com>; from bmah@FreeBSD.ORG on Thu, Feb 08, 2001 at 06:40:09PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, On Thu, Feb 08, 2001 at 06:40:09PM -0800, Bruce A. Mah wrote: > I disagree (with your first sentence). You can only do pkg_add if you > have a package constructed. The only way to make a package (currently) > from a port is to actually install all the files. http://people.freebsd.org/~reg/ > Hmmm, I wonder does this need to be generalized to include other kinds > of files too? I had thought of just merging in the old +CONTENTS file with the new +CONTENTS and leaving all of the old files behind, but that would be a mess for things which often do big changes in directory structure (like GNOME, KDE or Mozilla). At the moment I think we can follow the route of making things work in the default case, and then working on fixing the corner cases as people find them. Mostly, if you just upgrade a package at the base of a whole tree (like GTK+ or ghostscript often are) then, if things break in the packages which required these, generally you can also upgrade this package to the latest package via Ports/Packages, and things will work. 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 Fri Feb 9 0:55:41 2001 Delivered-To: freebsd-ports@freebsd.org Received: from daffy.uwnet.nl (ns.isd-holland.nl [195.7.130.35]) by hub.freebsd.org (Postfix) with ESMTP id 98F5337B503 for ; Fri, 9 Feb 2001 00:55:21 -0800 (PST) Received: from dyn.dailup.c227129077.isd.to (dyn.dailup.c227129077.isd.to [213.227.129.77]) by daffy.uwnet.nl (8.11.1/8.11.0) with ESMTP id f198tJT31296 for ; Fri, 9 Feb 2001 09:55:19 +0100 Received: (qmail 4920 invoked by uid 1000); 9 Feb 2001 09:55:59 -0000 From: "Andre Goeree" Date: Fri, 9 Feb 2001 09:55:59 +0000 To: freebsd-ports@freebsd.org Subject: Re: installation of xaos failed Message-ID: <20010209095558.A4903@mandark.attica.home> Reply-To: abgoeree@uwnet.nl References: <20010209004757.A15791@mandark.attica.home> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="tKW2IUtsqtDRztdT" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010209004757.A15791@mandark.attica.home>; from abgoeree@uwnet.nl on Fri, Feb 09, 2001 at 12:47:57AM +0000 X-Sender: abgoeree@uwnet.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Feb 09, 2001 at 12:47:57AM +0000, Andre Goeree wrote: > Hello, > > While installing graphics/xaos the following error > occurred: > > /usr/bin/install -c -o root -g wheel -m 444 doc/xaos.6 /usr/local/man/man6 > chmod +s /usr/local/bin/xaos; chown root /usr/local/bin/xaos; chgrp root /usr/local/bin/xaos > chgrp: root: illegal group name > *** Error code 1 > Oops, forgot to attach the diff;) -- Andre --tKW2IUtsqtDRztdT Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="configure.diff" --- work/XaoS-3.0/configure Wed Mar 4 21:49:12 1998 +++ /tmp/configure Fri Feb 9 09:46:42 2001 @@ -5522,7 +5522,7 @@ #define SVGA_DRIVER 1 EOF - STICKY='chmod +s $(bindir)/xaos; chown root $(bindir)/xaos; chgrp root $(bindir)/xaos' + STICKY='chmod +s $(bindir)/xaos; chown root $(bindir)/xaos; chgrp wheel $(bindir)/xaos' DRIVERDIRS="$DRIVERDIRS ui/ui-drv/svga" DRIVERLIBS="$DRIVERLIBS lib/libuisvga.a" if test "x$ac_cv_func_pthread_sighandler" = xyes; then --- work/XaoS-3.0/configure.in Wed Mar 4 21:49:12 1998 +++ /tmp/configure.in Fri Feb 9 09:46:08 2001 @@ -647,7 +647,7 @@ if test "x$ac_cv_lib_vga_vga_hasmode$ac_cv_lib_vgagl_gl_write" = xyesyes; then drivers=yes AC_DEFINE(SVGA_DRIVER) - STICKY='chmod +s $(bindir)/xaos; chown root $(bindir)/xaos; chgrp root $(bindir)/xaos' + STICKY='chmod +s $(bindir)/xaos; chown root $(bindir)/xaos; chgrp wheel $(bindir)/xaos' DRIVERDIRS="$DRIVERDIRS ui/ui-drv/svga" DRIVERLIBS="$DRIVERLIBS lib/libuisvga.a" if test "x$ac_cv_func_pthread_sighandler" = xyes; then --tKW2IUtsqtDRztdT-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 0:55:42 2001 Delivered-To: freebsd-ports@freebsd.org Received: from daffy.uwnet.nl (ns.isd-holland.nl [195.7.130.35]) by hub.freebsd.org (Postfix) with ESMTP id 1D4A037B401 for ; Fri, 9 Feb 2001 00:55:21 -0800 (PST) Received: from dyn.dailup.c227129077.isd.to (dyn.dailup.c227129077.isd.to [213.227.129.77]) by daffy.uwnet.nl (8.11.1/8.11.0) with ESMTP id f198tIT31291 for ; Fri, 9 Feb 2001 09:55:18 +0100 Received: (qmail 973 invoked by uid 1000); 9 Feb 2001 09:41:32 -0000 From: "Andre Goeree" Date: Fri, 9 Feb 2001 09:41:32 +0000 To: ports@freebsd.org Subject: Re: glclock broken? pthread Message-ID: <20010209094132.A928@mandark.attica.home> Reply-To: abgoeree@uwnet.nl References: <20010208234437.A59433@mandark.attica.home> <200102090054.f190sn413421@vic.sabbo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200102090054.f190sn413421@vic.sabbo.net>; from sobomax@freebsd.org on Fri, Feb 09, 2001 at 02:54:44AM +0200 X-Sender: abgoeree@uwnet.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Feb 09, 2001 at 02:54:44AM +0200, Maxim Sobolev wrote: > > > > Hello, > > > > My attempt to build x11-clocks/glclock ended > > with the following error: > > > > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_getspecific' > > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_key_create' > > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_setspecific' > > *** Error code 1 > > > > Stop in /usr/local/ports/x11-clocks/glclock/work/glclock-5.0. > > *** Error code 1 > > > > just fixed a similar error with xscreensaver;) > > The trick of adding "CONFIGURE_ENV= LDFLAGS=-pthread" > > to the Makefile didn't work here. > > What should i try next? > > (XFree86-4.0.2_5 Mesa-3.2.1_1) > > > > You have several choices ahead: > 1. Wait a bit until -pthread weirdness would be resolved; > 2. Manually replace -pthread in ports/x11/XFree86-4/files/patch-* with -lc_r > and then recompile/reinstall XFree86-4; > 3. Apply attached patch for gcc.295 and then recompile/reinstall XFree86-4. > > -Maxim > Recompile/reinstall XFree86-4 again? No, this time i think i'll wait until the -pthread weirdness will be resolved;) BTW, graphics/gle, same thing. Could be solved by adding the extra line (see above) to the Makefile. Thanks, -- Andre. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 1:30: 0 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mta03.mail.mel.aone.net.au (mta03.mail.au.uu.net [203.2.192.83]) by hub.freebsd.org (Postfix) with ESMTP id 9608737B6A3; Fri, 9 Feb 2001 01:29:42 -0800 (PST) Received: from camtech.net.au ([203.55.243.8]) by mta03.mail.mel.aone.net.au with ESMTP id <20010209092940.COBC13265.mta03.mail.mel.aone.net.au@camtech.net.au>; Fri, 9 Feb 2001 20:29:40 +1100 Message-ID: <3A83B92A.87B35C02@camtech.net.au> Date: Fri, 09 Feb 2001 20:02:26 +1030 From: Matthew Thyer X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: "Jose M. Alcaide" Cc: will@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: kappfinder segmentation fault during ports/x11/kdebase2 install on recent -CURRENT References: <3A80143D.908D5886@camtech.net.au> <3A804159.F459DD29@we.lc.ehu.es> <3A80B117.557C82BF@camtech.net.au> <3A82C5D0.C8228E5F@we.lc.ehu.es> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Jose M. Alcaide" wrote: > > > Matthew Thyer wrote: > > > > (cd . && $pwd/kappfinder_install "/usr/local/share/applnk") > > > > Segmentation fault - core dumped > > > > gmake[3]: *** [runkappfinder_yes] Error 139 > After replacing qt-2.2.4 by qt-2.2.3 (built from the qt2 port as of > February, 3 - just before it was updated to 2.2.4), I rebuilt kdebase2 > and now the install process finished with no problems. I found yeasterday that I can install kdebase2 if I first: # ln -s aj /etc/malloc.conf so its probably the old "using a member of a structure that you have just freed" problem. I assume that you dont have /etc/malloc.conf at all ? > I just filed a PR about this issue: > > http://www.FreeBSD.org/cgi/query-pr.cgi?pr=24952 Thanks. > BTW, the KDE logout problem continues alive :-( Dont know about that... I only build KDE2 for the games that my wife and 4 year old play (They both love Shisen-Sho). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 2:10:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6AC4B37B491 for ; Fri, 9 Feb 2001 02:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19AA2831747; Fri, 9 Feb 2001 02:10:02 -0800 (PST) (envelope-from gnats) Received: from amnesix.i-clue.de (server.ms-agentur.de [62.153.134.194]) by hub.freebsd.org (Postfix) with ESMTP id 1487337B401 for ; Fri, 9 Feb 2001 02:02:43 -0800 (PST) Received: (from so@localhost) by amnesix.i-clue.de (8.11.1/8.11.2) id f19A1g104589; Fri, 9 Feb 2001 11:01:42 +0100 (CET) (envelope-from so) Message-Id: <200102091001.f19A1g104589@amnesix.i-clue.de> Date: Fri, 9 Feb 2001 11:01:42 +0100 (CET) From: so@i-clue.de Reply-To: so@i-clue.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24965: ImageMagick does not build Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24965 >Category: ports >Synopsis: ImageMagick does not build >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 09 02:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Christoph Sold >Release: FreeBSD 4.2-STABLE i386 >Organization: i-clue GmbH >Environment: FreeBSD amnesix.i-clue.de 4.2-STABLE FreeBSD 4.2-STABLE #3: Fri Feb 9 09:18:58 CET 2001 root@amnesix.i-clue.de:/usr/src/sys/compile/AMNESIX-4.2-S i386 >Description: ImageMagick port does not build. Since every other printer filter depends on it, it is very difficult to configure printing at this time. >How-To-Repeat: Script started on Fri Feb 9 10:50:50 2001 You have mail. amnesix# pwd /usr/ports/graphics/ImageMagick amnesix# make all install clean ===> Configuring for ImageMagick-5.2.7_2 configure.in:796: warning: AC_TRY_RUN called without default to allow cross compiling configure.in:1099: warning: AC_TRY_RUN called without default to allow cross compiling loading cache ./config.cache configuring ImageMagick 5.2.7 checking host system type... i386--freebsd4.2 checking target system type... i386--freebsd4.2 [snip] checking how to recognise dependant libraries... (cached) pass_all checking for ranlib... (cached) ranlib checking for strip... (cached) strip updating cache ./config.cache ltconfig: unrecognized option `--build=i386--freebsd4.2' Try `ltconfig --help' for more information. configure: error: libtool configure failed ===> 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:657: checking host system type configure:678: checking target system type configure:696: checking build system type configure:721: checking whether build environment is sane configure:776: checking for a BSD compatible install configure:864: checking for mawk configure:894: checking whether make sets ${MAKE} configure:1017: checking for gcc configure:1130: checking whether the C compiler (cc -O2 -pipe ) works configure:1146: cc -o conftest -O2 -pipe -I/usr/local/include conftest.c -L/usr/local/lib 1>&5 configure:1172: checking whether the C compiler (cc -O2 -pipe ) is a cross-compiler configure:1177: checking whether we are using GNU C configure:1205: checking whether cc accepts -g configure:1238: checking how to run the C preprocessor configure:1326: checking dependency style of cc configure:1374: checking how to run the C preprocessor configure:1465: checking for ld used by GCC configure:1533: checking if the linker (/usr/libexec/elf/ld) is GNU ld configure:1562: checking for a BSD compatible install configure:1615: checking whether make sets ${MAKE} configure:1642: checking whether ln -s works configure:1667: checking for Cygwin environment configure:1700: checking for mingw32 environment configure:1731: checking for executable suffix configure:1762: checking for object suffix configure:1880: checking for /usr/libexec/elf/ld option to reload object files configure:1892: checking for BSD-compatible nm configure:1930: checking how to recognise dependant libraries configure:2218: checking for ranlib configure:2285: checking for strip (end of "config.log") *** Error code 1 Stop in /usr/ports/graphics/ImageMagick. *** Error code 1 Stop in /usr/ports/graphics/ImageMagick. *** Error code 1 Stop in /usr/ports/graphics/ImageMagick. *** Error code 1 Stop in /usr/ports/graphics/ImageMagick. amnesix# ^Dexit Script done on Fri Feb 9 10:51:06 2001 >Fix: none yet. >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 Feb 9 2:30: 7 2001 Delivered-To: freebsd-ports@freebsd.org Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (Postfix) with ESMTP id C9DFB37B69D; Fri, 9 Feb 2001 02:29:45 -0800 (PST) Received: from v-ger.we.lc.ehu.es (v-ger [158.227.6.179]) by polaris.we.lc.ehu.es (8.11.1/8.11.1) with ESMTP id f19ATcb25110; Fri, 9 Feb 2001 11:29:38 +0100 (MET) Received: from we.lc.ehu.es (localhost [127.0.0.1]) by v-ger.we.lc.ehu.es (8.11.1/8.11.1) with ESMTP id f19AKPX00327; Fri, 9 Feb 2001 11:20:25 +0100 (CET) (envelope-from jose@we.lc.ehu.es) Message-ID: <3A83C469.40E07256@we.lc.ehu.es> Date: Fri, 09 Feb 2001 11:20:25 +0100 From: "Jose M. Alcaide" Organization: Universidad del Pais Vasco - Dpto. de Electricidad y Electronica X-Mailer: Mozilla 4.76 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: es-ES, es, en-US, en MIME-Version: 1.0 To: Matthew Thyer Cc: will@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: kappfinder segmentation fault during ports/x11/kdebase2 install on recent -CURRENT References: <3A80143D.908D5886@camtech.net.au> <3A804159.F459DD29@we.lc.ehu.es> <3A80B117.557C82BF@camtech.net.au> <3A82C5D0.C8228E5F@we.lc.ehu.es> <3A83B92A.87B35C02@camtech.net.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Matthew Thyer wrote: > > I found yeasterday that I can install kdebase2 if I first: > # ln -s aj /etc/malloc.conf > so its probably the old "using a member of a structure that you have > just freed" problem. > Good point. I forgot that the default malloc behavior changed on -CURRENT. Please, could you submit a follow-up to PR 24952 explaining that? Thanks! -- JMA ****** Jose M. Alcaide // jose@we.lc.ehu.es // jmas@FreeBSD.org ****** ** "Beware of Programmers who carry screwdrivers" -- Leonard Brandwein ** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 4:50:27 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 088C337B699 for ; Fri, 9 Feb 2001 04:50:08 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19Co8b54194; Fri, 9 Feb 2001 04:50:08 -0800 (PST) (envelope-from gnats) Received: from richard.eu.org (dialup470.vln.takas.lt [212.59.29.44]) by hub.freebsd.org (Postfix) with ESMTP id 3EE4437B491 for ; Fri, 9 Feb 2001 04:42:25 -0800 (PST) Received: (from rch@localhost) by richard.eu.org (8.11.0/8.11.0) id f1987c702483; Fri, 9 Feb 2001 10:07:38 +0200 (EET) (envelope-from rch) Message-Id: <200102090807.f1987c702483@richard.eu.org> Date: Fri, 9 Feb 2001 10:07:38 +0200 (EET) From: rch@writeme.com Reply-To: rch@richard.eu.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24966: Fix for missing distfile editors/yudit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24966 >Category: ports >Synopsis: port upgrade >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 Feb 09 04:50:05 PST 2001 >Closed-Date: >Last-Modified: >Originator: Ricardas Cepas >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: FreeBSD 4.2-STABLE i386 >Description: Needs upgrade >How-To-Repeat: >Fix: diff -ru yudit.orig/Makefile yudit/Makefile --- yudit.orig/Makefile Sat Dec 9 12:31:01 2000 +++ yudit/Makefile Wed Feb 7 20:59:20 2001 @@ -6,16 +6,16 @@ # PORTNAME= yudit -PORTVERSION= 1.5.p1 +PORTVERSION= 1.6 CATEGORIES= editors converters print MASTER_SITES= http://yudit.org/download/ \ ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= apps/editors/X -DISTNAME= ${PORTNAME}-1.5 +DISTNAME= ${PORTNAME}-1.6 PATCH_SITES= http://yudit.org/download/ -PATCHFILES= yudit-1.5.patch1 -PATCH_DIST_STRIP= -p1 +#PATCHFILES= yudit-1.5.patch1 +#PATCH_DIST_STRIP= -p1 MAINTAINER= rch@WriteMe.Com diff -ru yudit.orig/distinfo yudit/distinfo --- yudit.orig/distinfo Sat May 20 06:02:50 2000 +++ yudit/distinfo Wed Feb 7 21:23:08 2001 @@ -1,2 +1 @@ -MD5 (yudit-1.5.tar.gz) = db5388739912171aa8399ac5a7cb34ee -MD5 (yudit-1.5.patch1) = 37dac132504024246921611cc6d88fe2 +MD5 (yudit-1.6.tar.gz) = dfb5d9de0b74638d66351494eb01e1ef >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 Feb 9 6:21:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DE85F37BAAA for ; Fri, 9 Feb 2001 06:20:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19EK1f68697; Fri, 9 Feb 2001 06:20:01 -0800 (PST) (envelope-from gnats) Received: from lotl.clari.net.au (lotl.clari.net.au [203.26.127.210]) by hub.freebsd.org (Postfix) with ESMTP id 750BD37B7C7 for ; Fri, 9 Feb 2001 06:10:31 -0800 (PST) Received: (from uucp@localhost) by lotl.clari.net.au (8.9.3/8.9.1) with UUCP id BAA45141 for FreeBSD-gnats-submit@freebsd.org; Sat, 10 Feb 2001 01:10:29 +1100 (EST) (envelope-from maurice@atum.castro.aus.net) Received: from atum.castro.aus.net (atum.castro.aus.net [203.8.14.82]) by horus.castro.aus.net (8.9.3/8.9.3) with ESMTP id AAA57552 for ; Sat, 10 Feb 2001 00:41:50 +1100 (EST) (envelope-from maurice@atum.castro.aus.net) Received: (from root@localhost) by atum.castro.aus.net (8.9.3/8.9.3) id AAA25707; Sat, 10 Feb 2001 00:41:49 +1100 (EST) (envelope-from maurice) Message-Id: <200102091341.AAA25707@atum.castro.aus.net> Date: Sat, 10 Feb 2001 00:41:49 +1100 (EST) From: Maurice Castro Reply-To: maurice@atum.castro.aus.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24967: Update of R port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24967 >Category: ports >Synopsis: Update of R 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: Fri Feb 09 06:20:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Maurice Castro >Release: FreeBSD 3.3-RELEASE i386 >Organization: Software Engineering Research Centre >Environment: All >Description: New version of R port >How-To-Repeat: Apply diff provided in fix >Fix: diff -ruN R-letter.bak/Makefile R-letter/Makefile --- R-letter.bak/Makefile Sun Oct 1 21:19:25 2000 +++ R-letter/Makefile Fri Feb 9 11:05:09 2001 @@ -1,22 +1,25 @@ # New ports collection makefile for: R (letter) -# Date created: Fri Aug 11 16:17:34 EST 2000 +# Date created: Fri Feb 9 10:50:25 EST 2001 # Whom: Maurice Castro # # $FreeBSD: ports/math/R-letter/Makefile,v 1.18 2000/10/01 09:59:07 reg Exp $ # PORTNAME= R -PORTVERSION= 1.1.0 +PORTVERSION= 1.2.1 CATEGORIES= math -MASTER_SITES= http://lib.stat.cmu.edu/R/CRAN/src/base/ \ - ftp://ftp.biostat.washington.edu/mirrors/R/CRAN/src/base/ \ - http://cran.stat.wisc.edu/src/base/ \ - ftp://ftp.ci.tuwien.ac.at/R/src/base/ \ - http://SunSITE.auc.dk/R/src/base/ \ - http://www.stat.unipg.it/pub/stat/statlib/R/CRAN/src/base/ \ +MASTER_SITES= http://cran.r-project.org/src/base/ \ + ftp://cran.r-project.org/pub/R/src/base/ \ + http://cran.at.r-project.org/src/base/ \ + http://cran.ch.r-project.or/src/base/ \ + http://cran.dk.r-project.org/src/base/ \ + http://cran.hu.r-project.org/src/base/ \ + http://cran.uk.r-project.org/src/base/ \ + http://cran.us.r-project.org/src/base/ \ + http://mirror.aarnet.edu.au/CRAN/src/base/ \ ftp://ftp.u-aizu.ac.jp/pub/lang/R/CRAN/src/base/ \ ftp://dola.snu.ac.kr/pub/R/CRAN/src/base/ \ - http://www.stat.math.ethz.ch/R-CRAN/src/base/ + http://lib.stat.cmu.edu/R/CRAN/src/base/ PKGNAMESUFFIX= -${PAPERSIZE} DISTNAME= R-${PORTVERSION} EXTRACT_SUFX= .tgz diff -ruN R-letter.bak/distinfo R-letter/distinfo --- R-letter.bak/distinfo Sun Aug 13 02:28:11 2000 +++ R-letter/distinfo Fri Feb 9 10:50:40 2001 @@ -1 +1 @@ -MD5 (R-1.1.0.tgz) = 85fdcf912dcf53d39ba128344081481d +MD5 (R-1.2.1.tgz) = 4906d9dafb62e7e02abad34c5a0b042f diff -ruN R-letter.bak/files/R R-letter/files/R --- R-letter.bak/files/R Sat Jul 18 06:41:51 1998 +++ R-letter/files/R Thu Jan 1 10:00:00 1970 @@ -1,52 +0,0 @@ -#!/bin/sh -# Shell wrapper for R executable. - -RHOME=PREFIX/share/R -export RHOME - -ARG=$1 -case ${ARG} in - RHOME) - echo ${RHOME}; exit 0 ;; - CMD) - shift; PATH=$PATH:$RHOME/cmd:$RHOME/etc exec $* ;; - SHLIB|COMPILE|INSTALL|REMOVE) - shift; exec sh ${RHOME}/etc/${ARG} $* ;; - -d|--debugger) - exec $2 ${RHOME}/bin/R.binary ;; - -h|--help|-\?) - echo "Usage: R [OPTIONS] [< INFILE] [> OUTFILE]" - echo "" - echo "Options:" - echo " --save Do save data sets at the end of the session." - echo " --no-save Don't save them." - echo " --restore Do restore previously saved data sets at startup." - echo " --no-restore Don't restore them." - echo " --no-readline Don't use readline for command-line editing." - echo " --no-site-file Don't read the site-wide Rprofile." - echo " --no-init-file Don't read the .Rprofile or ~/.Rprofile files." - echo " -v N Set the vector heap size to N megabytes." - echo " -n N Set the number of cons cells to N." - echo " -h, --help, -? Print short help message and exit." - echo " -q, --quiet Make R run as quietly as possible." - echo " -V, --version Print version info and exit." - echo " -d NAME, --debugger NAME Run R through debugger NAME." - exit 0 ;; -esac - -# Default Printer Paper Size -# Choose one of the following -# R_PAPERSIZE="a4" -# R_PAPERSIZE="letter" -# R_PAPERSIZE="none" -R_PAPERSIZE=DEFAULTPAPER -export R_PAPERSIZE - -# Default Print Command -# Choose one of the following -# R_PRINTCMD="lpr" -# R_PRINTCMD="lp" -R_PRINTCMD=lpr -export R_PRINTCMD - -exec ${RHOME}/bin/R.binary $* diff -ruN R-letter.bak/pkg-plist R-letter/pkg-plist --- R-letter.bak/pkg-plist Sun Aug 13 02:28:12 2000 +++ R-letter/pkg-plist Thu Feb 8 16:19:51 2001 @@ -1,36 +1,43 @@ bin/R lib/R/bin/R.bin lib/R/bin/R -lib/R/bin/R_X11.so lib/R/bin/BATCH +lib/R/bin/LINK +lib/R/bin/Rcmd lib/R/bin/Rdiff lib/R/bin/Rd2dvi -lib/R/bin/build +lib/R/bin/Rd2txt lib/R/bin/filename lib/R/bin/help lib/R/bin/help.links -lib/R/bin/maketitle +lib/R/bin/maketitle.awk lib/R/bin/massage-Examples lib/R/bin/pager lib/R/bin/COMPILE lib/R/bin/INSTALL lib/R/bin/REMOVE lib/R/bin/Rd2contents -lib/R/bin/Rd2txt lib/R/bin/Rdconv lib/R/bin/Rdindex +lib/R/bin/Rprof lib/R/bin/SHLIB lib/R/bin/Sd2Rd lib/R/bin/build-help +lib/R/bin/build lib/R/bin/check +lib/R/bin/extract-usage +lib/R/bin/libtool +lib/R/bin/R_X11.so lib/R/include/R_ext/Applic.h lib/R/include/R_ext/Arith.h +lib/R/include/R_ext/Boolean.h lib/R/include/R_ext/Complex.h lib/R/include/R_ext/Constants.h lib/R/include/R_ext/Error.h lib/R/include/R_ext/Linpack.h lib/R/include/R_ext/Mathlib.h lib/R/include/R_ext/Memory.h +lib/R/include/R_ext/Print.h lib/R/include/R_ext/PrtUtil.h lib/R/include/R_ext/RS.h lib/R/include/R_ext/Random.h @@ -40,10 +47,11 @@ lib/R/include/R.h lib/R/include/Rconfig.h lib/R/include/Rdefines.h +lib/R/include/Rgraphics.h lib/R/include/Rinternals.h +lib/R/include/Rmath.h lib/R/include/Rversion.h lib/R/include/S.h -lib/R/include/S_compat.h lib/R/library/nls/help/sortedXyData lib/R/library/nls/help/00Titles lib/R/library/nls/help/BOD @@ -75,6 +83,7 @@ lib/R/library/nls/help/nls lib/R/library/nls/help/nls.control lib/R/library/nls/help/nlsModel +lib/R/library/nls/help/numericDeriv lib/R/library/nls/help/plot.profile.nls lib/R/library/nls/help/predict.nls lib/R/library/nls/help/profile.nls @@ -113,6 +122,7 @@ lib/R/library/nls/R-ex/logLik.R lib/R/library/nls/R-ex/nls.control.R lib/R/library/nls/R-ex/nlsModel.R +lib/R/library/nls/R-ex/numericDeriv.R lib/R/library/nls/R-ex/plot.profile.nls.R lib/R/library/nls/R-ex/predict.nls.R lib/R/library/nls/R-ex/profile.nls.R @@ -152,6 +162,7 @@ lib/R/library/nls/latex/logLik.tex lib/R/library/nls/latex/nls.control.tex lib/R/library/nls/latex/nlsModel.tex +lib/R/library/nls/latex/numericDeriv.tex lib/R/library/nls/latex/plot.profile.nls.tex lib/R/library/nls/latex/predict.nls.tex lib/R/library/nls/latex/profile.nls.tex @@ -192,6 +203,7 @@ lib/R/library/nls/html/nls.html lib/R/library/nls/html/nls.control.html lib/R/library/nls/html/nlsModel.html +lib/R/library/nls/html/numericDeriv.html lib/R/library/nls/html/plot.profile.nls.html lib/R/library/nls/html/predict.nls.html lib/R/library/nls/html/profile.nls.html @@ -239,6 +251,7 @@ lib/R/library/ctest/R-ex/power.t.test.R lib/R/library/ctest/R-ex/prop.test.R lib/R/library/ctest/R-ex/t.test.R +lib/R/library/ctest/R-ex/prop.trend.test.R lib/R/library/ctest/R-ex/quade.test.R lib/R/library/ctest/R-ex/shapiro.test.R lib/R/library/ctest/R-ex/var.test.R @@ -265,6 +278,7 @@ lib/R/library/ctest/latex/print.pairwise.htest.tex lib/R/library/ctest/latex/print.power.htest.tex lib/R/library/ctest/latex/prop.test.tex +lib/R/library/ctest/latex/prop.trend.test.tex lib/R/library/ctest/latex/quade.test.tex lib/R/library/ctest/latex/shapiro.test.tex lib/R/library/ctest/latex/t.test.tex @@ -294,6 +308,7 @@ lib/R/library/ctest/html/power.t.test.html lib/R/library/ctest/html/print.pairwise.htest.html lib/R/library/ctest/html/print.power.htest.html +lib/R/library/ctest/html/prop.trend.test.html lib/R/library/ctest/html/quade.test.html lib/R/library/ctest/html/shapiro.test.html lib/R/library/ctest/html/var.test.html @@ -324,6 +339,7 @@ lib/R/library/ctest/help/print.pairwise.htest lib/R/library/ctest/help/print.power.htest lib/R/library/ctest/help/prop.test +lib/R/library/ctest/help/prop.trend.test lib/R/library/ctest/help/quade.test lib/R/library/ctest/help/shapiro.test lib/R/library/ctest/help/var.test @@ -431,69 +447,97 @@ lib/R/library/modreg/INDEX lib/R/library/modreg/COPYRIGHTS lib/R/library/modreg/CONTENTS -lib/R/library/mva/R/mva -lib/R/library/mva/R-ex/rect.hclust.R +lib/R/library/mva/help/varimax +lib/R/library/mva/help/00Titles +lib/R/library/mva/help/Harman23.cor +lib/R/library/mva/help/Harman74.cor +lib/R/library/mva/help/ability.cov +lib/R/library/mva/help/as.hclust +lib/R/library/mva/help/biplot +lib/R/library/mva/help/biplot.princomp +lib/R/library/mva/help/cancor +lib/R/library/mva/help/cmdscale +lib/R/library/mva/help/cutree +lib/R/library/mva/help/dendrogram +lib/R/library/mva/help/dist +lib/R/library/mva/help/factanal +lib/R/library/mva/help/hclust +lib/R/library/mva/help/identify.hclust +lib/R/library/mva/help/kmeans +lib/R/library/mva/help/prcomp +lib/R/library/mva/help/princomp +lib/R/library/mva/help/rect.hclust +lib/R/library/mva/help/AnIndex +lib/R/library/mva/R-ex/varimax.R +lib/R/library/mva/R-ex/Harman74.cor.R +lib/R/library/mva/R-ex/ability.cov.R +lib/R/library/mva/R-ex/as.hclust.R lib/R/library/mva/R-ex/biplot.princomp.R lib/R/library/mva/R-ex/cancor.R lib/R/library/mva/R-ex/cmdscale.R lib/R/library/mva/R-ex/cutree.R +lib/R/library/mva/R-ex/dendrogram.R lib/R/library/mva/R-ex/dist.R +lib/R/library/mva/R-ex/factanal.R lib/R/library/mva/R-ex/hclust.R lib/R/library/mva/R-ex/identify.hclust.R lib/R/library/mva/R-ex/kmeans.R lib/R/library/mva/R-ex/prcomp.R lib/R/library/mva/R-ex/princomp.R -lib/R/library/mva/R-ex/as.hclust.R -lib/R/library/mva/latex/rect.hclust.tex +lib/R/library/mva/R-ex/rect.hclust.R +lib/R/library/mva/R-ex/Harman23.cor.R +lib/R/library/mva/latex/varimax.tex +lib/R/library/mva/latex/Harman74.cor.tex +lib/R/library/mva/latex/ability.cov.tex +lib/R/library/mva/latex/as.hclust.tex lib/R/library/mva/latex/biplot.tex lib/R/library/mva/latex/biplot.princomp.tex lib/R/library/mva/latex/cancor.tex lib/R/library/mva/latex/cmdscale.tex lib/R/library/mva/latex/cutree.tex +lib/R/library/mva/latex/dendrogram.tex lib/R/library/mva/latex/dist.tex +lib/R/library/mva/latex/factanal.tex lib/R/library/mva/latex/hclust.tex lib/R/library/mva/latex/identify.hclust.tex lib/R/library/mva/latex/kmeans.tex lib/R/library/mva/latex/prcomp.tex lib/R/library/mva/latex/princomp.tex -lib/R/library/mva/latex/as.hclust.tex -lib/R/library/mva/html/rect.hclust.html +lib/R/library/mva/latex/rect.hclust.tex +lib/R/library/mva/latex/Harman23.cor.tex +lib/R/library/mva/html/varimax.html +lib/R/library/mva/html/Harman23.cor.html +lib/R/library/mva/html/Harman74.cor.html +lib/R/library/mva/html/ability.cov.html lib/R/library/mva/html/as.hclust.html lib/R/library/mva/html/biplot.html lib/R/library/mva/html/biplot.princomp.html lib/R/library/mva/html/cancor.html lib/R/library/mva/html/cmdscale.html lib/R/library/mva/html/cutree.html +lib/R/library/mva/html/dendrogram.html lib/R/library/mva/html/dist.html +lib/R/library/mva/html/factanal.html lib/R/library/mva/html/hclust.html lib/R/library/mva/html/identify.hclust.html lib/R/library/mva/html/kmeans.html lib/R/library/mva/html/prcomp.html lib/R/library/mva/html/princomp.html +lib/R/library/mva/html/rect.hclust.html lib/R/library/mva/html/00Index.html +lib/R/library/mva/data/00Index +lib/R/library/mva/data/Harman23.cor.R +lib/R/library/mva/data/Harman74.cor.R +lib/R/library/mva/data/ability.cov.R +lib/R/library/mva/R/mva lib/R/library/mva/libs/mva.so -lib/R/library/mva/help/rect.hclust -lib/R/library/mva/help/00Titles -lib/R/library/mva/help/as.hclust -lib/R/library/mva/help/biplot -lib/R/library/mva/help/biplot.princomp -lib/R/library/mva/help/cancor -lib/R/library/mva/help/cmdscale -lib/R/library/mva/help/cutree -lib/R/library/mva/help/dist -lib/R/library/mva/help/hclust -lib/R/library/mva/help/identify.hclust -lib/R/library/mva/help/kmeans -lib/R/library/mva/help/prcomp -lib/R/library/mva/help/princomp -lib/R/library/mva/help/AnIndex lib/R/library/mva/DESCRIPTION lib/R/library/mva/TITLE lib/R/library/mva/INDEX lib/R/library/mva/CONTENTS lib/R/library/base/R/base lib/R/library/base/R/Rprofile -lib/R/library/base/R-ex/undoc.R +lib/R/library/base/R-ex/png.R lib/R/library/base/R-ex/Bessel.R lib/R/library/base/R-ex/Beta.R lib/R/library/base/R-ex/Binomial.R @@ -502,6 +546,7 @@ lib/R/library/base/R-ex/Comparison.R lib/R/library/base/R-ex/Constants.R lib/R/library/base/R-ex/Control.R +lib/R/library/base/R-ex/DateTimeClasses.R lib/R/library/base/R-ex/Exponential.R lib/R/library/base/R-ex/Extract.R lib/R/library/base/R-ex/Extremes.R @@ -514,9 +559,8 @@ lib/R/library/base/R-ex/Hyperbolic.R lib/R/library/base/R-ex/Hypergeometric.R lib/R/library/base/R-ex/IQR.R -lib/R/library/base/R-ex/InsectSprays.R lib/R/library/base/R-ex/Japanese.R -lib/R/library/base/R-ex/c.R +lib/R/library/base/R-ex/InsectSprays.R lib/R/library/base/R-ex/Last.value.R lib/R/library/base/R-ex/LifeCycleSavings.R lib/R/library/base/R-ex/Log.R @@ -541,10 +585,13 @@ lib/R/library/base/R-ex/Round.R lib/R/library/base/R-ex/SignRank.R lib/R/library/base/R-ex/Special.R +lib/R/library/base/R-ex/Sys.info.R +lib/R/library/base/R-ex/Sys.sleep.R +lib/R/library/base/R-ex/Sys.time.R lib/R/library/base/R-ex/TDist.R -lib/R/library/base/R-ex/Trig.R lib/R/library/base/R-ex/Titanic.R lib/R/library/base/R-ex/ToothGrowth.R +lib/R/library/base/R-ex/Trig.R lib/R/library/base/R-ex/Tukey.R lib/R/library/base/R-ex/UCBAdmissions.R lib/R/library/base/R-ex/USArrests.R @@ -565,6 +612,8 @@ lib/R/library/base/R-ex/all.R lib/R/library/base/R-ex/all.equal.R lib/R/library/base/R-ex/allnames.R +lib/R/library/base/R-ex/anova.glm.R +lib/R/library/base/R-ex/anova.lm.R lib/R/library/base/R-ex/anscombe.R lib/R/library/base/R-ex/any.R lib/R/library/base/R-ex/aov.R @@ -576,8 +625,10 @@ lib/R/library/base/R-ex/args.R lib/R/library/base/R-ex/array.R lib/R/library/base/R-ex/arrows.R +lib/R/library/base/R-ex/as.POSIXlt.R lib/R/library/base/R-ex/as.function.R lib/R/library/base/R-ex/assign.R +lib/R/library/base/R-ex/assocplot.R lib/R/library/base/R-ex/attach.R lib/R/library/base/R-ex/attenu.R lib/R/library/base/R-ex/attitude.R @@ -585,6 +636,8 @@ lib/R/library/base/R-ex/attributes.R lib/R/library/base/R-ex/autoload.R lib/R/library/base/R-ex/ave.R +lib/R/library/base/R-ex/c.R +lib/R/library/base/R-ex/axis.POSIXct.R lib/R/library/base/R-ex/axis.R lib/R/library/base/R-ex/backsolve.R lib/R/library/base/R-ex/barplot.R @@ -594,7 +647,6 @@ lib/R/library/base/R-ex/boxplot.stats.R lib/R/library/base/R-ex/bxp.R lib/R/library/base/R-ex/by.R -lib/R/library/base/R-ex/t.R lib/R/library/base/R-ex/call.R lib/R/library/base/R-ex/cars.R lib/R/library/base/R-ex/case.names.R @@ -604,9 +656,11 @@ lib/R/library/base/R-ex/charmatch.R lib/R/library/base/R-ex/chartr.R lib/R/library/base/R-ex/check.options.R +lib/R/library/base/R-ex/chickwts.R lib/R/library/base/R-ex/chol.R lib/R/library/base/R-ex/chol2inv.R lib/R/library/base/R-ex/chull.R +lib/R/library/base/R-ex/class.R lib/R/library/base/R-ex/co2.R lib/R/library/base/R-ex/codes.R lib/R/library/base/R-ex/coefficients.R @@ -618,6 +672,7 @@ lib/R/library/base/R-ex/complete.cases.R lib/R/library/base/R-ex/complex.R lib/R/library/base/R-ex/conflicts.R +lib/R/library/base/R-ex/connections.R lib/R/library/base/R-ex/contour.R lib/R/library/base/R-ex/contrast.R lib/R/library/base/R-ex/contrasts.R @@ -660,8 +715,8 @@ lib/R/library/base/R-ex/duplicated.R lib/R/library/base/R-ex/dynload.R lib/R/library/base/R-ex/edit.R -lib/R/library/base/R-ex/edit.data.frame.R lib/R/library/base/R-ex/eff.aovlist.R +lib/R/library/base/R-ex/edit.data.frame.R lib/R/library/base/R-ex/effects.R lib/R/library/base/R-ex/eigen.R lib/R/library/base/R-ex/environment.R @@ -672,15 +727,17 @@ lib/R/library/base/R-ex/exists.R lib/R/library/base/R-ex/expand.grid.R lib/R/library/base/R-ex/expand.model.frame.R -lib/R/library/base/R-ex/factor.R lib/R/library/base/R-ex/expression.R lib/R/library/base/R-ex/extractAIC.R +lib/R/library/base/R-ex/factor.R lib/R/library/base/R-ex/factor.scope.R lib/R/library/base/R-ex/faithful.R lib/R/library/base/R-ex/family.R lib/R/library/base/R-ex/fft.R -lib/R/library/base/R-ex/file.R +lib/R/library/base/R-ex/file.access.R +lib/R/library/base/R-ex/file.info.R lib/R/library/base/R-ex/file.show.R +lib/R/library/base/R-ex/files.R lib/R/library/base/R-ex/filled.contour.R lib/R/library/base/R-ex/fivenum.R lib/R/library/base/R-ex/fix.R @@ -689,11 +746,13 @@ lib/R/library/base/R-ex/format.info.R lib/R/library/base/R-ex/formatc.R lib/R/library/base/R-ex/formula.R +lib/R/library/base/R-ex/fourfoldplot.R lib/R/library/base/R-ex/freeny.R lib/R/library/base/R-ex/ftable.R lib/R/library/base/R-ex/ftable.formula.R lib/R/library/base/R-ex/function.R lib/R/library/base/R-ex/gc.R +lib/R/library/base/R-ex/gc.time.R lib/R/library/base/R-ex/get.R lib/R/library/base/R-ex/getenv.R lib/R/library/base/R-ex/getwd.R @@ -716,6 +775,7 @@ lib/R/library/base/R-ex/interaction.plot.R lib/R/library/base/R-ex/interactive.R lib/R/library/base/R-ex/invisible.R +lib/R/library/base/R-ex/iris.R lib/R/library/base/R-ex/is.empty.R lib/R/library/base/R-ex/is.finite.R lib/R/library/base/R-ex/is.language.R @@ -730,16 +790,19 @@ lib/R/library/base/R-ex/layout.R lib/R/library/base/R-ex/legend.R lib/R/library/base/R-ex/length.R +lib/R/library/base/R-ex/lines.R lib/R/library/base/R-ex/levels.factor.R lib/R/library/base/R-ex/library.R lib/R/library/base/R-ex/library.dynam.R -lib/R/library/base/R-ex/lines.R lib/R/library/base/R-ex/list.R lib/R/library/base/R-ex/list.files.R lib/R/library/base/R-ex/lm.R lib/R/library/base/R-ex/lm.influence.R lib/R/library/base/R-ex/lm.summaries.R +lib/R/library/base/R-ex/lmfit.R lib/R/library/base/R-ex/load.R +lib/R/library/base/R-ex/localeconv.R +lib/R/library/base/R-ex/locales.R lib/R/library/base/R-ex/loglin.R lib/R/library/base/R-ex/longley.R lib/R/library/base/R-ex/lower.tri.R @@ -753,6 +816,7 @@ lib/R/library/base/R-ex/make.link.R lib/R/library/base/R-ex/make.names.R lib/R/library/base/R-ex/make.socket.R +lib/R/library/base/R-ex/manova.R lib/R/library/base/R-ex/margin.table.R lib/R/library/base/R-ex/mat.or.vec.R lib/R/library/base/R-ex/match.R @@ -776,9 +840,10 @@ lib/R/library/base/R-ex/model.matrix.R lib/R/library/base/R-ex/model.tables.R lib/R/library/base/R-ex/morley.R +lib/R/library/base/R-ex/mtext.R lib/R/library/base/R-ex/mosaicplot.R lib/R/library/base/R-ex/mtcars.R -lib/R/library/base/R-ex/mtext.R +lib/R/library/base/R-ex/n2mfrow.R lib/R/library/base/R-ex/na.action.R lib/R/library/base/R-ex/na.fail.R lib/R/library/base/R-ex/name.R @@ -793,6 +858,7 @@ lib/R/library/base/R-ex/notyet.R lib/R/library/base/R-ex/nrow.R lib/R/library/base/R-ex/numeric.R +lib/R/library/base/R-ex/object.size.R lib/R/library/base/R-ex/on.exit.R lib/R/library/base/R-ex/optim.R lib/R/library/base/R-ex/optimize.R @@ -808,6 +874,7 @@ lib/R/library/base/R-ex/panel.smooth.R lib/R/library/base/R-ex/par.R lib/R/library/base/R-ex/parse.R +lib/R/library/base/R-ex/parse.dcf.R lib/R/library/base/R-ex/paste.R lib/R/library/base/R-ex/persp.R lib/R/library/base/R-ex/phones.R @@ -815,11 +882,14 @@ lib/R/library/base/R-ex/piechart.R lib/R/library/base/R-ex/plot.R lib/R/library/base/R-ex/plot.lm.R +lib/R/library/base/R-ex/plot.table.R +lib/R/library/base/R-ex/plot.ts.R lib/R/library/base/R-ex/plot.window.R lib/R/library/base/R-ex/plot.xy.R lib/R/library/base/R-ex/plotdefault.R lib/R/library/base/R-ex/plotfactor.R lib/R/library/base/R-ex/plotformula.R +lib/R/library/base/R-ex/plothistogram.R lib/R/library/base/R-ex/plotmath.R lib/R/library/base/R-ex/pmatch.R lib/R/library/base/R-ex/points.R @@ -846,8 +916,10 @@ lib/R/library/base/R-ex/proj.R lib/R/library/base/R-ex/prompt.R lib/R/library/base/R-ex/prop.table.R -lib/R/library/base/R-ex/qqnorm.R +lib/R/library/base/R-ex/pushBack.R lib/R/library/base/R-ex/qr.R +lib/R/library/base/R-ex/putenv.R +lib/R/library/base/R-ex/qqnorm.R lib/R/library/base/R-ex/qraux.R lib/R/library/base/R-ex/quakes.R lib/R/library/base/R-ex/quantile.R @@ -858,16 +930,21 @@ lib/R/library/base/R-ex/read.fwf.R lib/R/library/base/R-ex/read.socket.R lib/R/library/base/R-ex/read.table.url.R +lib/R/library/base/R-ex/readBin.R +lib/R/library/base/R-ex/readLines.R lib/R/library/base/R-ex/readline.R lib/R/library/base/R-ex/rect.R lib/R/library/base/R-ex/relevel.R lib/R/library/base/R-ex/rep.R lib/R/library/base/R-ex/replications.R +lib/R/library/base/R-ex/reshapeLong.R +lib/R/library/base/R-ex/reshapeWide.R lib/R/library/base/R-ex/restart.R lib/R/library/base/R-ex/rev.R lib/R/library/base/R-ex/rgb.R lib/R/library/base/R-ex/rle.R lib/R/library/base/R-ex/row.R +lib/R/library/base/R-ex/t.R lib/R/library/base/R-ex/rowsum.R lib/R/library/base/R-ex/rug.R lib/R/library/base/R-ex/sample.R @@ -882,6 +959,7 @@ lib/R/library/base/R-ex/seq.R lib/R/library/base/R-ex/sequence.R lib/R/library/base/R-ex/sets.R +lib/R/library/base/R-ex/showConnections.R lib/R/library/base/R-ex/sign.R lib/R/library/base/R-ex/sink.R lib/R/library/base/R-ex/sleep.R @@ -899,6 +977,7 @@ lib/R/library/base/R-ex/stopifnot.R lib/R/library/base/R-ex/str.R lib/R/library/base/R-ex/stripplot.R +lib/R/library/base/R-ex/strptime.R lib/R/library/base/R-ex/strsplit.R lib/R/library/base/R-ex/structure.R lib/R/library/base/R-ex/strwidth.R @@ -919,25 +998,29 @@ lib/R/library/base/R-ex/system.file.R lib/R/library/base/R-ex/system.time.R lib/R/library/base/R-ex/table.R +lib/R/library/base/R-ex/text.R lib/R/library/base/R-ex/tabulate.R lib/R/library/base/R-ex/tapply.R lib/R/library/base/R-ex/tempfile.R lib/R/library/base/R-ex/termplot.R -lib/R/library/base/R-ex/text.R +lib/R/library/base/R-ex/textconnections.R lib/R/library/base/R-ex/time.R lib/R/library/base/R-ex/title.R +lib/R/library/base/R-ex/toString.R lib/R/library/base/R-ex/trace.R lib/R/library/base/R-ex/traceback.R lib/R/library/base/R-ex/transform.R lib/R/library/base/R-ex/trees.R lib/R/library/base/R-ex/ts.R -lib/R/library/base/R-ex/units.R lib/R/library/base/R-ex/typeof.R +lib/R/library/base/R-ex/undoc.R lib/R/library/base/R-ex/unique.R lib/R/library/base/R-ex/uniroot.R +lib/R/library/base/R-ex/units.R lib/R/library/base/R-ex/unlist.R lib/R/library/base/R-ex/unname.R lib/R/library/base/R-ex/update.R +lib/R/library/base/R-ex/update.formula.R lib/R/library/base/R-ex/uspop.R lib/R/library/base/R-ex/vector.R lib/R/library/base/R-ex/volcano.R @@ -951,14 +1034,16 @@ lib/R/library/base/R-ex/window.R lib/R/library/base/R-ex/women.R lib/R/library/base/R-ex/write.R +lib/R/library/base/R-ex/write.table.R +lib/R/library/base/R-ex/xtabs.R lib/R/library/base/R-ex/xy.coords.R lib/R/library/base/R-ex/xyz.coords.R lib/R/library/base/R-ex/zAlias.R lib/R/library/base/R-ex/zC.R lib/R/library/base/R-ex/zMachine.R lib/R/library/base/R-ex/zMethods.R +lib/R/library/base/R-ex/Rprof.R lib/R/library/base/R-ex/gnome.R -lib/R/library/base/R-ex/png.R lib/R/library/base/R-ex/Arithmetic.R lib/R/library/base/latex/x11.tex lib/R/library/base/latex/Bessel.tex @@ -969,6 +1054,7 @@ lib/R/library/base/latex/Comparison.tex lib/R/library/base/latex/Constants.tex lib/R/library/base/latex/Control.tex +lib/R/library/base/latex/DateTimeClasses.tex lib/R/library/base/latex/Defunct.tex lib/R/library/base/latex/Deprecated.tex lib/R/library/base/latex/Devices.tex @@ -980,8 +1066,8 @@ lib/R/library/base/latex/Formaldehyde.tex lib/R/library/base/latex/GammaDist.tex lib/R/library/base/latex/Geometric.tex -lib/R/library/base/latex/HairEyeColor.tex lib/R/library/base/latex/Hershey.tex +lib/R/library/base/latex/HairEyeColor.tex lib/R/library/base/latex/Hyperbolic.tex lib/R/library/base/latex/Hypergeometric.tex lib/R/library/base/latex/IQR.tex @@ -1002,19 +1088,23 @@ lib/R/library/base/latex/Normal.tex lib/R/library/base/latex/OrchardSprays.tex lib/R/library/base/latex/Paren.tex +lib/R/library/base/latex/PkgUtils.tex lib/R/library/base/latex/PlantGrowth.tex -lib/R/library/base/latex/all.tex -lib/R/library/base/latex/Poisson.tex lib/R/library/base/latex/Platform.tex +lib/R/library/base/latex/Poisson.tex lib/R/library/base/latex/Primitive.tex lib/R/library/base/latex/Random-user.tex lib/R/library/base/latex/Random.tex +lib/R/library/base/latex/RdUtils.tex lib/R/library/base/latex/Recall.tex lib/R/library/base/latex/Rhome.tex lib/R/library/base/latex/Round.tex lib/R/library/base/latex/SignRank.tex lib/R/library/base/latex/Special.tex lib/R/library/base/latex/Startup.tex +lib/R/library/base/latex/Sys.info.tex +lib/R/library/base/latex/Sys.sleep.tex +lib/R/library/base/latex/Sys.time.tex lib/R/library/base/latex/TDist.tex lib/R/library/base/latex/Titanic.tex lib/R/library/base/latex/ToothGrowth.tex @@ -1036,9 +1126,12 @@ lib/R/library/base/latex/airmiles.tex lib/R/library/base/latex/airquality.tex lib/R/library/base/latex/alias.tex +lib/R/library/base/latex/all.tex lib/R/library/base/latex/all.equal.tex lib/R/library/base/latex/allnames.tex lib/R/library/base/latex/anova.tex +lib/R/library/base/latex/anova.glm.tex +lib/R/library/base/latex/anova.lm.tex lib/R/library/base/latex/anscombe.tex lib/R/library/base/latex/any.tex lib/R/library/base/latex/aov.tex @@ -1050,8 +1143,10 @@ lib/R/library/base/latex/args.tex lib/R/library/base/latex/array.tex lib/R/library/base/latex/arrows.tex +lib/R/library/base/latex/as.POSIXlt.tex lib/R/library/base/latex/as.function.tex lib/R/library/base/latex/assign.tex +lib/R/library/base/latex/assocplot.tex lib/R/library/base/latex/attach.tex lib/R/library/base/latex/attenu.tex lib/R/library/base/latex/attitude.tex @@ -1059,6 +1154,7 @@ lib/R/library/base/latex/attributes.tex lib/R/library/base/latex/autoload.tex lib/R/library/base/latex/ave.tex +lib/R/library/base/latex/axis.POSIXct.tex lib/R/library/base/latex/axis.tex lib/R/library/base/latex/backsolve.tex lib/R/library/base/latex/barplot.tex @@ -1074,8 +1170,8 @@ lib/R/library/base/latex/c.tex lib/R/library/base/latex/call.tex lib/R/library/base/latex/cars.tex -lib/R/library/base/latex/cat.tex lib/R/library/base/latex/case.names.tex +lib/R/library/base/latex/cat.tex lib/R/library/base/latex/cbind.tex lib/R/library/base/latex/char.expand.tex lib/R/library/base/latex/character.tex @@ -1090,6 +1186,7 @@ lib/R/library/base/latex/close.socket.tex lib/R/library/base/latex/co2.tex lib/R/library/base/latex/codes.tex +lib/R/library/base/latex/codoc.tex lib/R/library/base/latex/coefficients.tex lib/R/library/base/latex/col.tex lib/R/library/base/latex/colnames.tex @@ -1097,15 +1194,16 @@ lib/R/library/base/latex/commandArgs.tex lib/R/library/base/latex/comment.tex lib/R/library/base/latex/complete.cases.tex -lib/R/library/base/latex/cor.tex lib/R/library/base/latex/complex.tex lib/R/library/base/latex/conflicts.tex +lib/R/library/base/latex/connections.tex lib/R/library/base/latex/contour.tex lib/R/library/base/latex/contrast.tex lib/R/library/base/latex/contrasts.tex lib/R/library/base/latex/contributors.tex lib/R/library/base/latex/convolve.tex lib/R/library/base/latex/coplot.tex +lib/R/library/base/latex/cor.tex lib/R/library/base/latex/copyright.tex lib/R/library/base/latex/count.fields.tex lib/R/library/base/latex/cov.wt.tex @@ -1120,10 +1218,10 @@ lib/R/library/base/latex/dataentry.tex lib/R/library/base/latex/date.tex lib/R/library/base/latex/debug.tex -lib/R/library/base/latex/delay.tex -lib/R/library/base/latex/demo.tex lib/R/library/base/latex/debugger.tex +lib/R/library/base/latex/delay.tex lib/R/library/base/latex/delete.response.tex +lib/R/library/base/latex/demo.tex lib/R/library/base/latex/density.tex lib/R/library/base/latex/deparse.tex lib/R/library/base/latex/deriv.tex @@ -1170,10 +1268,12 @@ lib/R/library/base/latex/faithful.tex lib/R/library/base/latex/family.tex lib/R/library/base/latex/fft.tex -lib/R/library/base/latex/file.tex +lib/R/library/base/latex/file.access.tex lib/R/library/base/latex/file.choose.tex +lib/R/library/base/latex/file.info.tex lib/R/library/base/latex/file.path.tex lib/R/library/base/latex/file.show.tex +lib/R/library/base/latex/files.tex lib/R/library/base/latex/filled.contour.tex lib/R/library/base/latex/fitted.values.tex lib/R/library/base/latex/fivenum.tex @@ -1183,12 +1283,14 @@ lib/R/library/base/latex/format.info.tex lib/R/library/base/latex/formatc.tex lib/R/library/base/latex/formula.tex +lib/R/library/base/latex/fourfoldplot.tex lib/R/library/base/latex/frame.tex lib/R/library/base/latex/freeny.tex lib/R/library/base/latex/ftable.tex lib/R/library/base/latex/ftable.formula.tex lib/R/library/base/latex/function.tex lib/R/library/base/latex/gc.tex +lib/R/library/base/latex/gc.time.tex lib/R/library/base/latex/gctorture.tex lib/R/library/base/latex/get.tex lib/R/library/base/latex/getenv.tex @@ -1213,10 +1315,10 @@ lib/R/library/base/latex/influence.measures.tex lib/R/library/base/latex/integer.tex lib/R/library/base/latex/interaction.tex -lib/R/library/base/latex/iris.tex lib/R/library/base/latex/interaction.plot.tex lib/R/library/base/latex/interactive.tex lib/R/library/base/latex/invisible.tex +lib/R/library/base/latex/iris.tex lib/R/library/base/latex/is.empty.tex lib/R/library/base/latex/is.finite.tex lib/R/library/base/latex/is.function.tex @@ -1237,15 +1339,18 @@ lib/R/library/base/latex/levels.tex lib/R/library/base/latex/levels.factor.tex lib/R/library/base/latex/library.tex -lib/R/library/base/latex/license.tex lib/R/library/base/latex/library.dynam.tex +lib/R/library/base/latex/license.tex lib/R/library/base/latex/lines.tex lib/R/library/base/latex/list.tex lib/R/library/base/latex/list.files.tex lib/R/library/base/latex/lm.tex lib/R/library/base/latex/lm.influence.tex lib/R/library/base/latex/lm.summaries.tex +lib/R/library/base/latex/lmfit.tex lib/R/library/base/latex/load.tex +lib/R/library/base/latex/localeconv.tex +lib/R/library/base/latex/locales.tex lib/R/library/base/latex/locator.tex lib/R/library/base/latex/logical.tex lib/R/library/base/latex/loglin.tex @@ -1261,7 +1366,7 @@ lib/R/library/base/latex/mahalanobis.tex lib/R/library/base/latex/make.link.tex lib/R/library/base/latex/make.names.tex -lib/R/library/base/latex/nlm.tex +lib/R/library/base/latex/manova.tex lib/R/library/base/latex/make.socket.tex lib/R/library/base/latex/make.tables.tex lib/R/library/base/latex/margin.table.tex @@ -1283,13 +1388,14 @@ lib/R/library/base/latex/missing.tex lib/R/library/base/latex/mode.tex lib/R/library/base/latex/model.extract.tex -lib/R/library/base/latex/morley.tex lib/R/library/base/latex/model.frame.tex +lib/R/library/base/latex/morley.tex lib/R/library/base/latex/model.matrix.tex lib/R/library/base/latex/model.tables.tex lib/R/library/base/latex/mosaicplot.tex lib/R/library/base/latex/mtcars.tex lib/R/library/base/latex/mtext.tex +lib/R/library/base/latex/n2mfrow.tex lib/R/library/base/latex/na.action.tex lib/R/library/base/latex/na.fail.tex lib/R/library/base/latex/name.tex @@ -1299,10 +1405,13 @@ lib/R/library/base/latex/nextn.tex lib/R/library/base/latex/nhtemp.tex lib/R/library/base/latex/nlevels.tex +lib/R/library/base/latex/nlm.tex lib/R/library/base/latex/noquote.tex lib/R/library/base/latex/notyet.tex lib/R/library/base/latex/nrow.tex lib/R/library/base/latex/numeric.tex +lib/R/library/base/latex/object.size.tex +lib/R/library/base/latex/octmode.tex lib/R/library/base/latex/offset.tex lib/R/library/base/latex/on.exit.tex lib/R/library/base/latex/optim.tex @@ -1326,16 +1435,18 @@ lib/R/library/base/latex/persp.tex lib/R/library/base/latex/phones.tex lib/R/library/base/latex/pictex.tex -lib/R/library/base/latex/piechart.tex +lib/R/library/base/latex/qr.tex lib/R/library/base/latex/plot.tex +lib/R/library/base/latex/piechart.tex lib/R/library/base/latex/plot.lm.tex -lib/R/library/base/latex/qr.tex +lib/R/library/base/latex/plot.table.tex +lib/R/library/base/latex/plot.ts.tex lib/R/library/base/latex/plot.window.tex -lib/R/library/base/latex/rep.tex lib/R/library/base/latex/plot.xy.tex lib/R/library/base/latex/plotdefault.tex lib/R/library/base/latex/plotfactor.tex lib/R/library/base/latex/plotformula.tex +lib/R/library/base/latex/plothistogram.tex lib/R/library/base/latex/plotmath.tex lib/R/library/base/latex/pmatch.tex lib/R/library/base/latex/points.tex @@ -1364,10 +1475,13 @@ lib/R/library/base/latex/proj.tex lib/R/library/base/latex/prompt.tex lib/R/library/base/latex/prop.table.tex +lib/R/library/base/latex/pushBack.tex +lib/R/library/base/latex/putenv.tex lib/R/library/base/latex/qqnorm.tex lib/R/library/base/latex/qraux.tex lib/R/library/base/latex/quakes.tex lib/R/library/base/latex/quantile.tex +lib/R/library/base/latex/rep.tex lib/R/library/base/latex/quit.tex lib/R/library/base/latex/randu.tex lib/R/library/base/latex/range.tex @@ -1376,6 +1490,8 @@ lib/R/library/base/latex/read.socket.tex lib/R/library/base/latex/read.table.tex lib/R/library/base/latex/read.table.url.tex +lib/R/library/base/latex/readBin.tex +lib/R/library/base/latex/readLines.tex lib/R/library/base/latex/readline.tex lib/R/library/base/latex/real.tex lib/R/library/base/latex/recordplot.tex @@ -1383,6 +1499,8 @@ lib/R/library/base/latex/relevel.tex lib/R/library/base/latex/replace.tex lib/R/library/base/latex/replications.tex +lib/R/library/base/latex/reshapeLong.tex +lib/R/library/base/latex/reshapeWide.tex lib/R/library/base/latex/residuals.tex lib/R/library/base/latex/restart.tex lib/R/library/base/latex/rev.tex @@ -1395,17 +1513,19 @@ lib/R/library/base/latex/rug.tex lib/R/library/base/latex/sample.tex lib/R/library/base/latex/save.tex +lib/R/library/base/latex/savehistory.tex lib/R/library/base/latex/scale.tex lib/R/library/base/latex/scan.tex lib/R/library/base/latex/screen.tex lib/R/library/base/latex/sd.tex lib/R/library/base/latex/se.aov.tex lib/R/library/base/latex/se.contrast.tex -lib/R/library/base/latex/seq.tex lib/R/library/base/latex/search.tex lib/R/library/base/latex/segments.tex +lib/R/library/base/latex/seq.tex lib/R/library/base/latex/sequence.tex lib/R/library/base/latex/sets.tex +lib/R/library/base/latex/showConnections.tex lib/R/library/base/latex/sign.tex lib/R/library/base/latex/sink.tex lib/R/library/base/latex/sleep.tex @@ -1426,6 +1546,7 @@ lib/R/library/base/latex/stopifnot.tex lib/R/library/base/latex/str.tex lib/R/library/base/latex/stripplot.tex +lib/R/library/base/latex/strptime.tex lib/R/library/base/latex/strsplit.tex lib/R/library/base/latex/structure.tex lib/R/library/base/latex/strwidth.tex @@ -1449,14 +1570,18 @@ lib/R/library/base/latex/system.time.tex lib/R/library/base/latex/t.tex lib/R/library/base/latex/table.tex -lib/R/library/base/latex/tapply.tex lib/R/library/base/latex/tabulate.tex +lib/R/library/base/latex/tapply.tex lib/R/library/base/latex/tempfile.tex lib/R/library/base/latex/termplot.tex lib/R/library/base/latex/terms.tex +lib/R/library/base/latex/terms.formula.tex +lib/R/library/base/latex/terms.object.tex lib/R/library/base/latex/text.tex +lib/R/library/base/latex/textconnections.tex lib/R/library/base/latex/time.tex lib/R/library/base/latex/title.tex +lib/R/library/base/latex/toString.tex lib/R/library/base/latex/trace.tex lib/R/library/base/latex/traceback.tex lib/R/library/base/latex/transform.tex @@ -1464,6 +1589,7 @@ lib/R/library/base/latex/ts.tex lib/R/library/base/latex/tsp.tex lib/R/library/base/latex/typeof.tex +lib/R/library/base/latex/undoc.tex lib/R/library/base/latex/unique.tex lib/R/library/base/latex/uniroot.tex lib/R/library/base/latex/units.tex @@ -1487,7 +1613,9 @@ lib/R/library/base/latex/women.tex lib/R/library/base/latex/write.tex lib/R/library/base/latex/write.table.tex +lib/R/library/base/latex/writeLines.tex lib/R/library/base/latex/xfig.tex +lib/R/library/base/latex/xtabs.tex lib/R/library/base/latex/xy.coords.tex lib/R/library/base/latex/xyz.coords.tex lib/R/library/base/latex/zAlias.tex @@ -1498,14 +1626,15 @@ lib/R/library/base/latex/BATCH.tex lib/R/library/base/latex/COMPILE.tex lib/R/library/base/latex/INSTALL.tex +lib/R/library/base/latex/LINK.tex lib/R/library/base/latex/REMOVE.tex lib/R/library/base/latex/RHOME.tex +lib/R/library/base/latex/Rprof.tex lib/R/library/base/latex/SHLIB.tex lib/R/library/base/latex/Signals.tex lib/R/library/base/latex/gnome.tex lib/R/library/base/latex/gtk.tex lib/R/library/base/latex/png.tex -lib/R/library/base/latex/undoc.tex lib/R/library/base/latex/Arithmetic.tex lib/R/library/base/html/x11.html lib/R/library/base/html/Arithmetic.html @@ -1517,6 +1646,7 @@ lib/R/library/base/html/Comparison.html lib/R/library/base/html/Constants.html lib/R/library/base/html/Control.html +lib/R/library/base/html/DateTimeClasses.html lib/R/library/base/html/Defunct.html lib/R/library/base/html/Deprecated.html lib/R/library/base/html/Devices.html @@ -1527,7 +1657,6 @@ lib/R/library/base/html/Foreign.html lib/R/library/base/html/Formaldehyde.html lib/R/library/base/html/GammaDist.html -lib/R/library/base/html/NA.html lib/R/library/base/html/Geometric.html lib/R/library/base/html/HairEyeColor.html lib/R/library/base/html/Hershey.html @@ -1545,23 +1674,30 @@ lib/R/library/base/html/Lognormal.html lib/R/library/base/html/Math.html lib/R/library/base/html/Memory.html +lib/R/library/base/html/NA.html lib/R/library/base/html/NULL.html lib/R/library/base/html/NegBinomial.html +lib/R/library/base/html/by.html lib/R/library/base/html/Normal.html lib/R/library/base/html/OrchardSprays.html lib/R/library/base/html/Paren.html +lib/R/library/base/html/PkgUtils.html lib/R/library/base/html/PlantGrowth.html lib/R/library/base/html/Platform.html lib/R/library/base/html/Poisson.html lib/R/library/base/html/Primitive.html lib/R/library/base/html/Random-user.html lib/R/library/base/html/Random.html +lib/R/library/base/html/RdUtils.html lib/R/library/base/html/Recall.html lib/R/library/base/html/Rhome.html lib/R/library/base/html/Round.html lib/R/library/base/html/SignRank.html lib/R/library/base/html/Special.html lib/R/library/base/html/Startup.html +lib/R/library/base/html/Sys.info.html +lib/R/library/base/html/Sys.sleep.html +lib/R/library/base/html/Sys.time.html lib/R/library/base/html/TDist.html lib/R/library/base/html/Titanic.html lib/R/library/base/html/ToothGrowth.html @@ -1570,7 +1706,6 @@ lib/R/library/base/html/UCBAdmissions.html lib/R/library/base/html/USArrests.html lib/R/library/base/html/USJudgeRatings.html -lib/R/library/base/html/abline.html lib/R/library/base/html/USPersonalExpenditure.html lib/R/library/base/html/Uniform.html lib/R/library/base/html/VADeaths.html @@ -1578,6 +1713,7 @@ lib/R/library/base/html/Weibull.html lib/R/library/base/html/Wilcoxon.html lib/R/library/base/html/abbreviate.html +lib/R/library/base/html/abline.html lib/R/library/base/html/add1.html lib/R/library/base/html/aggregate.html lib/R/library/base/html/airmiles.html @@ -1587,6 +1723,8 @@ lib/R/library/base/html/all.equal.html lib/R/library/base/html/allnames.html lib/R/library/base/html/anova.html +lib/R/library/base/html/anova.glm.html +lib/R/library/base/html/anova.lm.html lib/R/library/base/html/anscombe.html lib/R/library/base/html/any.html lib/R/library/base/html/aov.html @@ -1598,8 +1736,10 @@ lib/R/library/base/html/args.html lib/R/library/base/html/array.html lib/R/library/base/html/arrows.html +lib/R/library/base/html/as.POSIXlt.html lib/R/library/base/html/as.function.html lib/R/library/base/html/assign.html +lib/R/library/base/html/assocplot.html lib/R/library/base/html/attach.html lib/R/library/base/html/attenu.html lib/R/library/base/html/attitude.html @@ -1607,6 +1747,7 @@ lib/R/library/base/html/attributes.html lib/R/library/base/html/autoload.html lib/R/library/base/html/ave.html +lib/R/library/base/html/axis.POSIXct.html lib/R/library/base/html/axis.html lib/R/library/base/html/backsolve.html lib/R/library/base/html/barplot.html @@ -1615,10 +1756,9 @@ lib/R/library/base/html/boxplot.html lib/R/library/base/html/boxplot.stats.html lib/R/library/base/html/browser.html -lib/R/library/base/html/bxp.html lib/R/library/base/html/bug.report.html lib/R/library/base/html/builtins.html -lib/R/library/base/html/by.html +lib/R/library/base/html/bxp.html lib/R/library/base/html/c.html lib/R/library/base/html/call.html lib/R/library/base/html/cars.html @@ -1626,6 +1766,7 @@ lib/R/library/base/html/cat.html lib/R/library/base/html/cbind.html lib/R/library/base/html/char.expand.html +lib/R/library/base/html/gc.html lib/R/library/base/html/character.html lib/R/library/base/html/charmatch.html lib/R/library/base/html/chartr.html @@ -1638,6 +1779,7 @@ lib/R/library/base/html/close.socket.html lib/R/library/base/html/co2.html lib/R/library/base/html/codes.html +lib/R/library/base/html/codoc.html lib/R/library/base/html/coefficients.html lib/R/library/base/html/col.html lib/R/library/base/html/colnames.html @@ -1647,6 +1789,7 @@ lib/R/library/base/html/complete.cases.html lib/R/library/base/html/complex.html lib/R/library/base/html/conflicts.html +lib/R/library/base/html/connections.html lib/R/library/base/html/contour.html lib/R/library/base/html/contrast.html lib/R/library/base/html/contrasts.html @@ -1718,10 +1861,12 @@ lib/R/library/base/html/faithful.html lib/R/library/base/html/family.html lib/R/library/base/html/fft.html -lib/R/library/base/html/file.html +lib/R/library/base/html/file.access.html lib/R/library/base/html/file.choose.html +lib/R/library/base/html/file.info.html lib/R/library/base/html/file.path.html lib/R/library/base/html/file.show.html +lib/R/library/base/html/files.html lib/R/library/base/html/filled.contour.html lib/R/library/base/html/fitted.values.html lib/R/library/base/html/fivenum.html @@ -1731,12 +1876,13 @@ lib/R/library/base/html/format.info.html lib/R/library/base/html/formatc.html lib/R/library/base/html/formula.html +lib/R/library/base/html/fourfoldplot.html lib/R/library/base/html/frame.html lib/R/library/base/html/freeny.html lib/R/library/base/html/ftable.html lib/R/library/base/html/ftable.formula.html lib/R/library/base/html/function.html -lib/R/library/base/html/gc.html +lib/R/library/base/html/gc.time.html lib/R/library/base/html/gctorture.html lib/R/library/base/html/get.html lib/R/library/base/html/getenv.html @@ -1769,10 +1915,10 @@ lib/R/library/base/html/is.finite.html lib/R/library/base/html/is.function.html lib/R/library/base/html/is.language.html -lib/R/library/base/html/isR.html lib/R/library/base/html/is.object.html lib/R/library/base/html/is.recursive.html lib/R/library/base/html/is.single.html +lib/R/library/base/html/isR.html lib/R/library/base/html/islands.html lib/R/library/base/html/jitter.html lib/R/library/base/html/kappa.html @@ -1792,15 +1938,18 @@ lib/R/library/base/html/list.files.html lib/R/library/base/html/lm.html lib/R/library/base/html/lm.influence.html -lib/R/library/base/html/ls.html lib/R/library/base/html/lm.summaries.html +lib/R/library/base/html/lmfit.html lib/R/library/base/html/load.html +lib/R/library/base/html/localeconv.html +lib/R/library/base/html/locales.html lib/R/library/base/html/locator.html lib/R/library/base/html/logical.html lib/R/library/base/html/loglin.html lib/R/library/base/html/longley.html lib/R/library/base/html/lower.tri.html lib/R/library/base/html/lowess.html +lib/R/library/base/html/ls.html lib/R/library/base/html/ls.diag.html lib/R/library/base/html/ls.print.html lib/R/library/base/html/lsfit.html @@ -1811,9 +1960,10 @@ lib/R/library/base/html/make.names.html lib/R/library/base/html/make.socket.html lib/R/library/base/html/make.tables.html +lib/R/library/base/html/manova.html lib/R/library/base/html/margin.table.html -lib/R/library/base/html/mat.or.vec.html lib/R/library/base/html/match.html +lib/R/library/base/html/mat.or.vec.html lib/R/library/base/html/match.arg.html lib/R/library/base/html/match.call.html lib/R/library/base/html/match.fun.html @@ -1834,10 +1984,11 @@ lib/R/library/base/html/model.matrix.html lib/R/library/base/html/model.tables.html lib/R/library/base/html/morley.html -lib/R/library/base/html/mosaicplot.html lib/R/library/base/html/qr.html +lib/R/library/base/html/mosaicplot.html lib/R/library/base/html/mtcars.html lib/R/library/base/html/mtext.html +lib/R/library/base/html/n2mfrow.html lib/R/library/base/html/na.action.html lib/R/library/base/html/na.fail.html lib/R/library/base/html/name.html @@ -1852,6 +2003,8 @@ lib/R/library/base/html/notyet.html lib/R/library/base/html/nrow.html lib/R/library/base/html/numeric.html +lib/R/library/base/html/object.size.html +lib/R/library/base/html/octmode.html lib/R/library/base/html/offset.html lib/R/library/base/html/on.exit.html lib/R/library/base/html/optim.html @@ -1859,10 +2012,10 @@ lib/R/library/base/html/options.html lib/R/library/base/html/order.html lib/R/library/base/html/outer.html -lib/R/library/base/html/page.html lib/R/library/base/html/p.adjust.html lib/R/library/base/html/package.contents.html lib/R/library/base/html/package.dependencies.html +lib/R/library/base/html/page.html lib/R/library/base/html/pairs.html lib/R/library/base/html/pairs.formula.html lib/R/library/base/html/palette.html @@ -1878,11 +2031,14 @@ lib/R/library/base/html/piechart.html lib/R/library/base/html/plot.html lib/R/library/base/html/plot.lm.html +lib/R/library/base/html/plot.table.html +lib/R/library/base/html/plot.ts.html lib/R/library/base/html/plot.window.html lib/R/library/base/html/plot.xy.html lib/R/library/base/html/plotdefault.html lib/R/library/base/html/plotfactor.html lib/R/library/base/html/plotformula.html +lib/R/library/base/html/plothistogram.html lib/R/library/base/html/plotmath.html lib/R/library/base/html/pmatch.html lib/R/library/base/html/points.html @@ -1911,6 +2067,8 @@ lib/R/library/base/html/proj.html lib/R/library/base/html/prompt.html lib/R/library/base/html/prop.table.html +lib/R/library/base/html/pushBack.html +lib/R/library/base/html/putenv.html lib/R/library/base/html/qqnorm.html lib/R/library/base/html/qraux.html lib/R/library/base/html/quakes.html @@ -1923,6 +2081,8 @@ lib/R/library/base/html/read.socket.html lib/R/library/base/html/read.table.html lib/R/library/base/html/read.table.url.html +lib/R/library/base/html/readBin.html +lib/R/library/base/html/readLines.html lib/R/library/base/html/readline.html lib/R/library/base/html/real.html lib/R/library/base/html/recordplot.html @@ -1931,18 +2091,21 @@ lib/R/library/base/html/rep.html lib/R/library/base/html/replace.html lib/R/library/base/html/replications.html +lib/R/library/base/html/reshapeLong.html +lib/R/library/base/html/reshapeWide.html lib/R/library/base/html/residuals.html +lib/R/library/base/html/rm.html lib/R/library/base/html/restart.html lib/R/library/base/html/rev.html lib/R/library/base/html/rgb.html lib/R/library/base/html/rivers.html lib/R/library/base/html/rle.html -lib/R/library/base/html/rm.html lib/R/library/base/html/row.html lib/R/library/base/html/rowsum.html lib/R/library/base/html/rug.html lib/R/library/base/html/sample.html lib/R/library/base/html/save.html +lib/R/library/base/html/savehistory.html lib/R/library/base/html/scale.html lib/R/library/base/html/scan.html lib/R/library/base/html/screen.html @@ -1954,6 +2117,8 @@ lib/R/library/base/html/seq.html lib/R/library/base/html/sequence.html lib/R/library/base/html/sets.html +lib/R/library/base/html/showConnections.html +lib/R/library/base/html/t.html lib/R/library/base/html/sign.html lib/R/library/base/html/sink.html lib/R/library/base/html/sleep.html @@ -1974,10 +2139,11 @@ lib/R/library/base/html/stopifnot.html lib/R/library/base/html/str.html lib/R/library/base/html/stripplot.html +lib/R/library/base/html/strptime.html lib/R/library/base/html/strsplit.html lib/R/library/base/html/structure.html -lib/R/library/base/html/strwidth.html lib/R/library/base/html/subset.html +lib/R/library/base/html/strwidth.html lib/R/library/base/html/substitute.html lib/R/library/base/html/substr.html lib/R/library/base/html/sum.html @@ -1995,16 +2161,19 @@ lib/R/library/base/html/system.html lib/R/library/base/html/system.file.html lib/R/library/base/html/system.time.html -lib/R/library/base/html/t.html lib/R/library/base/html/table.html lib/R/library/base/html/tabulate.html lib/R/library/base/html/tapply.html lib/R/library/base/html/tempfile.html lib/R/library/base/html/termplot.html lib/R/library/base/html/terms.html +lib/R/library/base/html/terms.formula.html +lib/R/library/base/html/terms.object.html lib/R/library/base/html/text.html +lib/R/library/base/html/textconnections.html lib/R/library/base/html/time.html lib/R/library/base/html/title.html +lib/R/library/base/html/toString.html lib/R/library/base/html/trace.html lib/R/library/base/html/traceback.html lib/R/library/base/html/transform.html @@ -2012,6 +2181,7 @@ lib/R/library/base/html/ts.html lib/R/library/base/html/tsp.html lib/R/library/base/html/typeof.html +lib/R/library/base/html/undoc.html lib/R/library/base/html/unique.html lib/R/library/base/html/uniroot.html lib/R/library/base/html/units.html @@ -2019,7 +2189,6 @@ lib/R/library/base/html/unlist.html lib/R/library/base/html/unname.html lib/R/library/base/html/update.html -lib/R/library/base/html/zC.html lib/R/library/base/html/update.formula.html lib/R/library/base/html/update.packages.html lib/R/library/base/html/uspop.html @@ -2036,8 +2205,11 @@ lib/R/library/base/html/women.html lib/R/library/base/html/write.html lib/R/library/base/html/write.table.html +lib/R/library/base/html/writeLines.html lib/R/library/base/html/xfig.html +lib/R/library/base/html/xtabs.html lib/R/library/base/html/xy.coords.html +lib/R/library/base/html/zC.html lib/R/library/base/html/xyz.coords.html lib/R/library/base/html/zAlias.html lib/R/library/base/html/zMachine.html @@ -2046,14 +2218,15 @@ lib/R/library/base/html/BATCH.html lib/R/library/base/html/COMPILE.html lib/R/library/base/html/INSTALL.html +lib/R/library/base/html/LINK.html lib/R/library/base/html/REMOVE.html lib/R/library/base/html/RHOME.html +lib/R/library/base/html/Rprof.html lib/R/library/base/html/SHLIB.html lib/R/library/base/html/Signals.html lib/R/library/base/html/gnome.html lib/R/library/base/html/gtk.html lib/R/library/base/html/png.html -lib/R/library/base/html/undoc.html lib/R/library/base/html/00Index.html lib/R/library/base/data/women.R lib/R/library/base/data/Formaldehyde.R @@ -2119,6 +2292,7 @@ lib/R/library/base/help/Comparison lib/R/library/base/help/Constants lib/R/library/base/help/Control +lib/R/library/base/help/DateTimeClasses lib/R/library/base/help/Defunct lib/R/library/base/help/Deprecated lib/R/library/base/help/Devices @@ -2152,18 +2326,24 @@ lib/R/library/base/help/Normal lib/R/library/base/help/OrchardSprays lib/R/library/base/help/Paren +lib/R/library/base/help/PkgUtils lib/R/library/base/help/PlantGrowth lib/R/library/base/help/Platform lib/R/library/base/help/Poisson lib/R/library/base/help/Primitive lib/R/library/base/help/Random-user lib/R/library/base/help/Random +lib/R/library/base/help/RdUtils +lib/R/library/base/help/all lib/R/library/base/help/Recall lib/R/library/base/help/Rhome lib/R/library/base/help/Round lib/R/library/base/help/SignRank lib/R/library/base/help/Special lib/R/library/base/help/Startup +lib/R/library/base/help/Sys.info +lib/R/library/base/help/Sys.sleep +lib/R/library/base/help/Sys.time lib/R/library/base/help/TDist lib/R/library/base/help/Titanic lib/R/library/base/help/ToothGrowth @@ -2185,12 +2365,13 @@ lib/R/library/base/help/airmiles lib/R/library/base/help/airquality lib/R/library/base/help/alias -lib/R/library/base/help/all lib/R/library/base/help/all.equal lib/R/library/base/help/allnames lib/R/library/base/help/anova -lib/R/library/base/help/any +lib/R/library/base/help/anova.glm +lib/R/library/base/help/anova.lm lib/R/library/base/help/anscombe +lib/R/library/base/help/any lib/R/library/base/help/aov lib/R/library/base/help/aperm lib/R/library/base/help/append @@ -2200,8 +2381,10 @@ lib/R/library/base/help/args lib/R/library/base/help/array lib/R/library/base/help/arrows +lib/R/library/base/help/as.POSIXlt lib/R/library/base/help/as.function lib/R/library/base/help/assign +lib/R/library/base/help/assocplot lib/R/library/base/help/attach lib/R/library/base/help/attenu lib/R/library/base/help/attitude @@ -2209,6 +2392,7 @@ lib/R/library/base/help/attributes lib/R/library/base/help/autoload lib/R/library/base/help/ave +lib/R/library/base/help/axis.POSIXct lib/R/library/base/help/axis lib/R/library/base/help/backsolve lib/R/library/base/help/barplot @@ -2236,10 +2420,11 @@ lib/R/library/base/help/chol lib/R/library/base/help/chol2inv lib/R/library/base/help/chull +lib/R/library/base/help/co2 lib/R/library/base/help/class lib/R/library/base/help/close.socket -lib/R/library/base/help/co2 lib/R/library/base/help/codes +lib/R/library/base/help/codoc lib/R/library/base/help/coefficients lib/R/library/base/help/col lib/R/library/base/help/colnames @@ -2249,6 +2434,7 @@ lib/R/library/base/help/complete.cases lib/R/library/base/help/complex lib/R/library/base/help/conflicts +lib/R/library/base/help/connections lib/R/library/base/help/contour lib/R/library/base/help/contrast lib/R/library/base/help/contrasts @@ -2292,6 +2478,7 @@ lib/R/library/base/help/do.call lib/R/library/base/help/dotplot lib/R/library/base/help/double +lib/R/library/base/help/fft lib/R/library/base/help/download.file lib/R/library/base/help/dput lib/R/library/base/help/drop @@ -2319,11 +2506,12 @@ lib/R/library/base/help/factor.scope lib/R/library/base/help/faithful lib/R/library/base/help/family -lib/R/library/base/help/fft -lib/R/library/base/help/file +lib/R/library/base/help/file.access lib/R/library/base/help/file.choose +lib/R/library/base/help/file.info lib/R/library/base/help/file.path lib/R/library/base/help/file.show +lib/R/library/base/help/files lib/R/library/base/help/filled.contour lib/R/library/base/help/fitted.values lib/R/library/base/help/fivenum @@ -2333,12 +2521,14 @@ lib/R/library/base/help/format.info lib/R/library/base/help/formatc lib/R/library/base/help/formula +lib/R/library/base/help/fourfoldplot lib/R/library/base/help/frame lib/R/library/base/help/freeny lib/R/library/base/help/ftable lib/R/library/base/help/ftable.formula lib/R/library/base/help/function lib/R/library/base/help/gc +lib/R/library/base/help/gc.time lib/R/library/base/help/gctorture lib/R/library/base/help/get lib/R/library/base/help/getenv @@ -2371,10 +2561,10 @@ lib/R/library/base/help/is.finite lib/R/library/base/help/is.function lib/R/library/base/help/is.language +lib/R/library/base/help/isR lib/R/library/base/help/is.object lib/R/library/base/help/is.recursive lib/R/library/base/help/is.single -lib/R/library/base/help/isR lib/R/library/base/help/islands lib/R/library/base/help/jitter lib/R/library/base/help/kappa @@ -2390,12 +2580,15 @@ lib/R/library/base/help/library.dynam lib/R/library/base/help/license lib/R/library/base/help/lines -lib/R/library/base/help/lm lib/R/library/base/help/list lib/R/library/base/help/list.files +lib/R/library/base/help/lm lib/R/library/base/help/lm.influence lib/R/library/base/help/lm.summaries +lib/R/library/base/help/lmfit lib/R/library/base/help/load +lib/R/library/base/help/localeconv +lib/R/library/base/help/locales lib/R/library/base/help/locator lib/R/library/base/help/logical lib/R/library/base/help/loglin @@ -2413,6 +2606,7 @@ lib/R/library/base/help/make.names lib/R/library/base/help/make.socket lib/R/library/base/help/make.tables +lib/R/library/base/help/manova lib/R/library/base/help/margin.table lib/R/library/base/help/mat.or.vec lib/R/library/base/help/match @@ -2439,6 +2633,7 @@ lib/R/library/base/help/mosaicplot lib/R/library/base/help/mtcars lib/R/library/base/help/mtext +lib/R/library/base/help/n2mfrow lib/R/library/base/help/na.action lib/R/library/base/help/na.fail lib/R/library/base/help/name @@ -2453,6 +2648,8 @@ lib/R/library/base/help/notyet lib/R/library/base/help/nrow lib/R/library/base/help/numeric +lib/R/library/base/help/object.size +lib/R/library/base/help/octmode lib/R/library/base/help/offset lib/R/library/base/help/on.exit lib/R/library/base/help/optim @@ -2476,15 +2673,17 @@ lib/R/library/base/help/persp lib/R/library/base/help/phones lib/R/library/base/help/pictex -lib/R/library/base/help/qr lib/R/library/base/help/piechart lib/R/library/base/help/plot lib/R/library/base/help/plot.lm +lib/R/library/base/help/plot.table +lib/R/library/base/help/plot.ts lib/R/library/base/help/plot.window lib/R/library/base/help/plot.xy lib/R/library/base/help/plotdefault lib/R/library/base/help/plotfactor lib/R/library/base/help/plotformula +lib/R/library/base/help/plothistogram lib/R/library/base/help/plotmath lib/R/library/base/help/pmatch lib/R/library/base/help/points @@ -2504,16 +2703,19 @@ lib/R/library/base/help/pressure lib/R/library/base/help/pretty lib/R/library/base/help/print +lib/R/library/base/help/proc.time lib/R/library/base/help/print.coefmat lib/R/library/base/help/print.default lib/R/library/base/help/print.matrix -lib/R/library/base/help/proc.time lib/R/library/base/help/prod lib/R/library/base/help/profile lib/R/library/base/help/proj lib/R/library/base/help/prompt lib/R/library/base/help/prop.table +lib/R/library/base/help/pushBack +lib/R/library/base/help/putenv lib/R/library/base/help/qqnorm +lib/R/library/base/help/qr lib/R/library/base/help/qraux lib/R/library/base/help/quakes lib/R/library/base/help/quantile @@ -2525,6 +2727,8 @@ lib/R/library/base/help/read.socket lib/R/library/base/help/read.table lib/R/library/base/help/read.table.url +lib/R/library/base/help/readBin +lib/R/library/base/help/readLines lib/R/library/base/help/readline lib/R/library/base/help/real lib/R/library/base/help/recordplot @@ -2533,6 +2737,8 @@ lib/R/library/base/help/rep lib/R/library/base/help/replace lib/R/library/base/help/replications +lib/R/library/base/help/reshapeLong +lib/R/library/base/help/reshapeWide lib/R/library/base/help/residuals lib/R/library/base/help/restart lib/R/library/base/help/rev @@ -2545,6 +2751,7 @@ lib/R/library/base/help/rug lib/R/library/base/help/sample lib/R/library/base/help/save +lib/R/library/base/help/savehistory lib/R/library/base/help/scale lib/R/library/base/help/scan lib/R/library/base/help/screen @@ -2557,6 +2764,7 @@ lib/R/library/base/help/sequence lib/R/library/base/help/sets lib/R/library/base/help/sign +lib/R/library/base/help/showConnections lib/R/library/base/help/sink lib/R/library/base/help/sleep lib/R/library/base/help/solve @@ -2565,7 +2773,6 @@ lib/R/library/base/help/splinefun lib/R/library/base/help/split lib/R/library/base/help/stack -lib/R/library/base/help/str lib/R/library/base/help/stackloss lib/R/library/base/help/stars lib/R/library/base/help/start @@ -2575,7 +2782,9 @@ lib/R/library/base/help/step lib/R/library/base/help/stop lib/R/library/base/help/stopifnot +lib/R/library/base/help/str lib/R/library/base/help/stripplot +lib/R/library/base/help/strptime lib/R/library/base/help/strsplit lib/R/library/base/help/structure lib/R/library/base/help/strwidth @@ -2604,9 +2813,13 @@ lib/R/library/base/help/tempfile lib/R/library/base/help/termplot lib/R/library/base/help/terms +lib/R/library/base/help/terms.formula +lib/R/library/base/help/terms.object lib/R/library/base/help/text +lib/R/library/base/help/textconnections lib/R/library/base/help/time lib/R/library/base/help/title +lib/R/library/base/help/toString lib/R/library/base/help/trace lib/R/library/base/help/traceback lib/R/library/base/help/transform @@ -2614,6 +2827,7 @@ lib/R/library/base/help/ts lib/R/library/base/help/tsp lib/R/library/base/help/typeof +lib/R/library/base/help/undoc lib/R/library/base/help/unique lib/R/library/base/help/uniroot lib/R/library/base/help/units @@ -2637,7 +2851,9 @@ lib/R/library/base/help/women lib/R/library/base/help/write lib/R/library/base/help/write.table +lib/R/library/base/help/writeLines lib/R/library/base/help/xfig +lib/R/library/base/help/xtabs lib/R/library/base/help/xy.coords lib/R/library/base/help/xyz.coords lib/R/library/base/help/zAlias @@ -2648,14 +2864,15 @@ lib/R/library/base/help/BATCH lib/R/library/base/help/COMPILE lib/R/library/base/help/INSTALL +lib/R/library/base/help/LINK lib/R/library/base/help/REMOVE lib/R/library/base/help/RHOME +lib/R/library/base/help/Rprof lib/R/library/base/help/SHLIB lib/R/library/base/help/Signals lib/R/library/base/help/gnome lib/R/library/base/help/gtk lib/R/library/base/help/png -lib/R/library/base/help/undoc lib/R/library/base/help/AnIndex lib/R/library/base/DESCRIPTION lib/R/library/base/TITLE @@ -2744,6 +2961,7 @@ lib/R/library/stepfun/CONTENTS lib/R/library/ts/R/ts lib/R/library/ts/R-ex/ts.union.R +lib/R/library/ts/R-ex/acf.R lib/R/library/ts/R-ex/ar.R lib/R/library/ts/R-ex/ar.ols.R lib/R/library/ts/R-ex/arima0.R @@ -2755,15 +2973,17 @@ lib/R/library/ts/R-ex/kernapply.R lib/R/library/ts/R-ex/kernel.R lib/R/library/ts/R-ex/lag.R +lib/R/library/ts/R-ex/lag.plot.R lib/R/library/ts/R-ex/na.omit.ts.R lib/R/library/ts/R-ex/pp.test.R lib/R/library/ts/R-ex/spec.ar.R lib/R/library/ts/R-ex/spec.pgram.R lib/R/library/ts/R-ex/spectrum.R lib/R/library/ts/R-ex/stl.R +lib/R/library/ts/R-ex/sunspot.R lib/R/library/ts/R-ex/toeplitz.R lib/R/library/ts/R-ex/ts.plot.R -lib/R/library/ts/R-ex/acf.R +lib/R/library/ts/R-ex/UKLungDeaths.R lib/R/library/ts/latex/ts.union.tex lib/R/library/ts/latex/EuStockMarkets.tex lib/R/library/ts/latex/LakeHuron.tex @@ -2785,10 +3005,13 @@ lib/R/library/ts/latex/kernapply.tex lib/R/library/ts/latex/kernel.tex lib/R/library/ts/latex/lag.tex +lib/R/library/ts/latex/lag.plot.tex lib/R/library/ts/latex/lh.tex lib/R/library/ts/latex/lynx.tex lib/R/library/ts/latex/na.omit.ts.tex lib/R/library/ts/latex/nottem.tex +lib/R/library/ts/latex/plot.acf.tex +lib/R/library/ts/latex/plot.spec.tex lib/R/library/ts/latex/pp.test.tex lib/R/library/ts/latex/spec.ar.tex lib/R/library/ts/latex/spec.pgram.tex @@ -2823,10 +3046,13 @@ lib/R/library/ts/html/kernapply.html lib/R/library/ts/html/kernel.html lib/R/library/ts/html/lag.html +lib/R/library/ts/html/lag.plot.html lib/R/library/ts/html/lh.html lib/R/library/ts/html/lynx.html lib/R/library/ts/html/na.omit.ts.html lib/R/library/ts/html/nottem.html +lib/R/library/ts/html/plot.acf.html +lib/R/library/ts/html/plot.spec.html lib/R/library/ts/html/pp.test.html lib/R/library/ts/html/spec.ar.html lib/R/library/ts/html/spec.pgram.html @@ -2862,10 +3088,13 @@ lib/R/library/ts/help/kernapply lib/R/library/ts/help/kernel lib/R/library/ts/help/lag +lib/R/library/ts/help/lag.plot lib/R/library/ts/help/lh lib/R/library/ts/help/lynx lib/R/library/ts/help/na.omit.ts lib/R/library/ts/help/nottem +lib/R/library/ts/help/plot.acf +lib/R/library/ts/help/plot.spec lib/R/library/ts/help/pp.test lib/R/library/ts/help/spec.ar lib/R/library/ts/help/spec.pgram @@ -2903,26 +3132,40 @@ lib/R/library/tcltk/R-ex/TkCommands.R lib/R/library/tcltk/R-ex/TkWidgetcmds.R lib/R/library/tcltk/R-ex/TkWidgets.R +lib/R/library/tcltk/R-ex/tkpager.R lib/R/library/tcltk/latex/TclInterface.tex lib/R/library/tcltk/latex/TkCommands.tex lib/R/library/tcltk/latex/TkWidgetcmds.tex lib/R/library/tcltk/latex/TkWidgets.tex +lib/R/library/tcltk/latex/tkpager.tex lib/R/library/tcltk/html/00Index.html lib/R/library/tcltk/html/TclInterface.html lib/R/library/tcltk/html/TkCommands.html lib/R/library/tcltk/html/TkWidgetcmds.html lib/R/library/tcltk/html/TkWidgets.html -lib/R/library/tcltk/help/AnIndex +lib/R/library/tcltk/html/tkpager.html +lib/R/library/tcltk/exec/widget.tcl +lib/R/library/tcltk/exec/pkgIndex.tcl +lib/R/library/tcltk/exec/util-dump.tcl +lib/R/library/tcltk/exec/util-expand.tcl +lib/R/library/tcltk/exec/util-number.tcl +lib/R/library/tcltk/exec/util-string.tcl +lib/R/library/tcltk/exec/util-tk.tcl +lib/R/library/tcltk/exec/util.tcl +lib/R/library/tcltk/exec/hierarchy.tcl +lib/R/library/tcltk/help/TkCommands lib/R/library/tcltk/help/00Titles lib/R/library/tcltk/help/TclInterface -lib/R/library/tcltk/help/TkCommands +lib/R/library/tcltk/help/AnIndex lib/R/library/tcltk/help/TkWidgetcmds lib/R/library/tcltk/help/TkWidgets +lib/R/library/tcltk/help/tkpager lib/R/library/tcltk/DESCRIPTION lib/R/library/tcltk/TITLE lib/R/library/tcltk/INDEX lib/R/library/tcltk/CONTENTS lib/R/library/LibIndex +lib/R/library/R.css lib/R/afm/agd_____.lt1 lib/R/afm/agdo____.lt1 lib/R/afm/agw_____.lt1 @@ -2964,13 +3207,27 @@ lib/R/demos/models/glm-v+r.R lib/R/demos/models/lm+glm.R lib/R/demos/nlm/valley.R +lib/R/demos/tcltk/tkcanvas.R lib/R/demos/tcltk/tkdensity.R +lib/R/demos/tcltk/tkfaq.R +lib/R/demos/tcltk/tkfilefind.R lib/R/demos/tcltk/tkttest.R -lib/R/demos/dynload/README -lib/R/demos/dynload/zero.R -lib/R/demos/dynload/zero.c -lib/R/demos/dynload/zero.so -lib/R/doc/manual/Rd.sty +lib/R/doc/KEYWORDS +lib/R/doc/KEYWORDS.db +lib/R/doc/html/R.css +lib/R/doc/html/left.jpg +lib/R/doc/html/logo.jpg +lib/R/doc/html/logosm.jpg +lib/R/doc/html/right.jpg +lib/R/doc/html/up.jpg +lib/R/doc/html/about.html +lib/R/doc/html/faq.html +lib/R/doc/html/packages-foot.html +lib/R/doc/html/packages-head.html +lib/R/doc/html/resources.html +lib/R/doc/html/template.html +lib/R/doc/html/thanks.html +lib/R/doc/html/index.html lib/R/doc/html/search/IndexEntry.class lib/R/doc/html/search/IndexStream.class lib/R/doc/html/search/IndexTable.class @@ -2979,131 +3236,132 @@ lib/R/doc/html/search/Value.class lib/R/doc/html/search/SearchEngine-foot.html lib/R/doc/html/search/SearchEngine-head.html -lib/R/doc/html/search/SearchEngine.html lib/R/doc/html/search/SearchObject.html +lib/R/doc/html/search/SearchEngine.html lib/R/doc/html/search/index.txt -lib/R/doc/html/about.html -lib/R/doc/html/faq.html -lib/R/doc/html/function.html -lib/R/doc/html/index.html -lib/R/doc/html/packages-foot.html -lib/R/doc/html/packages-head.html lib/R/doc/html/packages.html -lib/R/doc/html/resource.html -lib/R/doc/html/template.html -lib/R/doc/html/thanks.html -lib/R/doc/html/left.jpg -lib/R/doc/html/logo.jpg -lib/R/doc/html/logosm.jpg -lib/R/doc/html/right.jpg -lib/R/doc/html/up.jpg -lib/R/doc/html/R.css -lib/R/doc/KEYWORDS -lib/R/doc/KEYWORDS.db -lib/R/etc/Rdconvlib.pl -lib/R/etc/buildlib.pl -lib/R/etc/html-layout.pl +lib/R/doc/html/function.html +lib/R/doc/manual/R-FAQ.html +lib/R/doc/manual/R-data.html +lib/R/doc/manual/R-exts.html +lib/R/doc/manual/R-intro.html +lib/R/doc/manual/R-lang.html +lib/R/doc/manual/Rd.sty lib/R/etc/Makeconf lib/R/etc/Makeconf-tests +lib/R/etc/Renviron +lib/R/share/perl/R/Dcf.pm +lib/R/share/perl/R/Rd.pm +lib/R/share/perl/R/Rdconv.pm +lib/R/share/perl/R/Rdlists.pm +lib/R/share/perl/R/Rdtools.pm +lib/R/share/perl/R/Utils.pm +lib/R/share/perl/Text/DelimMatch.pm +lib/R/AUTHORS lib/R/COPYING lib/R/COPYRIGHTS lib/R/FAQ -lib/R/MIRROR-SITES lib/R/NEWS lib/R/RESOURCES +lib/R/THANKS +@dirrm lib/R/share/perl/Text +@dirrm lib/R/share/perl/R +@dirrm lib/R/share/perl +@dirrm lib/R/share +@dirrm lib/R/etc +@dirrm lib/R/doc/manual +@dirrm lib/R/doc/html/search +@dirrm lib/R/doc/html +@dirrm lib/R/doc +@dirrm lib/R/demos/tcltk +@dirrm lib/R/demos/nlm +@dirrm lib/R/demos/models +@dirrm lib/R/demos/language +@dirrm lib/R/demos/graphics +@dirrm lib/R/demos +@dirrm lib/R/afm +@dirrm lib/R/library/tcltk/help +@dirrm lib/R/library/tcltk/exec +@dirrm lib/R/library/tcltk/html +@dirrm lib/R/library/tcltk/latex +@dirrm lib/R/library/tcltk/R-ex +@dirrm lib/R/library/tcltk/R +@dirrm lib/R/library/tcltk @dirrm lib/R/library/ts/libs -@dirrm lib/R/library/ts/latex -@dirrm lib/R/library/ts/html -@dirrm lib/R/library/ts/help @dirrm lib/R/library/ts/data +@dirrm lib/R/library/ts/help +@dirrm lib/R/library/ts/html +@dirrm lib/R/library/ts/latex @dirrm lib/R/library/ts/R-ex @dirrm lib/R/library/ts/R @dirrm lib/R/library/ts -@dirrm lib/R/library/tcltk/latex -@dirrm lib/R/library/tcltk/html -@dirrm lib/R/library/tcltk/help -@dirrm lib/R/library/tcltk/R-ex -@dirrm lib/R/library/tcltk/R -@dirrm lib/R/library/tcltk -@dirrm lib/R/library/stepfun/latex -@dirrm lib/R/library/stepfun/html @dirrm lib/R/library/stepfun/help +@dirrm lib/R/library/stepfun/html +@dirrm lib/R/library/stepfun/latex @dirrm lib/R/library/stepfun/R-ex @dirrm lib/R/library/stepfun/R @dirrm lib/R/library/stepfun +@dirrm lib/R/library/splines/help @dirrm lib/R/library/splines/libs -@dirrm lib/R/library/splines/latex @dirrm lib/R/library/splines/html -@dirrm lib/R/library/splines/help +@dirrm lib/R/library/splines/latex @dirrm lib/R/library/splines/R-ex @dirrm lib/R/library/splines/R @dirrm lib/R/library/splines -@dirrm lib/R/library/nls/libs -@dirrm lib/R/library/nls/latex -@dirrm lib/R/library/nls/html -@dirrm lib/R/library/nls/help -@dirrm lib/R/library/nls/data -@dirrm lib/R/library/nls/R-ex -@dirrm lib/R/library/nls/R -@dirrm lib/R/library/nls +@dirrm lib/R/library/base/help +@dirrm lib/R/library/base/data +@dirrm lib/R/library/base/html +@dirrm lib/R/library/base/latex +@dirrm lib/R/library/base/R-ex +@dirrm lib/R/library/base/R +@dirrm lib/R/library/base @dirrm lib/R/library/mva/libs -@dirrm lib/R/library/mva/latex +@dirrm lib/R/library/mva/R +@dirrm lib/R/library/mva/data @dirrm lib/R/library/mva/html -@dirrm lib/R/library/mva/help +@dirrm lib/R/library/mva/latex @dirrm lib/R/library/mva/R-ex -@dirrm lib/R/library/mva/R +@dirrm lib/R/library/mva/help @dirrm lib/R/library/mva @dirrm lib/R/library/modreg/libs -@dirrm lib/R/library/modreg/latex -@dirrm lib/R/library/modreg/html -@dirrm lib/R/library/modreg/help @dirrm lib/R/library/modreg/data +@dirrm lib/R/library/modreg/help +@dirrm lib/R/library/modreg/html +@dirrm lib/R/library/modreg/latex @dirrm lib/R/library/modreg/R-ex @dirrm lib/R/library/modreg/R @dirrm lib/R/library/modreg +@dirrm lib/R/library/lqs/help @dirrm lib/R/library/lqs/libs -@dirrm lib/R/library/lqs/latex @dirrm lib/R/library/lqs/html -@dirrm lib/R/library/lqs/help +@dirrm lib/R/library/lqs/latex @dirrm lib/R/library/lqs/R-ex @dirrm lib/R/library/lqs/R @dirrm lib/R/library/lqs +@dirrm lib/R/library/eda/help @dirrm lib/R/library/eda/libs -@dirrm lib/R/library/eda/latex @dirrm lib/R/library/eda/html -@dirrm lib/R/library/eda/help +@dirrm lib/R/library/eda/latex @dirrm lib/R/library/eda/R-ex @dirrm lib/R/library/eda/R @dirrm lib/R/library/eda +@dirrm lib/R/library/ctest/help @dirrm lib/R/library/ctest/libs -@dirrm lib/R/library/ctest/latex @dirrm lib/R/library/ctest/html -@dirrm lib/R/library/ctest/help +@dirrm lib/R/library/ctest/latex @dirrm lib/R/library/ctest/R-ex @dirrm lib/R/library/ctest/R @dirrm lib/R/library/ctest -@dirrm lib/R/library/base/latex -@dirrm lib/R/library/base/html -@dirrm lib/R/library/base/help -@dirrm lib/R/library/base/data -@dirrm lib/R/library/base/R-ex -@dirrm lib/R/library/base/R -@dirrm lib/R/library/base +@dirrm lib/R/library/nls/libs +@dirrm lib/R/library/nls/R +@dirrm lib/R/library/nls/data +@dirrm lib/R/library/nls/html +@dirrm lib/R/library/nls/latex +@dirrm lib/R/library/nls/R-ex +@dirrm lib/R/library/nls/help +@dirrm lib/R/library/nls @dirrm lib/R/library @dirrm lib/R/include/R_ext @dirrm lib/R/include -@dirrm lib/R/etc -@dirrm lib/R/doc/manual -@dirrm lib/R/doc/html/search -@dirrm lib/R/doc/html -@dirrm lib/R/doc -@dirrm lib/R/demos/tcltk -@dirrm lib/R/demos/nlm -@dirrm lib/R/demos/models -@dirrm lib/R/demos/language -@dirrm lib/R/demos/graphics -@dirrm lib/R/demos/dynload -@dirrm lib/R/demos @dirrm lib/R/bin -@dirrm lib/R/afm @dirrm lib/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 Fri Feb 9 7:25:30 2001 Delivered-To: freebsd-ports@freebsd.org Received: from s3.quintessential.com (s3.quintessential.com [209.98.180.234]) by hub.freebsd.org (Postfix) with SMTP id 2695B37B71F for ; Fri, 9 Feb 2001 07:11:05 -0800 (PST) Received: (qmail 62414 invoked from network); 9 Feb 2001 15:35:21 -0000 Received: from unknown (HELO xyz.soundconcept.net) (63.225.150.153) by s3.quintessential.com with SMTP; 9 Feb 2001 15:35:21 -0000 Message-Id: <4.3.2.7.0.20010209091109.00e4fe90@pop3.norton.antivirus> X-Sender: wood%soundconcept.net/soundconcept.net@pop3.norton.antivirus X-Mailer: QUALCOMM Windows Eudora Version 4.3.2 Date: Fri, 09 Feb 2001 09:11:21 -0600 To: From: "Brian D. Woodruff" Subject: FreeBSD Port: ImageMagick-5.2.7_2 Cc: 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 We are trying to install ImageMagick on a new FreeBSD-4.2 STABLE machine and can't get it to compile. All of the depends are there, and we have no problems, but on "make" we get this error: > checking for strip... strip > updating cache ./config.cache > ltconfig: unrecognized option `--build=i386--freebsd4.2' > Try `ltconfig --help' for more information. > configure: error: libtool configure failed > ===> 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:657: checking host system type > Any advice or assistance would be appreciated. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 8:31:46 2001 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 BBECC37BBF1 for ; Fri, 9 Feb 2001 08:14: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 <20010209161408.ZMIB19464.mail.rdc1.kt.home.ne.jp@daemon.local.idaemons.org>; Fri, 9 Feb 2001 08:14:08 -0800 Received: by daemon.local.idaemons.org (8.11.1/3.7W) id f19GE8v24068; Sat, 10 Feb 2001 01:14:08 +0900 (JST) Date: Sat, 10 Feb 2001 01:14:08 +0900 Message-ID: <86d7crq1f3.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: Takanori Saneto Cc: ports@FreeBSD.ORG Subject: Re: new tool: portupgrade In-Reply-To: <864ry4ikp4.wl@archon.local.idaemons.org> References: <86k874g4c5.wl@archon.local.idaemons.org> <200102090004.JAA25400@mail.ba2.so-net.ne.jp> <864ry4ikp4.wl@archon.local.idaemons.org> User-Agent: Wanderlust/2.5.4 (Smooth) SEMI/1.14.2 (=?ISO-8859-1?Q?Daish=F2?= =?ISO-8859-1?Q?ji?=) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (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.2 - =?ISO-8859-1?Q?=22Daish=F2ji=22?=) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Fri, 09 Feb 2001 12:44:55 +0900, I wrote: > I updated the distfile. Check it out. Whoops. There was a bogon in the previous update.. just fixed. -- / /__ __ 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 Fri Feb 9 9:14:50 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4E79137BBEF; Fri, 9 Feb 2001 08:34:34 -0800 (PST) Received: (from ijliao@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19GYWO77377; Fri, 9 Feb 2001 08:34:32 -0800 (PST) (envelope-from ijliao) Date: Fri, 9 Feb 2001 08:34:32 -0800 (PST) From: Message-Id: <200102091634.f19GYWO77377@freefall.freebsd.org> To: maurice@planetoid.serc.rmit.edu.au, ijliao@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24946: Update to math/R port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to math/R port State-Changed-From-To: feedback->closed State-Changed-By: ijliao State-Changed-When: Fri Feb 9 08:33:17 PST 2001 State-Changed-Why: wait maintainer send us new patch :) http://www.freebsd.org/cgi/query-pr.cgi?pr=24946 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 9:15:57 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A3FAD37BD51; Fri, 9 Feb 2001 08:38:00 -0800 (PST) Received: (from vanilla@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19Gc0w77748; Fri, 9 Feb 2001 08:38:00 -0800 (PST) (envelope-from vanilla) Date: Fri, 9 Feb 2001 08:38:00 -0800 (PST) From: Message-Id: <200102091638.f19Gc0w77748@freefall.freebsd.org> To: varju@ca.webct.com, vanilla@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24933: [MAINTAINER UPDATE] ports/palm/jpilot 0.99 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [MAINTAINER UPDATE] ports/palm/jpilot 0.99 State-Changed-From-To: open->closed State-Changed-By: vanilla State-Changed-When: Fri Feb 9 08:35:25 PST 2001 State-Changed-Why: Committed. thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24933 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 9:16: 7 2001 Delivered-To: freebsd-ports@freebsd.org Received: from winston.osd.bsdi.com (winston.osd.bsdi.com [204.216.27.229]) by hub.freebsd.org (Postfix) with ESMTP id 15FB337BE30; Fri, 9 Feb 2001 09:08:59 -0800 (PST) Received: from winston.osd.bsdi.com (jkh@localhost [127.0.0.1]) by winston.osd.bsdi.com (8.11.2/8.11.1) with ESMTP id f19H8mV21228; Fri, 9 Feb 2001 09:08:48 -0800 (PST) (envelope-from jkh@winston.osd.bsdi.com) To: Maxim Sobolev Cc: bmah@FreeBSD.ORG, kraemer@u.washington.edu (Brian Kraemer), freebsd-ports@FreeBSD.ORG Subject: Re: Ports updating... Good ways? In-Reply-To: Message from Maxim Sobolev of "Fri, 09 Feb 2001 03:45:04 +0200." <200102090145.f191j9513959@vic.sabbo.net> Date: Fri, 09 Feb 2001 09:08:47 -0800 Message-ID: <21224.981738527@winston.osd.bsdi.com> From: Jordan Hubbard Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > It's questionable point. The real life is often more messy and new > version of a port may need really up-to-date versions of its dependencies. > Good example is my addition of --build= stub into libtool. While this change > is undetectable from the point of view of package dependency mechanism > (i.e. no files were added or removed), change in functionality would > prevent ports that use that feature from building correctly if older > version is installed (anything below 1.3.4_1). Precisely. Thanks for stating it in more detail than I did, Maxim. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 9:17:12 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BD3B37B6BC for ; Fri, 9 Feb 2001 08:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19Ge1S77958; Fri, 9 Feb 2001 08:40:01 -0800 (PST) (envelope-from gnats) Received: from mlss15.cl.msu.edu (mlss15.cl.msu.edu [35.9.4.115]) by hub.freebsd.org (Postfix) with ESMTP id ECE8937B84D for ; Fri, 9 Feb 2001 07:54:46 -0800 (PST) Received: (from buchanon@localhost) by mlss15.cl.msu.edu (8.11.2/8.11.1) id f19FskC25719; Fri, 9 Feb 2001 10:54:46 -0500 (EST) (envelope-from buchanon) Message-Id: <200102091554.f19FskC25719@mlss15.cl.msu.edu> Date: Fri, 9 Feb 2001 10:54:46 -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/24969: x3270 port won't finish install Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24969 >Category: ports >Synopsis: x3270 port won't finish install >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 Feb 09 08:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mike Buchanon >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: freebsd 4-2 running X 4.0.2 >Description: make install on x3270 port fails to complete with an error 1. this seems to be caused by the fact that BINDIR=/usr/X11R6/bin and MKFONTDIR=$(BINDIR)/mkfontdir. That's ok, but, in the install part of the make file it calls $(BINDIR)/$(MKFONTDIR) this has the result of trying to run: /usr/X11R6/bin//usr/X11R6/bin/mkfontdir This obviously causes and error. >How-To-Repeat: make install on x3270 port >Fix: *** Makefile.org Fri Feb 9 10:49:50 2001 --- Makefile Fri Feb 9 10:49:55 2001 *************** *** 1121,1127 **** install:: $(DESTDIR)$(FONTINSTDIR)/fonts.dir $(DESTDIR)$(FONTINSTDIR)/fonts.dir:: -chmod u+w $(DESTDIR)$(FONTINSTDIR) $(DESTDIR)$(FONTINSTDIR)/fonts.dir ! $(BINDIR)/$(MKFONTDIR) $(DESTDIR)$(FONTINSTDIR) chmod u=rwx,go=rx $(DESTDIR)$(FONTINSTDIR) chmod a=r $(DESTDIR)$(FONTINSTDIR)/fonts.dir --- 1121,1127 ---- install:: $(DESTDIR)$(FONTINSTDIR)/fonts.dir $(DESTDIR)$(FONTINSTDIR)/fonts.dir:: -chmod u+w $(DESTDIR)$(FONTINSTDIR) $(DESTDIR)$(FONTINSTDIR)/fonts.dir ! $(MKFONTDIR) $(DESTDIR)$(FONTINSTDIR) chmod u=rwx,go=rx $(DESTDIR)$(FONTINSTDIR) chmod a=r $(DESTDIR)$(FONTINSTDIR)/fonts.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 Fri Feb 9 9:17:32 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3056137B776; Fri, 9 Feb 2001 08:46:07 -0800 (PST) Received: (from keith@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19Gk4M79015; Fri, 9 Feb 2001 08:46:04 -0800 (PST) (envelope-from keith) Date: Fri, 9 Feb 2001 08:46:04 -0800 (PST) From: Message-Id: <200102091646.f19Gk4M79015@freefall.freebsd.org> To: avatar@mmlab.cse.yzu.edu.tw, keith@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24889: upgrade port chinese/pine4 from 4.32 to 4.33 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: upgrade port chinese/pine4 from 4.32 to 4.33 State-Changed-From-To: open->closed State-Changed-By: keith State-Changed-When: Fri Feb 9 08:45:37 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24889 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 9:24:11 2001 Delivered-To: freebsd-ports@freebsd.org Received: from defero.citexas.com (unknown [216.63.110.242]) by hub.freebsd.org (Postfix) with ESMTP id E038637DEFA; Fri, 9 Feb 2001 09:23:51 -0800 (PST) Received: (from root@localhost) by defero.citexas.com (8.9.3/8.9.3) id LAA00556; Fri, 9 Feb 2001 11:59:32 -0600 (CST) (envelope-from root) Date: Fri, 9 Feb 2001 11:59:32 -0600 (CST) From: Charlie Root Message-Id: <200102091759.LAA00556@defero.citexas.com> To: green@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-URL: http://www.freebsd.org/cgi/ports.cgi?query=openssh&stype=all&release=4.1-STABLE%2Fi386 X-Mailer: Lynx, Version 2.8.2rel.1 Subject: FreeBSD Port: OpenSSH-2.2.0 Cc: ports@FreeBSD.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am attempting to install openssh on newly installed freebsd/4.x-stable os. I received a message that the openssh port requires libfetch.so.2. I have not been succesful in finding the port that contains this module. I am hoping that maybe you can shed some light on the subject. I realize that you are likely a very busy person, so any assistence will be greatly appreciated. Thanks in advance, Chris Akbari chrisak@citexas.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 10:45:45 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 069BE37B67D; Fri, 9 Feb 2001 10:45:29 -0800 (PST) Received: (from keith@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19IibK96909; Fri, 9 Feb 2001 10:44:37 -0800 (PST) (envelope-from keith) Date: Fri, 9 Feb 2001 10:44:37 -0800 (PST) From: Message-Id: <200102091844.f19IibK96909@freefall.freebsd.org> To: phj@cn.freebsd.org, keith@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24917: patch for port chinese/chinput2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: patch for port chinese/chinput2 State-Changed-From-To: open->closed State-Changed-By: keith State-Changed-When: Fri Feb 9 10:39:17 PST 2001 State-Changed-Why: Committed, thanks. Note there are actually two (I)makefiles that need the -lz flag. http://www.freebsd.org/cgi/query-pr.cgi?pr=24917 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 10:47: 6 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (blizzard.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 52B5337B65D; Fri, 9 Feb 2001 10:46:23 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f19Ijhx07380; Fri, 9 Feb 2001 20:45:47 +0200 Received: from FreeBSD.org (big_brother.vega.com [192.168.1.1]) by vic.sabbo.net (8.11.2/8.11.2) with ESMTP id f19Ijdm46732; Fri, 9 Feb 2001 20:45:39 +0200 (EET) (envelope-from sobomax@FreeBSD.org) Message-ID: <3A843ACD.B66BD932@FreeBSD.org> Date: Fri, 09 Feb 2001 20:45:33 +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: "Brian D. Woodruff" Cc: jseger@FreeBSD.org, ports@FreeBSD.org Subject: Re: FreeBSD Port: ImageMagick-5.2.7_2 References: <4.3.2.7.0.20010209091109.00e4fe90@pop3.norton.antivirus> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org "Brian D. Woodruff" wrote: > We are trying to install ImageMagick on a new FreeBSD-4.2 STABLE machine > and can't get it to compile. > > All of the depends are there, and we have no problems, but on "make" we > get this error: > > > checking for strip... strip > > updating cache ./config.cache > > ltconfig: unrecognized option `--build=i386--freebsd4.2' > > Try `ltconfig --help' for more information. > > configure: error: libtool configure failed > > ===> 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:657: checking host system type > > > > Any advice or assistance would be appreciated. Please update your libtool port (1.3.4_1 version is required at least). -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 11: 0:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DFEB837B69B for ; Fri, 9 Feb 2001 11:00:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19J02X98175; Fri, 9 Feb 2001 11:00:02 -0800 (PST) (envelope-from gnats) Received: from snapple.webct.com (snapple.webct.com [209.87.17.45]) by hub.freebsd.org (Postfix) with ESMTP id 9B89137B503 for ; Fri, 9 Feb 2001 10:54:34 -0800 (PST) Received: (from root@localhost) by snapple.webct.com (8.11.1/8.11.1) id f19IsXt94706; Fri, 9 Feb 2001 10:54:33 -0800 (PST) (envelope-from varju) Message-Id: <200102091854.f19IsXt94706@snapple.webct.com> Date: Fri, 9 Feb 2001 10:54:33 -0800 (PST) From: Alex Varju Reply-To: varju@ca.webct.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24973: [maintainer update] add plugin support for port/palm/jpilot Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24973 >Category: ports >Synopsis: [maintainer update] add plugin support for port/palm/jpilot >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 Feb 09 11:00:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Alex Varju >Release: FreeBSD 4.2-STABLE i386 >Organization: WebCT >Environment: >Description: The current version of the port does not enable plugins, even though they are compiled. This stems from a problem in the configure script that forces the enable_plugins value to always be false, whether or not --enable-plugins is specified. The solution is a bit of a hack, as all it does is force the value of enable_plugins to be true ... if somebody knows how to make configure do the right thing, I'd love to learn what I'm doing wrong. >How-To-Repeat: Install jpilot and run it ... there should be a Plugins menu if things go right. >Fix: Index: Makefile =================================================================== RCS file: /webct2/Admin/cvsroot/ports/palm/jpilot/Makefile,v retrieving revision 1.15 diff -u -w -r1.15 Makefile --- Makefile 2001/02/09 16:14:28 1.15 +++ Makefile 2001/02/09 18:45:09 @@ -21,6 +21,7 @@ USE_LIBTOOL= yes CONFIGURE_ARGS+=--with-pilot-prefix=${PREFIX} INSTALLS_SHLIB= yes +USE_AUTOCONF= yes post-install: .if !defined(NOPORTDOCS) Index: files/patch-configure.in =================================================================== RCS file: /webct2/Admin/cvsroot/ports/palm/jpilot/files/patch-configure.in,v retrieving revision 1.1 diff -u -w -r1.1 patch-configure.in --- files/patch-configure.in 2001/02/09 16:14:28 1.1 +++ files/patch-configure.in 2001/02/09 18:26:08 @@ -1,9 +1,28 @@ ---- configure.in.orig Fri Feb 9 23:52:19 2001 -+++ configure.in Fri Feb 9 23:53:32 2001 -@@ -233,4 +233,6 @@ +--- configure.in.orig Tue Feb 6 11:26:38 2001 ++++ configure.in Fri Feb 9 10:24:46 2001 +@@ -170,15 +170,12 @@ + + + AC_ARG_ENABLE(plugins, [ --disable-plugins Do not compile plugin support]\ +-, enable_plugins=no, enable_plugins=yes) ++, enable_plugins=yes, enable_plugins=yes) + + if test "x$enable_plugins" = "xyes"; then + dnl Check for shared library calls + AC_MSG_CHECKING(for dlopen) +- save_LIBS="$LIBS" +- LIBS="$LIBS -ldl" + AC_TRY_LINK([#include ], [dlopen("huh",0);] , have_dlopen=yes, , ) +- LIBS="$save_LIBS" + + if test "x$have_dlopen" = "xyes"; then + AC_DEFINE(ENABLE_PLUGINS) +@@ -232,5 +229,8 @@ + AC_OUTPUT([Makefile intl/Makefile po/Makefile.in], [sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile]) - -+AC_OUTPUT_SUBDIRS(Expense) ++ +AC_OUTPUT_SUBDIRS(SyncTime) ++AC_OUTPUT_SUBDIRS(Expense) + dnl AC_OUTPUT(Makefile) >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 Feb 9 11: 1: 7 2001 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 A71EC37B698; Fri, 9 Feb 2001 11:00:44 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id f19J0iw14545; Fri, 9 Feb 2001 11:00:44 -0800 (PST) Date: Fri, 9 Feb 2001 11:00:44 -0800 From: Alfred Perlstein To: green@freebsd.org Cc: security@freebsd.org, ports@freebsd.org Subject: OpenSSH port patch Message-ID: <20010209110044.I26076@fw.wintelcom.net> 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 Please trim CC! This removes the 'forbidden' and adds a patch to correct the hash overflow as suggested by the Bindview audit. I'm cc'ing Brian Feldman (green) because he's maintainer, -ports because I'm not really good at ports and -security so that people can look this over. May I apply this patch? Index: Makefile =================================================================== RCS file: /home/ncvs/ports/security/openssh/Makefile,v retrieving revision 1.57 diff -u -u -r1.57 Makefile --- Makefile 2001/02/09 04:58:24 1.57 +++ Makefile 2001/02/09 18:53:06 @@ -20,8 +20,6 @@ .include -FORBIDDEN= "Remote vulnerabilities" - CRYPTOLIBS= -L${OPENSSLLIB} -lcrypto # Here, MANDIR is concetenated to DESTDIR which all forms the man install dir... MAKE_ENV+= DESTDIR=${PREFIX} MANDIR=/man/man CRYPTOLIBS="${CRYPTOLIBS}" Index: files/patch-az =================================================================== RCS file: patch-az diff -N patch-az --- /dev/null Fri Feb 9 10:59:20 2001 +++ patch-az Fri Feb 9 10:58:58 2001 @@ -0,0 +1,11 @@ +--- /home/bright/ssh/ssh/deattack.c Fri Aug 18 19:17:12 2000 ++++ deattack.c Fri Feb 9 10:58:54 2001 +@@ -84,7 +84,7 @@ + detect_attack(unsigned char *buf, u_int32_t len, unsigned char *IV) + { + static u_int16_t *h = (u_int16_t *) NULL; +- static u_int16_t n = HASH_MINSIZE / HASH_ENTRYSIZE; ++ static u_int32_t n = HASH_MINSIZE / HASH_ENTRYSIZE; + register u_int32_t i, j; + u_int32_t l; + register unsigned char *c; -- -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 Fri Feb 9 11: 4:38 2001 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 6BCC037B69B; Fri, 9 Feb 2001 11:04:14 -0800 (PST) Received: from petra.hos.u-szeged.hu by sol.cc.u-szeged.hu (8.9.3+Sun/SMI-SVR4) id TAA26172; Fri, 9 Feb 2001 19:45:21 +0100 (MET) Received: from sziszi by petra.hos.u-szeged.hu with local (Exim 3.12 #1 (Debian)) id 14RIXp-0007qw-00; Fri, 09 Feb 2001 19:45:21 +0100 Date: Fri, 9 Feb 2001 19:45:21 +0100 From: Szilveszter Adam To: Marcel Moolenaar Cc: freebsd-current@FreeBSD.ORG, ports@freebsd.org Subject: Re: Dangling symlink in /usr/compat/linux Message-ID: <20010209194521.D27987@petra.hos.u-szeged.hu> Mail-Followup-To: Szilveszter Adam , Marcel Moolenaar , freebsd-current@FreeBSD.ORG, ports@freebsd.org References: <3A7D28EA.9EF46BAE@gorean.org> <20010204112342.A15191@petra.hos.u-szeged.hu> <3A7DFC47.C76A9872@FreeBSD.org> <20010205091559.A5563@petra.hos.u-szeged.hu> <3A843594.B28776D8@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: <3A843594.B28776D8@cup.hp.com>; from marcel@cup.hp.com on Fri, Feb 09, 2001 at 10:23:16AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello Marcel, On Fri, Feb 09, 2001 at 10:23:16AM -0800, Marcel Moolenaar wrote: > [taken to -ports] I see it nowhere in the headers, so I am going to add a Cc: for it... > The link is correct. On a Redhat 6.2 system: > > dhcp00% cd /mnt/usr/lib > dhcp00% ls -al X11 > lrwxrwxrwx 1 root wheel 16 Jul 18 2000 X11 -> ../X11R6/lib/X11 > dhcp00% more /mnt/etc/redhat-release > Red Hat Linux release 6.2 (Zoot) Which is not the point:-) > > Solution: ? ( Maybe create the directory once we symlink to it? Seems like > > a good idea... ) > > Can you tell me what the problem was. I missed that. The problem if you want it that way, is that although the symlink is created upon installing linux_base, the directory it points to is not. Hence the ${SUBJECT} about a "Dangling symlink". (If you install linux_devtools, the directory is created, since there is a subdir in it. That's why the problem may be harder to detect:-) Maybe it would be a good idea to create a (empty if need be) /usr/compat/linux/usr/X11R6/lib/X11 directory upon installing linux_base? I have no idea how this came up btw, maybe some installation of some third-party sw tried to follow the symlink and got confused? I just tried to react to the problem at hand... > > (Most probably this problem never surfaced before because the maintainers > > had both ports installed on their systems.) > > I do have both ports in fact :-) Me too, that's why I at first very self-confidently posted something along the lines of "It works for me!" which earned blank stares from just about anybody else:-) -- 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 Fri Feb 9 11:11:50 2001 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 6319937B69C; Fri, 9 Feb 2001 11:11:33 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id f19JBXK14980; Fri, 9 Feb 2001 11:11:33 -0800 (PST) Date: Fri, 9 Feb 2001 11:11:33 -0800 From: Alfred Perlstein To: green@freebsd.org Cc: ports@freebsd.org Subject: remove openshh dependancy on nanosleep() Message-ID: <20010209111133.J26076@fw.wintelcom.net> 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 nanosleep doesn't exist in 2.2.x This code _should_ be equivelant, I'd like to apply this patch asap. Index: rcmd.c =================================================================== RCS file: /home/ncvs/ports/security/openssh/files/rcmd.c,v retrieving revision 1.2 diff -u -u -r1.2 rcmd.c --- rcmd.c 2000/04/17 22:20:24 1.2 +++ rcmd.c 2001/02/09 19:13:48 @@ -172,11 +172,7 @@ continue; } if (refused && timo <= 16) { - struct timespec time_to_sleep, time_remaining; - - time_to_sleep.tv_sec = timo; - time_to_sleep.tv_nsec = 0; - (void)_nanosleep(&time_to_sleep, &time_remaining); + sleep(timo); timo *= 2; ai = res; -- -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 Fri Feb 9 11:20:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D2AA037B503 for ; Fri, 9 Feb 2001 11:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19JK0b02735; Fri, 9 Feb 2001 11:20:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6C63E37B503 for ; Fri, 9 Feb 2001 11:18:40 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19JIeI02570; Fri, 9 Feb 2001 11:18:40 -0800 (PST) (envelope-from nobody) Message-Id: <200102091918.f19JIeI02570@freefall.freebsd.org> Date: Fri, 9 Feb 2001 11:18:40 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24975: Update port: x11-wm/xfce (fix ports/24932) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24975 >Category: ports >Synopsis: Update port: x11-wm/xfce (fix ports/24932) >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 Feb 09 11:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Enable to play sound with internal function - Remove USE_ESOUND - Fix pkg-plist New file: files/patch-ag files/patch-ah files/patch-ai files/patch-aj Remove file: files/patch-af This PR supersedes ports/24932. >How-To-Repeat: >Fix: diff -urN /usr/ports/x11-wm/xfce/Makefile x11-wm/xfce/Makefile --- /usr/ports/x11-wm/xfce/Makefile Sat Feb 10 00:41:37 2001 +++ x11-wm/xfce/Makefile Sat Feb 10 04:09:08 2001 @@ -7,6 +7,7 @@ PORTNAME= xfce PORTVERSION= 3.7.2 +PORTREVISION= 1 CATEGORIES= x11-wm MASTER_SITES= http://www.xfce.org/archive/ @@ -14,18 +15,24 @@ USE_X_PREFIX= yes USE_IMLIB= yes -USE_ESOUND= yes USE_XPM= yes USE_LIBTOOL= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LIBS="-L${LOCALBASE}/lib -lxpg4" -CONFIGURE_ARGS= --localstatedir=${PREFIX}/share \ - --datadir=${PREFIX}/share \ - --sysconfdir=${PREFIX}/etc \ - --with-xpm=${X11BASE} + LIBS="-L${LOCALBASE}/lib" +CONFIGURE_ARGS= --with-conf-dir=${PREFIX}/etc/xfce \ + --with-data-dir=${PREFIX}/share/xfce \ + --with-locale-dir=${PREFIX}/share/locale \ + --with-xpm=${X11BASE} \ + --disable-xinerama -MAN1= xfbd.1 xfce.1 xfclock.1 xfgnome.1 xfhelp.1 xflock.1 xfmountdev.1 \ - xfmouse.1 xfpager.1 xfprint.1 xfrun.1 xfsound.1 xfterm.1 xftrash.1 \ - xftree.1 xfwm.1 xfglob.1 glob.1 +MAN1= glob.1 xfbd.1 xfce.1 xfclock.1 xfglob.1 xfgnome.1 xfhelp.1 \ + xflock.1 xfmountdev.1 xfmouse.1 xfpager.1 xfprint.1 xfrun.1 \ + xfsound.1 xfterm.1 xftrash.1 xftree.1 xfwm.1 + +pre-patch: + @${PERL} -pi -e \ + 's|DATADIRNAME=lib|DATADIRNAME=share|g ; \ + s|USE_INCLUDED_LIBINTL=yes|#USE_INCLUDED_LIBINTL=yes|g ; \ + s|\$$\(top_builddir\)/intl/libintl.a|-lintl|g' ${WRKSRC}/configure .include diff -urN /usr/ports/x11-wm/xfce/files/patch-af x11-wm/xfce/files/patch-af --- /usr/ports/x11-wm/xfce/files/patch-af Thu Nov 2 20:09:10 2000 +++ x11-wm/xfce/files/patch-af Thu Jan 1 09:00:00 1970 @@ -1,22 +0,0 @@ ---- configure.orig Sun Oct 1 01:16:19 2000 -+++ configure Thu Nov 2 05:45:10 2000 -@@ -2622,6 +2622,8 @@ - if test "$cross_compiling" = yes; then - ac_cv_func_mmap_fixed_mapped=no - else -+ ac_save_LIBS="$LIBS" -+ LIBS="-lintl $LIBS" - cat > conftest.$ac_ext < scripts/xfce_setup - sed -e "s%XFCE_DIR%$XFCE_DIR%g" -e "s%XFCE_CONFDIR%$XFCE_CONFDIR%g" scripts/xfce_upgrade.in > scripts/xfce_upgrade - sed -e "s%XFCE_DIR%$XFCE_DIR%g" -e "s%XFCE_CONFDIR%$XFCE_CONFDIR%g" scripts/xfhelp.in > scripts/xfhelp diff -urN /usr/ports/x11-wm/xfce/files/patch-ag x11-wm/xfce/files/patch-ag --- /usr/ports/x11-wm/xfce/files/patch-ag Thu Jan 1 09:00:00 1970 +++ x11-wm/xfce/files/patch-ag Wed Feb 7 00:53:11 2001 @@ -0,0 +1,11 @@ +--- libs/configure.h.orig Tue Sep 5 02:26:09 2000 ++++ libs/configure.h Wed Feb 7 00:53:01 2001 +@@ -22,7 +22,7 @@ + #define CLOSE_STRING4 "quit" + + /* #ifdef __alpha */ +-#if defined(__alpha) && !defined(linux) ++#if defined(__alpha) && !(defined(linux) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__)) + #define NEEDS_ALPHA_HEADER + #undef BROKEN_SUN_HEADERS + #endif /* (__alpha) */ diff -urN /usr/ports/x11-wm/xfce/files/patch-ah x11-wm/xfce/files/patch-ah --- /usr/ports/x11-wm/xfce/files/patch-ah Thu Jan 1 09:00:00 1970 +++ x11-wm/xfce/files/patch-ah Tue Feb 6 05:07:58 2001 @@ -0,0 +1,9 @@ +--- other/xfsoundrc.in.orig Tue Sep 5 02:26:09 2000 ++++ other/xfsoundrc.in Tue Feb 6 05:07:47 2001 +@@ -1,5 +1,5 @@ + Play +-xfplay ++internal + XFCE_DIR/sounds/beep03.wav + XFCE_DIR/sounds/pop02.wav + diff -urN /usr/ports/x11-wm/xfce/files/patch-ai x11-wm/xfce/files/patch-ai --- /usr/ports/x11-wm/xfce/files/patch-ai Thu Jan 1 09:00:00 1970 +++ x11-wm/xfce/files/patch-ai Tue Feb 6 04:52:33 2001 @@ -0,0 +1,20 @@ +--- xfsound/xfdsp.c.orig Fri Jul 7 05:51:00 2000 ++++ xfsound/xfdsp.c Tue Feb 6 04:52:16 2001 +@@ -45,7 +45,7 @@ + #include + #include + #include +-#if defined(linux) ++#if defined(linux) || defined(__FreeBSD__) + #include /* guess :) */ + #endif + +@@ -62,7 +62,7 @@ + + int masterfd; + +-#if defined(linux) ++#if defined(linux) || defined(__FreeBSD__) + int + i_play (char *soundfile) + { diff -urN /usr/ports/x11-wm/xfce/files/patch-aj x11-wm/xfce/files/patch-aj --- /usr/ports/x11-wm/xfce/files/patch-aj Thu Jan 1 09:00:00 1970 +++ x11-wm/xfce/files/patch-aj Tue Feb 6 04:56:24 2001 @@ -0,0 +1,37 @@ +--- xfwm/session.c.orig Wed Jan 31 04:50:16 2001 ++++ xfwm/session.c Tue Feb 6 04:56:10 2001 +@@ -566,8 +566,10 @@ + callback_save_yourself2 (SmcConn sm_conn, SmPointer client_data) + { + char *path = NULL; +- char *filename = NULL; +- FILE *f = NULL; ++ char *filename; ++ FILE *f; ++ int fd; ++ + Bool success = True; + struct passwd *pwd; + +@@ -578,16 +580,18 @@ + path = pwd->pw_dir; + } + +- filename = tempnam (path, ".fs-"); ++ sprintf (filename, "path/.fs-XXXXXXXX"); ++ fd = mkstemp (filename); + + if (Scr.Options & SessionMgt) + { +- f = fopen (filename, "w"); ++ f = fdopen (fd, "w"); + success = save_session_state (sm_conn, filename, f); + fclose (f); + } +- if (!success) ++ if (!success || fd < 0) + xfwm_msg (WARN, "SaveSession", "Can't save session\n"); ++ close (fd); + /* also save session for builtin session mgt, so user will get + * back to his environmnent even if he doesn't use ICE + */ diff -urN /usr/ports/x11-wm/xfce/pkg-plist x11-wm/xfce/pkg-plist --- /usr/ports/x11-wm/xfce/pkg-plist Sat Feb 10 00:41:38 2001 +++ x11-wm/xfce/pkg-plist Thu Feb 8 02:37:46 2001 @@ -45,6 +45,7 @@ etc/xfce/xinitrc.mwm etc/xfce/xsession etc/xfce/xtree.reg +lib/gtk/themes/engines/libxfce.so share/locale/ca/LC_MESSAGES/xfce.mo share/locale/cs/LC_MESSAGES/xfce.mo share/locale/da/LC_MESSAGES/xfce.mo @@ -446,12 +447,12 @@ share/xfce/textures/paper.xpm share/xfce/textures/silver.xpm share/xfce/textures/stripe.xpm -@dirrm share/xfce/help -@dirrm share/xfce/sounds @dirrm share/xfce/textures -@dirrm share/xfce/fonts +@dirrm share/xfce/sounds @dirrm share/xfce/palettes @dirrm share/xfce/icons +@dirrm share/xfce/help +@dirrm share/xfce/fonts @dirrm share/xfce/backdrops @dirrm share/xfce @dirrm etc/xfce >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 Feb 9 11:20:42 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AAB0037B684 for ; Fri, 9 Feb 2001 11:20:00 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19JK0i02726; Fri, 9 Feb 2001 11:20:00 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E45A137B6A0 for ; Fri, 9 Feb 2001 11:16:05 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19JG5m02359; Fri, 9 Feb 2001 11:16:05 -0800 (PST) (envelope-from nobody) Message-Id: <200102091916.f19JG5m02359@freefall.freebsd.org> Date: Fri, 9 Feb 2001 11:16:05 -0800 (PST) From: tkato@prontomail.ne.jp To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24974: Update port: databases/unixODBC to 2.0.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24974 >Category: ports >Synopsis: Update port: databases/unixODBC to 2.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: Fri Feb 09 11:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: KATO Tsuguru >Release: 4.2-RELEASE i386 >Organization: >Environment: >Description: - Update to version 2.0.4 >How-To-Repeat: >Fix: diff -urN /usr/ports/databases/unixODBC/Makefile databases/unixODBC/Makefile --- /usr/ports/databases/unixODBC/Makefile Thu Jan 25 19:07:14 2001 +++ databases/unixODBC/Makefile Wed Feb 7 21:50:26 2001 @@ -6,8 +6,7 @@ # PORTNAME= unixODBC -PORTVERSION= 2.0.3 -PORTREVISION= 1 +PORTVERSION= 2.0.4 CATEGORIES= databases MASTER_SITES= http://www.unixodbc.org/ diff -urN /usr/ports/databases/unixODBC/distinfo databases/unixODBC/distinfo --- /usr/ports/databases/unixODBC/distinfo Wed Jan 17 20:27:52 2001 +++ databases/unixODBC/distinfo Wed Feb 7 21:59:06 2001 @@ -1 +1 @@ -MD5 (unixODBC-2.0.3.tar.gz) = a7834aa8568deaf361abc71e610798c4 +MD5 (unixODBC-2.0.4.tar.gz) = b79c866a961cea7325d467b79885aca0 >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 Feb 9 11:22:13 2001 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 6A36C37B684; Fri, 9 Feb 2001 11:21:54 -0800 (PST) Received: (from bright@localhost) by fw.wintelcom.net (8.10.0/8.10.0) id f19JLse15424; Fri, 9 Feb 2001 11:21:54 -0800 (PST) Date: Fri, 9 Feb 2001 11:21:54 -0800 From: Alfred Perlstein To: green@freebsd.org Cc: ports@freebsd.org Subject: remove openshh dependancy on poll() Message-ID: <20010209112154.L26076@fw.wintelcom.net> References: <20010209111133.J26076@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: <20010209111133.J26076@fw.wintelcom.net>; from bright@wintelcom.net on Fri, Feb 09, 2001 at 11:11:33AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org the openssh port applies patches to include poll.h, openssh doesn't use poll anymore and this hinders compiling it on 2.2.x thanks, Index: files/patch-an =================================================================== RCS file: /home/ncvs/ports/security/openssh/files/patch-an,v retrieving revision 1.11 diff -u -u -r1.11 patch-an --- files/patch-an 2000/11/04 23:04:25 1.11 +++ files/patch-an 2001/02/09 19:23:13 @@ -1,12 +1,11 @@ ---- sshd.c.orig Wed May 3 19:21:49 2000 -+++ sshd.c Fri May 12 07:11:43 2000 -@@ -49,6 +49,13 @@ +--- /home/bright/ssh/ssh/sshd.c Thu Aug 17 13:06:34 2000 ++++ sshd.c Fri Feb 9 11:19:08 2001 +@@ -49,6 +49,12 @@ int deny_severity = LOG_WARNING; #endif /* LIBWRAP */ +#ifdef __FreeBSD__ +#include -+#include +#include +#include +#endif /* __FreeBSD__ */ Index: files/patch-au =================================================================== RCS file: /home/ncvs/ports/security/openssh/files/patch-au,v retrieving revision 1.6 diff -u -u -r1.6 patch-au --- files/patch-au 2000/11/04 23:04:25 1.6 +++ files/patch-au 2001/02/09 19:23:41 @@ -1,12 +1,11 @@ ---- session.c.orig Sun Aug 27 23:50:54 2000 -+++ session.c Sat Nov 4 17:39:43 2000 -@@ -28,6 +28,13 @@ +--- /home/bright/ssh/ssh/session.c Sun Aug 27 20:50:54 2000 ++++ session.c Fri Feb 9 11:19:14 2001 +@@ -28,6 +28,12 @@ #include "auth.h" #include "auth-options.h" +#ifdef __FreeBSD__ +#include -+#include +#include +#include +#endif /* __FreeBSD__ */ @@ -14,7 +13,7 @@ #ifdef HAVE_LOGIN_CAP #include #endif -@@ -413,6 +420,13 @@ +@@ -413,6 +419,13 @@ log_init(__progname, options.log_level, options.log_facility, log_stderr); /* @@ -28,7 +27,7 @@ * Create a new session and process group since the 4.4BSD * setlogin() affects the entire process group. */ -@@ -516,6 +530,13 @@ +@@ -516,6 +529,13 @@ /* Child. Reinitialize the log because the pid has changed. */ log_init(__progname, options.log_level, options.log_facility, log_stderr); @@ -42,7 +41,7 @@ /* Close the master side of the pseudo tty. */ close(ptyfd); -@@ -602,6 +623,7 @@ +@@ -602,6 +622,7 @@ time_t last_login_time; struct passwd * pw = s->pw; pid_t pid = getpid(); @@ -50,7 +49,7 @@ /* * Get IP address of client. If the connection is not a socket, let -@@ -644,6 +666,20 @@ +@@ -644,6 +665,20 @@ else printf("Last login: %s from %s\r\n", time_string, buf); } @@ -71,7 +70,7 @@ if (options.print_motd) { #ifdef HAVE_LOGIN_CAP f = fopen(login_getcapstr(lc, "welcome", "/etc/motd", -@@ -949,7 +985,7 @@ +@@ -949,7 +984,7 @@ * initgroups, because at least on Solaris 2.3 it leaves file * descriptors open. */ @@ -80,7 +79,7 @@ close(i); /* Change current directory to the user\'s home directory. */ -@@ -973,7 +1009,27 @@ +@@ -973,7 +1008,27 @@ * in this order). */ if (!options.use_login) { -- -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 Fri Feb 9 11:35:35 2001 Delivered-To: freebsd-ports@freebsd.org Received: from palrel1.hp.com (palrel1.hp.com [156.153.255.242]) by hub.freebsd.org (Postfix) with ESMTP id C1E5837B69D for ; Fri, 9 Feb 2001 11:35:11 -0800 (PST) Received: from adlmail.cup.hp.com (adlmail.cup.hp.com [15.0.100.30]) by palrel1.hp.com (Postfix) with ESMTP id 3ED18534; Fri, 9 Feb 2001 11:35:11 -0800 (PST) Received: from cup.hp.com (p1000180.nsr.hp.com [15.109.0.180]) by adlmail.cup.hp.com (8.9.3 (PHNE_18546)/8.9.3 SMKit7.02) with ESMTP id LAA15701; Fri, 9 Feb 2001 11:35:09 -0800 (PST) Message-ID: <3A84466C.D9C0456A@cup.hp.com> Date: Fri, 09 Feb 2001 11:35:08 -0800 From: Marcel Moolenaar Organization: Hewlett-Packard X-Mailer: Mozilla 4.73 [en] (X11; U; Linux 2.2.12 i386) X-Accept-Language: en MIME-Version: 1.0 To: Szilveszter Adam Cc: ports@FreeBSD.ORG Subject: Re: Dangling symlink in /usr/compat/linux References: <3A7D28EA.9EF46BAE@gorean.org> <20010204112342.A15191@petra.hos.u-szeged.hu> <3A7DFC47.C76A9872@FreeBSD.org> <20010205091559.A5563@petra.hos.u-szeged.hu> <3A843594.B28776D8@cup.hp.com> <20010209194521.D27987@petra.hos.u-szeged.hu> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Szilveszter Adam wrote: > > I see it nowhere in the headers, so I am going to add a Cc: for it... Ah, yes. The intention was there; just not the action... > > The link is correct. On a Redhat 6.2 system: > > > > dhcp00% cd /mnt/usr/lib > > dhcp00% ls -al X11 > > lrwxrwxrwx 1 root wheel 16 Jul 18 2000 X11 -> ../X11R6/lib/X11 > > dhcp00% more /mnt/etc/redhat-release > > Red Hat Linux release 6.2 (Zoot) > > Which is not the point:-) Why not? The problem can be caused by the fact that the directory the link is pointing to is missing or it can be caused by the link being wrong. I've verified that in this case the link is correct. :-) > > Can you tell me what the problem was. I missed that. > > The problem if you want it that way, is that although the symlink is > created upon installing linux_base, the directory it points to is not. > Hence the ${SUBJECT} about a "Dangling symlink". (If you install > linux_devtools, the directory is created, since there is a subdir in it. > That's why the problem may be harder to detect:-) The symlinks are created by the RPM packages themselves. The fact that they are explicitly created in the package list is because they wouldn't be there when you install linux_base as a package otherwise. I use the philosophy in linux_base and linux_devtools that I don't correct any bugs inherent in the Linux distribution. AFAICT, the dangling symlink is created by filesystem-1.3.5-1.noarch.rpm, which is one of the first packages that gets installed. -- Marcel Moolenaar mail: marcel@cup.hp.com / marcel@FreeBSD.org tel: (408) 447-4222 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 11:39:29 2001 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 570FC37B6AD; Fri, 9 Feb 2001 11:39:11 -0800 (PST) Received: (from des@localhost) by flood.ping.uio.no (8.9.3/8.9.3) id UAA74561; Fri, 9 Feb 2001 20:39:04 +0100 (CET) (envelope-from 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: Charlie Root Cc: green@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: OpenSSH-2.2.0 References: <200102091759.LAA00556@defero.citexas.com> From: Dag-Erling Smorgrav Date: 09 Feb 2001 20:39:03 +0100 In-Reply-To: Charlie Root's message of "Fri, 9 Feb 2001 11:59:32 -0600 (CST)" Message-ID: Lines: 10 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 Charlie Root writes: > I am attempting to install openssh on newly installed freebsd/4.x-stable os. > I received a message that the openssh port requires libfetch.so.2. I doubt it. More likely, something's wrong with fetch(1). Try just running 'fetch' and see what response you get. 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 Feb 9 12:11:56 2001 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 4FAA437B69B for ; Fri, 9 Feb 2001 12:11:39 -0800 (PST) Received: from petra.hos.u-szeged.hu by sol.cc.u-szeged.hu (8.9.3+Sun/SMI-SVR4) id UAA29090; Fri, 9 Feb 2001 20:56:36 +0100 (MET) Received: from sziszi by petra.hos.u-szeged.hu with local (Exim 3.12 #1 (Debian)) id 14RJem-0008Jx-00; Fri, 09 Feb 2001 20:56:36 +0100 Date: Fri, 9 Feb 2001 20:56:36 +0100 From: Szilveszter Adam To: Marcel Moolenaar Cc: ports@FreeBSD.ORG Subject: Re: Dangling symlink in /usr/compat/linux Message-ID: <20010209205636.K27987@petra.hos.u-szeged.hu> Mail-Followup-To: Szilveszter Adam , Marcel Moolenaar , ports@FreeBSD.ORG References: <3A7D28EA.9EF46BAE@gorean.org> <20010204112342.A15191@petra.hos.u-szeged.hu> <3A7DFC47.C76A9872@FreeBSD.org> <20010205091559.A5563@petra.hos.u-szeged.hu> <3A843594.B28776D8@cup.hp.com> <20010209194521.D27987@petra.hos.u-szeged.hu> <3A84466C.D9C0456A@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: <3A84466C.D9C0456A@cup.hp.com>; from marcel@cup.hp.com on Fri, Feb 09, 2001 at 11:35:08AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, On Fri, Feb 09, 2001 at 11:35:08AM -0800, Marcel Moolenaar wrote: > > I see it nowhere in the headers, so I am going to add a Cc: for it... > > Ah, yes. The intention was there; just not the action... :-) OK, I understood your explanation, this means there is not a lot we can (or should?) do about it... (if you think that creating the empty dir is not a good idea.) -- 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 Fri Feb 9 12:36:43 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 2446537B6A8; Fri, 9 Feb 2001 12:36:27 -0800 (PST) Received: (from jim@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19KaQR13513; Fri, 9 Feb 2001 12:36:26 -0800 (PST) (envelope-from jim) Date: Fri, 9 Feb 2001 12:36:26 -0800 (PST) From: Message-Id: <200102092036.f19KaQR13513@freefall.freebsd.org> To: anders@fix.no, jim@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24134: New port: mail/drac Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: mail/drac State-Changed-From-To: open->closed State-Changed-By: jim State-Changed-When: Fri Feb 9 12:36:10 PST 2001 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=24134 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 13: 8:18 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5BD4637B69E; Fri, 9 Feb 2001 13:08:02 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19L82s19097; Fri, 9 Feb 2001 13:08:02 -0800 (PST) (envelope-from olgeni) Date: Fri, 9 Feb 2001 13:08:02 -0800 (PST) From: Message-Id: <200102092108.f19L82s19097@freefall.freebsd.org> To: tkato@prontomail.ne.jp, olgeni@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24932: Update port: x11-wm/xfce to version 3.7.2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: x11-wm/xfce to version 3.7.2 State-Changed-From-To: open->closed State-Changed-By: olgeni State-Changed-When: Fri Feb 9 13:06:59 PST 2001 State-Changed-Why: This PR has been superseded by ports/24975. http://www.freebsd.org/cgi/query-pr.cgi?pr=24932 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 13: 9:18 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4607037B4EC; Fri, 9 Feb 2001 13:09:02 -0800 (PST) Received: (from olgeni@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19L92q19226; Fri, 9 Feb 2001 13:09:02 -0800 (PST) (envelope-from olgeni) Date: Fri, 9 Feb 2001 13:09:02 -0800 (PST) From: Message-Id: <200102092109.f19L92q19226@freefall.freebsd.org> To: olgeni@FreeBSD.org, freebsd-ports@FreeBSD.org, olgeni@FreeBSD.org Subject: Re: ports/24975: Update port: x11-wm/xfce (fix ports/24932) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: x11-wm/xfce (fix ports/24932) Responsible-Changed-From-To: freebsd-ports->olgeni Responsible-Changed-By: olgeni Responsible-Changed-When: Fri Feb 9 13:08:09 PST 2001 Responsible-Changed-Why: I'll look into this. http://www.freebsd.org/cgi/query-pr.cgi?pr=24975 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 13:15:47 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D11D337B699; Fri, 9 Feb 2001 13:15:29 -0800 (PST) Received: (from keith@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19LFO420126; Fri, 9 Feb 2001 13:15:24 -0800 (PST) (envelope-from keith) Date: Fri, 9 Feb 2001 13:15:24 -0800 (PST) From: Message-Id: <200102092115.f19LFO420126@freefall.freebsd.org> To: phj@cn.FreeBSD.org, keith@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24861: update ports Makefile,pkg-xxx files. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports Makefile,pkg-xxx files. State-Changed-From-To: open->closed State-Changed-By: keith State-Changed-When: Fri Feb 9 13:14:51 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24861 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 14: 0: 9 2001 Delivered-To: freebsd-ports@freebsd.org Received: from root.ucsc.edu (root.ucsc.edu [128.114.129.224]) by hub.freebsd.org (Postfix) with ESMTP id 0BB3F37B503 for ; Fri, 9 Feb 2001 13:59:53 -0800 (PST) Received: (from booloo@localhost) by root.ucsc.edu (8.9.3/8.9.3) id NAA01634 for ports@freebsd.org; Fri, 9 Feb 2001 13:59:52 -0800 (PST) (envelope-from booloo) Date: Fri, 9 Feb 2001 13:59:52 -0800 From: Mark Boolootian To: ports@freebsd.org Subject: upgrade kit for 4.0 to 4-STABLE missing Message-ID: <20010209135952.A1623@root.ucsc.edu> Reply-To: booloo@cats.ucsc.edu Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org It appears that the 4.0 to 4-STABLE upgrade kit is missing. ftp://ftp.freebsd.org/pub/FreeBSD/ports/i386/packages-4-stable/Latest/40upgrade.tgz does not exist. mb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 14: 0:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 19C4637B69C for ; Fri, 9 Feb 2001 14:00:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19M01J24967; Fri, 9 Feb 2001 14:00:01 -0800 (PST) (envelope-from gnats) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id E00F137B684 for ; Fri, 9 Feb 2001 13:54:44 -0800 (PST) Received: (from nobody@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f19Lsid24339; Fri, 9 Feb 2001 13:54:44 -0800 (PST) (envelope-from nobody) Message-Id: <200102092154.f19Lsid24339@freefall.freebsd.org> Date: Fri, 9 Feb 2001 13:54:44 -0800 (PST) From: cmf@iabears.org To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-1.0 Subject: ports/24976: gemdropx port is missing a dependency on kdelibs2 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24976 >Category: ports >Synopsis: gemdropx port is missing a dependency on kdelibs2 >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 Feb 09 14:00:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Carl Fongheiser >Release: 4.2-RELEASE >Organization: >Environment: FreeBSD kf0yn.ampr.org 4.2-RELEASE FreeBSD 4.2-RELEASE #1: Sat Feb 3 16:02:15 CST 2001 cmf@kf0yn.ampr.org:/usr/src/sys/compile/OSITOS i386 >Description: The gemdropx port uses libartsc, which is part of the kdelibs2 port. The Makefile fails to include a dependency on that library, so the build fails if kdelibs2 is not installed. >How-To-Repeat: (On a machine without kdelibs2): # cd /usr/ports/games/gemdropx # make >Fix: Apply the following patch: *** Makefile.save Fri Feb 9 15:39:46 2001 --- Makefile Fri Feb 9 15:41:15 2001 *************** *** 13,19 **** MAINTAINER= ports@FreeBSD.org ! LIB_DEPENDS= SDL_mixer.2:${PORTSDIR}/audio/sdl_mixer SDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config --- 13,20 ---- MAINTAINER= ports@FreeBSD.org ! LIB_DEPENDS= SDL_mixer.2:${PORTSDIR}/audio/sdl_mixer \ ! artsc.0:${PORTSDIR}/x11/kdelibs2 SDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config >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 Feb 9 16:15:12 2001 Delivered-To: freebsd-ports@freebsd.org Received: from vger.vgernet.net (vgernet.net [205.219.186.1]) by hub.freebsd.org (Postfix) with ESMTP id C911937B6C6 for ; Fri, 9 Feb 2001 16:14:54 -0800 (PST) Received: from M (bost104.vgernet.net [206.25.237.104]) by vger.vgernet.net (8.8.8/8.8.5) with SMTP id UAA18692 for ; Fri, 9 Feb 2001 20:46:15 -0500 (EST) Message-ID: <000a01c092f7$01dfde80$68ed19ce@EveSanders> From: "morris" To: Subject: Printer port Date: Fri, 9 Feb 2001 19:18:30 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_0007_01C092CD.16846420" 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 This is a multi-part message in MIME format. ------=_NextPart_000_0007_01C092CD.16846420 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable i have a printer but it will not run unless i have a lpt1 port if at all = possibe i would like to download the lpt1 port if u have it thank you ------=_NextPart_000_0007_01C092CD.16846420 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
i have a printer but it will not run = unless i have=20 a lpt1 port if at all possibe i would like to download the lpt1 port if = u have=20 it
 
thank you
------=_NextPart_000_0007_01C092CD.16846420-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 16:21:51 2001 Delivered-To: freebsd-ports@freebsd.org Received: from sj-msg-core-4.cisco.com (sj-msg-core-4.cisco.com [171.71.163.10]) by hub.freebsd.org (Postfix) with ESMTP id 81A9D37B6D2; Fri, 9 Feb 2001 16:21:31 -0800 (PST) Received: from bmah-freebsd-0.cisco.com (bmah-freebsd-0.cisco.com [171.70.84.42]) by sj-msg-core-4.cisco.com (8.9.3/8.9.1) with ESMTP id QAA29719; Fri, 9 Feb 2001 16:21:33 -0800 (PST) Received: (from bmah@localhost) by bmah-freebsd-0.cisco.com (8.11.1/8.11.1) id f1A0LVS25017; Fri, 9 Feb 2001 16:21:31 -0800 (PST) (envelope-from bmah) Message-Id: <200102100021.f1A0LVS25017@bmah-freebsd-0.cisco.com> X-Mailer: exmh version 2.3.1 01/19/2001 with nmh-1.0.4 To: "Leif Neland" Cc: "Nik Clayton" , "Michael C . Wu" , freebsd-ports@FreeBSD.ORG Subject: Re: pkg_update In-Reply-To: <00c501c092ec$678e73a0$0e00a8c0@neland.dk> References: <20010207202335.C20454@peorth.iteration.net> <20010208232645.A86390@canyon.nothing-going-on.org> <00c501c092ec$678e73a0$0e00a8c0@neland.dk> Comments: In-reply-to "Leif Neland" message dated "Sat, 10 Feb 2001 00:02:39 +0100." From: "Bruce A. Mah" Reply-To: bmah@FreeBSD.ORG X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_-79411961P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Fri, 09 Feb 2001 16:21:31 -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --==_Exmh_-79411961P Content-Type: text/plain; charset=us-ascii [moved to -ports] If memory serves me right, "Leif Neland" wrote: > Couldn't it be made possible to use just the update-of-dependencies part of p > kg_update without doing the pkg_delete/pkg_install bit? > > Perhaps I'll try... Manipulating the bits is relatively straightforward. Doing so in a meaningful way, and being able to cover all the edge cases, that's quite hard (as I've just re-learned). If you browse through the archives of -ports for the last few days, you'll get an idea of some of the problems. Every few months, the topic comes up, and discussion is just tapering off from the last round. Not to say you shouldn't work on this problem...just saying that it's not quite as straightforward as most people (myself included) think when they first tackle it. Cheers, Bruce. --==_Exmh_-79411961P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: Exmh version 2.2 06/23/2000 iD8DBQE6hImK2MoxcVugUsMRAvR/AKDqAOfVNhWx0jVbTN6TnPDV+9ArXgCdG9cv RlvxBKFAHu+6wDRizamoiDo= =qSgS -----END PGP SIGNATURE----- --==_Exmh_-79411961P-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 17:30:39 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8B86037B67D for ; Fri, 9 Feb 2001 17:30:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1A1U3w54287; Fri, 9 Feb 2001 17:30:03 -0800 (PST) (envelope-from gnats) Received: from mail.westbend.net (unknown [216.106.246.3]) by hub.freebsd.org (Postfix) with ESMTP id 96BE837B4EC for ; Fri, 9 Feb 2001 17:27:06 -0800 (PST) Received: (from hetzels@localhost) by mail.westbend.net (8.11.1/8.11.1) id f1A1R5K15973; Fri, 9 Feb 2001 19:27:05 -0600 (CST) (envelope-from hetzels) Message-Id: <200102100127.f1A1R5K15973@mail.westbend.net> Date: Fri, 9 Feb 2001 19:27:05 -0600 (CST) From: "Scot W. Hetzel" Reply-To: "Scot W. Hetzel" To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24980: Upgrade Apache13-FP [MAINTAINER] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24980 >Category: ports >Synopsis: Upgrade Apache13-FP to 1.3.17 [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: Fri Feb 09 17:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Scot W. Hetzel >Release: FreeBSD 4.2-STABLE i386 >Organization: West Bend Internet >Environment: >Description: Upgrade of apache13-fp to 1.3.17 and fix formating bug in mod_frontpage.c. This corrects the formating bug reported in PR 24912. The port will create a user/group apache (uid/gid 80), and set the Apache Server to run as this user. This can be changed by specifying -DHTTPD_USER= when configuring/building the port. The suexec executable is now installed by default. To disable suexec use -DNO_SUEXEC when configuring/building the port. >How-To-Repeat: >Fix: Changed Files Makefile distinfo files/mod_frontpage.c files/patch.ab files/patch-lang.en pkg-install pkg-plist Removed Files Remove all files/patch-lang.* files except files/patch-lang.en Apply the following patch: diff -ruN apache13-fp.orig/Makefile apache13-fp/Makefile --- apache13-fp.orig/Makefile Mon Jan 1 04:15:11 2001 +++ apache13-fp/Makefile Fri Feb 9 19:08:47 2001 @@ -6,7 +6,7 @@ # PORTNAME= apache_fp -PORTVERSION= 1.3.14 +PORTVERSION= 1.3.17 CATEGORIES= www MASTER_SITES= http://www.apache.org/dist/ \ ftp://ftp.microsoft.com/products/frontpage/ \ @@ -62,6 +62,9 @@ # # Set APACHE_PERF_TUNING env. variable to YES to get maximum performance # +HTTPD_USER?= apache +HTTPD_GROUP?= apache +USER_WEB_DIR?= public_html HAS_CONFIGURE= yes CONFIGURE_ARGS= \ @@ -69,6 +72,8 @@ --server-gid=nogroup \ --with-perl=${PERL} \ --with-layout=${FILESDIR}/FreeBSD.layout:FreeBSD \ + --server-uid=${HTTPD_USER} \ + --server-gid=${HTTPD_GROUP} \ --without-confadjust \ --enable-shared=max \ --enable-module=most \ @@ -102,14 +107,12 @@ MAN1= dbmmanage.1 htdigest.1 htpasswd.1 MAN8= ab.8 apachectl.8 apxs.8 httpd.8 logresolve.8 rotatelogs.8 -.if defined(SUEXEC) -HTTPD_USER?=www -USER_DIR?=public_html +.ifndef NO_SUEXEC CONFIGURE_ARGS+= --enable-suexec \ --suexec-caller=${HTTPD_USER} \ --suexec-docroot=${PREFIX}/www/data \ --suexec-logfile=/var/log/httpd-suexec.log \ - --suexec-userdir=${USER_DIR} \ + --suexec-userdir=${USER_WEB_DIR} \ --suexec-safepath='/bin:/usr/bin:${PREFIX}/bin' MAN8+= suexec.8 .endif @@ -142,13 +145,18 @@ .endif post-configure: -.if defined(SUEXEC) +.ifndef NO_SUEXEC ${CP} ${PKGDIR}/pkg-plist ${PLIST} .else ${CAT} ${PKGDIR}/pkg-plist | ${GREP} -v sbin/suexec > ${PLIST} .endif IMAGES= apache_pb.gif fplogo.gif powerlogo.gif + +# Create apache user and group +pre-install: + @PKG_PREFIX=${PREFIX} BATCH=${BATCH} PKG_USER=${HTTPD_USER} \ + PKG_GROUP=${HTTPD_GROUP} ${SH} ${PKGINSTALL} ${PKGNAME} PRE-INSTALL post-install: @if [ ! -f ${PREFIX}/etc/rc.d/apache.sh ]; then \ diff -ruN apache13-fp.orig/distinfo apache13-fp/distinfo --- apache13-fp.orig/distinfo Mon Nov 27 19:40:13 2000 +++ apache13-fp/distinfo Thu Feb 8 21:39:46 2001 @@ -1,4 +1,4 @@ -MD5 (apache_1.3.14.tar.gz) = 34803e3d83a0a9ed981b571657b33109 +MD5 (apache_1.3.17.tar.gz) = bcb3c0db956709ad8f04655fd75621e6 MD5 (fp40.bsdi.tar.z) = f469ea85b69d69f80f32c58fb0d273c4 MD5 (powerlogo.gif) = 0f106073b3c7844cf22d4df126b27c62 MD5 (fplogo.gif) = db0fd186b50fde14ff2ec638382a85e6 diff -ruN apache13-fp.orig/files/mod_frontpage.c apache13-fp/files/mod_frontpage.c --- apache13-fp.orig/files/mod_frontpage.c Sun Jan 2 21:36:32 2000 +++ apache13-fp/files/mod_frontpage.c Thu Feb 8 20:25:05 2001 @@ -634,7 +634,7 @@ * the owners and groups of both directories to match, and have both a * uid and gid in the allowable range. */ - sprintf(szFormat, "Incorrect permissions on webroot \"\%-.0124s\" and webroot's _vti_pvt directory, the owners and groups must match and have a uid >= %d and gid >= %d", LOWEST_VALID_UID, LOWEST_VALID_GID); + sprintf(szFormat, "Incorrect permissions on webroot \"%%-.1024s\" and webroot's _vti_pvt directory, the owners and groups must match and have a uid >= %d and gid >= %d", LOWEST_VALID_UID, LOWEST_VALID_GID); LogFrontPageError(r->server, szFormat, szBuf, "FrontPageAlias()", FALSE); diff -ruN apache13-fp.orig/files/patch-ab apache13-fp/files/patch-ab --- apache13-fp.orig/files/patch-ab Mon Mar 20 19:19:58 2000 +++ apache13-fp/files/patch-ab Thu Feb 8 22:42:05 2001 @@ -1,6 +1,6 @@ ---- Makefile.tmpl.orig Tue Jan 11 13:47:41 2000 -+++ Makefile.tmpl Thu Mar 2 23:00:19 2000 -@@ -123,6 +123,7 @@ +--- Makefile.tmpl.orig Mon Jan 15 10:26:17 2001 ++++ Makefile.tmpl Thu Feb 8 22:41:43 2001 +@@ -126,6 +126,7 @@ runtimedir = @runtimedir@ logfiledir = @logfiledir@ proxycachedir = @proxycachedir@ @@ -8,7 +8,7 @@ libexecdir_relative = @libexecdir_relative@ -@@ -266,9 +267,9 @@ +@@ -269,9 +270,9 @@ $(MKDIR) $(root)$(mandir)/man1 $(MKDIR) $(root)$(mandir)/man8 $(MKDIR) $(root)$(sysconfdir) @@ -20,7 +20,7 @@ $(MKDIR) $(root)$(includedir) $(MKDIR) $(root)$(includedir)/xml $(MKDIR) $(root)$(runtimedir) -@@ -324,19 +325,34 @@ +@@ -327,19 +328,34 @@ echo "$(INSTALL_DSO) $(TOP)/$(SRC)/$${mod} $(root)$(libexecdir)/$${file}"; \ $(INSTALL_DSO) $(TOP)/$(SRC)/$${mod} $(root)$(libexecdir)/$${file}; \ name=`$(TOP)/$(AUX)/fmn.sh $(TOP)/$(SRC)/$${mod}`; \ @@ -60,7 +60,7 @@ fi @echo "<=== [programs]" -@@ -405,6 +421,7 @@ +@@ -408,6 +424,7 @@ echo "$(INSTALL_SCRIPT) $(TOP)/$(SRC)/support/apachectl[*] $(root)$(sbindir)/$${apachectl}"; \ sed -e 's;PIDFILE=.*;PIDFILE=$(runtimedir)/$(TARGET).pid;' \ -e 's;HTTPD=.*;HTTPD=$(sbindir)/$(TARGET);' \ @@ -68,7 +68,7 @@ < $(TOP)/$(SRC)/support/apachectl > $(TOP)/$(SRC)/.apaci.install.tmp && \ $(INSTALL_SCRIPT) $(TOP)/$(SRC)/.apaci.install.tmp $(root)$(sbindir)/$${apachectl}; \ echo "$(INSTALL_DATA) $(TOP)/$(SRC)/support/apachectl.8 $(root)$(mandir)/man8/$${apachectl}.8"; \ -@@ -452,26 +469,30 @@ +@@ -455,26 +472,28 @@ # icons and distributed CGI scripts. install-data: @echo "===> [data: Installing initial data files]" @@ -89,10 +89,8 @@ - echo "[PRESERVING EXISTING DATA SUBDIR: $(root)$(cgidir)/]"; \ - else \ + (cd $(root)$(doc_prefix)/ && $(TAR) -xf -); \ -+ for lang in ca cz de dk ee en es fr it ja.jis lu nl po.iso-pl pt pt-br se; do \ -+ mv $(root)$(doc_prefix)/index.html.$${lang} \ -+ $(root)$(doc_prefix)/index.html.$${lang}-dist ; \ -+ done; \ ++ mv $(root)$(doc_prefix)/index.html.en \ ++ $(root)$(doc_prefix)/index.html.en-dist ; \ + find $(root)$(doc_prefix)/ -type d -exec chmod a+rx {} \; ; \ + find $(root)$(doc_prefix)/ -type f -exec chmod a+r {} \; ; \ +# fi @@ -113,7 +111,7 @@ @echo "Copying tree $(TOP)/icons/ -> $(root)$(iconsdir)/"; \ (cd $(TOP)/icons/ && $(TAR) $(TAROPT) - *) |\ (cd $(root)$(iconsdir)/ && $(TAR) -xf -); \ -@@ -504,42 +525,47 @@ +@@ -507,42 +526,47 @@ -e 's;@@ServerRoot@@/icons;$(iconsdir);' \ -e 's;@@ServerRoot@@/cgi-bin;$(cgidir);' \ -e 's;@@ServerRoot@@/proxy;$(proxycachedir);' \ diff -ruN apache13-fp.orig/files/patch-lang.en apache13-fp/files/patch-lang.en --- apache13-fp.orig/files/patch-lang.en Wed Mar 1 00:25:12 2000 +++ apache13-fp/files/patch-lang.en Thu Feb 8 22:11:17 2001 @@ -1,27 +1,31 @@ ---- htdocs/index.html.en.orig Sat Nov 20 15:29:40 1999 -+++ htdocs/index.html.en Sun Feb 20 16:57:41 2000 -@@ -27,12 +27,18 @@ -


+--- htdocs/index.html.en.orig Fri Jan 19 13:39:47 2001 ++++ htdocs/index.html.en Thu Feb 8 22:10:30 2001 +@@ -32,13 +32,25 @@ +
--

--The Apache documentation has been included with this distribution. -+

The Apache documentation has been included with this distribution.

-+

The FrontPage 2000 Extentions (mod_frontpage) has been installed, read the -+FrontPage 2000 documentation carefully.

-+

Information on the FreeBSD operating system can be found on the FreeBSD Home Page.

-+

You are free to use the images below on an Apache-powered web server. Thanks for using Apache and FreeBSD! +-

The Apache documentation has been included with ++

The Apache documentation has been included with + this distribution.

+ ++

The Microsoft FrontPage 2000 Extentions has been installed with this ++Apache Server. Read the Microsoft FrontPage 2000 documentation carefully.

++ ++

Information of the FreeBSD operating system can be found on the +

+ diff -ruN apache13-fp.orig/pkg-install apache13-fp/pkg-install --- apache13-fp.orig/pkg-install Mon Mar 20 19:19:59 2000 +++ apache13-fp/pkg-install Fri Feb 9 19:09:49 2001 @@ -5,6 +5,8 @@ # Created by: hetzels@westbend.net PKG_BATCH=${BATCH:=NO} +PKG_USER=${PKG_USER:=apache} +PKG_GROUP=${PKG_GROUP:=apache} PKG_PREFIX=${PKG_PREFIX} HOST_NAME=`/bin/hostname` @@ -20,14 +22,56 @@ IMAGES_DIR=${AP_SHARE}/manual/images IMAGES_VTI=${PKG_PREFIX}/www/data/images/_vti_cnf +create_user() +{ + if [ ! -x /usr/sbin/pw ]; then + echo "*** Please add a user and a group name \`${PKG_GROUP}' before installing this package." + exit 69 + fi + + if ! pw show group ${PKG_GROUP} -q > /dev/null; then + gid=80 + while pw show group -g ${gid} -q > /dev/null; do + gid=`expr ${gid} + 1` + done + if ! pw add group ${PKG_GROUP} -g ${gid}; then + e=$? + echo "*** Failed to add group \`${PKG_GROUP}'. Please add it manually." + exit ${e} + fi + echo "*** Added group \`${PKG_GROUP}' (id ${gid})." + else + gid=`pw show group ${PKG_GROUP} 2> /dev/null | cut -d: -f3` + fi + + if [ -x /sbin/nologin ]; then + shell="/sbin/nologin" + else + shell="/nonexistent" + fi + + if ! pw show user ${PKG_USER} -q > /dev/null; then + uid=80 + while pw show user -u ${uid} -q > /dev/null; do + uid=`expr ${uid} + 1` + done + if ! pw add user ${PKG_USER} -u ${uid} -g ${gid} \ + -d "${PKG_PREFIX}/www/data" \ + -c "The Apache Web Server" \ + -s "${shell}" -p "*" ; then + e=$? + echo "*** Failed to add user \`${PKG_USER}'. Please add it manually." + exit ${e} + fi + echo "*** Added user \`${PKG_USER}' (id ${uid})" + fi +} + create_apache_lang_doc () { - for lang in ca cz de dk ee en es fr it ja.jis lu nl po.iso-pl pt pt-br se - { - /bin/cat ${AP_SHARE}/index.html.${lang}-dist | \ + /bin/cat ${AP_SHARE}/index.html.en-dist | \ /usr/bin/sed -e 's;@@HOSTNAME@@;'${HOST_NAME}';' \ - > ${AP_SHARE}/index.html.${lang} - } + > ${AP_SHARE}/index.html.en } create_apache_doc_root () @@ -42,12 +86,7 @@ { /bin/cp -rp ${IMAGES_DIR}/${file} ${AP_DATA}/images } - - for lang in ca cz de dk ee en es fr it ja.jis lu nl po.iso-pl pt pt-br se - { - /bin/cp -rp ${AP_SHARE}/index.html.${lang} \ - ${AP_DATA}/index.html.${lang} - } + /bin/cp -rp ${AP_SHARE}/index.html.en ${AP_DATA}/index.html.en fi } @@ -101,6 +140,7 @@ case $2 in PRE-INSTALL) + create_user ;; POST-INSTALL) # If we are not in batch mode then run the FP install script. diff -ruN apache13-fp.orig/pkg-plist apache13-fp/pkg-plist --- apache13-fp.orig/pkg-plist Sat Sep 2 02:29:32 2000 +++ apache13-fp/pkg-plist Fri Feb 9 19:11:06 2001 @@ -7,8 +7,8 @@ etc/apache/mime.types.default etc/apache/srm.conf.default etc/rc.d/apache.sh -include/apache/alloc.h include/apache/ap.h +include/apache/ap_alloc.h include/apache/ap_compat.h include/apache/ap_config.h include/apache/ap_config_auto.h @@ -94,38 +94,58 @@ share/doc/apache/apache_pb.gif @exec if [ ! -h %B/images ]; then (cd %B ; ln -s manual/images images); fi @unexec if [ -h %B/images ]; then rm -f %B/images; fi -share/doc/apache/index.html.ca-dist -share/doc/apache/index.html.cz-dist -share/doc/apache/index.html.de-dist -share/doc/apache/index.html.dk-dist -share/doc/apache/index.html.ee-dist +share/doc/apache/README.rus +share/doc/apache/index.html.ca +share/doc/apache/index.html.cz +share/doc/apache/index.html.de +share/doc/apache/index.html.dk +share/doc/apache/index.html.ee +share/doc/apache/index.html.el share/doc/apache/index.html.en-dist -share/doc/apache/index.html.es-dist -share/doc/apache/index.html.fr-dist -share/doc/apache/index.html.it-dist -share/doc/apache/index.html.ja.jis-dist -share/doc/apache/index.html.lu-dist -share/doc/apache/index.html.nl-dist -share/doc/apache/index.html.po.iso-pl-dist -share/doc/apache/index.html.pt-dist -share/doc/apache/index.html.pt-br-dist -share/doc/apache/index.html.se-dist -@unexec rm -rf %B/index.html.?? -@unexec rm -rf %B/index.html.po.iso-pl -@unexec rm -rf %B/index.html.ja.jis -@unexec rm -rf %B/index.html.pt-br +share/doc/apache/index.html.es +share/doc/apache/index.html.fr +share/doc/apache/index.html.he.iso8859-8 +share/doc/apache/index.html.it +share/doc/apache/index.html.ja.jis +share/doc/apache/index.html.kr.iso-kr +share/doc/apache/index.html.lu +share/doc/apache/index.html.nl +share/doc/apache/index.html.no +share/doc/apache/index.html.po.iso-pl +share/doc/apache/index.html.pt +share/doc/apache/index.html.pt-br +share/doc/apache/index.html.ru.cp-1251 +share/doc/apache/index.html.ru.cp866 +share/doc/apache/index.html.ru.iso-ru +share/doc/apache/index.html.ru.koi8-r +share/doc/apache/index.html.ru.ucs2 +share/doc/apache/index.html.ru.ucs4 +share/doc/apache/index.html.ru.utf8 +share/doc/apache/index.html.se +share/doc/apache/index.html.tw.Big5 +@unexec rm -rf %B/index.html.en share/doc/apache/manual/LICENSE share/doc/apache/manual/bind.html share/doc/apache/manual/cgi_path.html +share/doc/apache/manual/configuring.html.en +share/doc/apache/manual/configuring.html.ja.jis share/doc/apache/manual/content-negotiation.html -share/doc/apache/manual/custom-error.html +share/doc/apache/manual/custom-error.html.en +share/doc/apache/manual/custom-error.html.ja.jis share/doc/apache/manual/dns-caveats.html share/doc/apache/manual/dso.html share/doc/apache/manual/ebcdic.html share/doc/apache/manual/env.html share/doc/apache/manual/footer.html -share/doc/apache/manual/handler.html +share/doc/apache/manual/handler.html.en +share/doc/apache/manual/handler.html.ja.jis share/doc/apache/manual/header.html +share/doc/apache/manual/howto/cgi.html.en +share/doc/apache/manual/howto/cgi.html.ja.jis +share/doc/apache/manual/howto/footer.html +share/doc/apache/manual/howto/header.html +share/doc/apache/manual/howto/ssi.html +share/doc/apache/manual/images/apache_header.gif share/doc/apache/manual/images/apache_pb.gif share/doc/apache/manual/images/custom_errordocs.gif share/doc/apache/manual/images/fplogo.gif @@ -135,11 +155,14 @@ share/doc/apache/manual/images/mod_rewrite_fig1.gif share/doc/apache/manual/images/mod_rewrite_fig2.fig share/doc/apache/manual/images/mod_rewrite_fig2.gif +share/doc/apache/manual/images/pixel.gif share/doc/apache/manual/images/powerlogo.gif share/doc/apache/manual/images/sub.gif -share/doc/apache/manual/index.html +share/doc/apache/manual/index.html.en +share/doc/apache/manual/index.html.ja.jis share/doc/apache/manual/install-tpf.html -share/doc/apache/manual/install.html +share/doc/apache/manual/install.html.en +share/doc/apache/manual/install.html.ja.jis share/doc/apache/manual/invoking.html share/doc/apache/manual/keepalive.html share/doc/apache/manual/location.html @@ -165,14 +188,17 @@ share/doc/apache/manual/misc/perf.html share/doc/apache/manual/misc/rewriteguide.html share/doc/apache/manual/misc/security_tips.html +share/doc/apache/manual/misc/tutorials.html share/doc/apache/manual/misc/vif-info.html share/doc/apache/manual/misc/windoz_keepalive.html share/doc/apache/manual/mod/core.html -share/doc/apache/manual/mod/directive-dict.html +share/doc/apache/manual/mod/directive-dict.html.en +share/doc/apache/manual/mod/directive-dict.html.ja.jis share/doc/apache/manual/mod/directives.html share/doc/apache/manual/mod/footer.html share/doc/apache/manual/mod/header.html share/doc/apache/manual/mod/index.html +share/doc/apache/manual/mod/index-bytype.html share/doc/apache/manual/mod/mod_access.html share/doc/apache/manual/mod/mod_actions.html share/doc/apache/manual/mod/mod_alias.html @@ -190,7 +216,6 @@ share/doc/apache/manual/mod/mod_digest.html share/doc/apache/manual/mod/mod_dir.html share/doc/apache/manual/mod/mod_dld.html -share/doc/apache/manual/mod/mod_dll.html share/doc/apache/manual/mod/mod_env.html share/doc/apache/manual/mod/mod_example.html share/doc/apache/manual/mod/mod_expires.html @@ -209,7 +234,8 @@ share/doc/apache/manual/mod/mod_mime.html share/doc/apache/manual/mod/mod_mime_magic.html share/doc/apache/manual/mod/mod_mmap_static.html -share/doc/apache/manual/mod/mod_negotiation.html +share/doc/apache/manual/mod/mod_negotiation.html.en +share/doc/apache/manual/mod/mod_negotiation.html.ja.jis share/doc/apache/manual/mod/mod_proxy.html share/doc/apache/manual/mod/mod_rewrite.html share/doc/apache/manual/mod/mod_setenvif.html @@ -220,16 +246,37 @@ share/doc/apache/manual/mod/mod_userdir.html share/doc/apache/manual/mod/mod_usertrack.html share/doc/apache/manual/mod/mod_vhost_alias.html +share/doc/apache/manual/mod/module-dict.html.en +share/doc/apache/manual/mod/module-dict.html.ja.jis +share/doc/apache/manual/mpeix.html share/doc/apache/manual/multilogs.html share/doc/apache/manual/netware.html share/doc/apache/manual/new_features_1_0.html share/doc/apache/manual/new_features_1_1.html share/doc/apache/manual/new_features_1_2.html -share/doc/apache/manual/new_features_1_3.html +share/doc/apache/manual/new_features_1_3.html.en +share/doc/apache/manual/new_features_1_3.html.ja.jis +share/doc/apache/manual/new_features_2_0.html share/doc/apache/manual/process-model.html +share/doc/apache/manual/programs/ab.html +share/doc/apache/manual/programs/apachectl.html +share/doc/apache/manual/programs/apxs.html +share/doc/apache/manual/programs/dbmmanage.html +share/doc/apache/manual/programs/footer.html +share/doc/apache/manual/programs/header.html +share/doc/apache/manual/programs/htdigest.html +share/doc/apache/manual/programs/htpasswd.html +share/doc/apache/manual/programs/httpd.html +share/doc/apache/manual/programs/index.html +share/doc/apache/manual/programs/logresolve.html +share/doc/apache/manual/programs/other.html +share/doc/apache/manual/programs/rotatelogs.html +share/doc/apache/manual/programs/suexec.html share/doc/apache/manual/readme-tpf.html share/doc/apache/manual/search/manual-index.cgi share/doc/apache/manual/sections.html +share/doc/apache/manual/server-wide.html.en +share/doc/apache/manual/server-wide.html.ja.jis share/doc/apache/manual/sourcereorg.html share/doc/apache/manual/stopping.html share/doc/apache/manual/suexec.html @@ -243,12 +290,15 @@ share/doc/apache/manual/vhosts/footer.html share/doc/apache/manual/vhosts/header.html share/doc/apache/manual/vhosts/host.html -share/doc/apache/manual/vhosts/index.html +share/doc/apache/manual/vhosts/index.html.en +share/doc/apache/manual/vhosts/index.html.ja.jis share/doc/apache/manual/vhosts/ip-based.html share/doc/apache/manual/vhosts/mass.html share/doc/apache/manual/vhosts/name-based.html share/doc/apache/manual/vhosts/vhosts-in-depth.html share/doc/apache/manual/vhosts/virtual-host.html +share/doc/apache/manual/win_compiling.html +share/doc/apache/manual/win_service.html share/doc/apache/manual/windows.html www/cgi-bin.default/printenv www/cgi-bin.default/test-cgi @@ -366,10 +416,12 @@ @dirrm include/apache/xml @dirrm include/apache @dirrm libexec/apache +@dirrm share/doc/apache/manual/howto @dirrm share/doc/apache/manual/images @dirrm share/doc/apache/manual/misc @dirrm share/doc/apache/manual/mod/mod_frontpage @dirrm share/doc/apache/manual/mod +@dirrm share/doc/apache/manual/programs @dirrm share/doc/apache/manual/search @dirrm share/doc/apache/manual/vhosts @dirrm share/doc/apache/manual >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 Feb 9 17:33: 7 2001 Delivered-To: freebsd-ports@freebsd.org Received: from smtp6.mail.yahoo.com (smtp6.mail.yahoo.com [128.11.69.103]) by hub.freebsd.org (Postfix) with SMTP id 0691437B491 for ; Fri, 9 Feb 2001 17:32:48 -0800 (PST) Received: from hyp-dyn153.netlabs.net (HELO yahoo.com) (216.116.143.153) by smtp.mail.vip.suc.yahoo.com with SMTP; 9 Feb 2001 23:04:58 -0000 X-Apparently-From: Message-ID: <3A843253.E4E0A507@yahoo.com> Date: Fri, 09 Feb 2001 18:09:23 +0000 From: Charlie Root X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 To: cpiazza@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: gnapster-1.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 Hi - I am new to freebsd , I have used Linux for many years and use several distributions of Linux, including Red Hat, Mandrake and SUSE. I have gnapster loaded on several machines but I am having problems with the freebsd installation. The tarball untars fine but when I go to the /bin directory and run gnapster the program bombs with the following errors Fatal error loading the given theme If this is your first time running make sure you properly make install'd! Gtk-CRITICAL ** : file gtkentry.c: line 398 (gtk_entry_set_text): assertion 'text !=NULL' failed. and so on if i try to fill out other fields in the user form of gnapster. I installed the port by running pkg_add against the tar file which gives the error message pkg_add can not find package XFree86-3.3.6_7 ! I am using Freebsd 4.4 lite which I received at the Linux expo in New York recently. What can I do to get this to work - any help would be appreciated. Bill _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 18:20:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5F4D237B401 for ; Fri, 9 Feb 2001 18:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1A2K3j60447; Fri, 9 Feb 2001 18:20:03 -0800 (PST) (envelope-from gnats) Received: from nadja.cis.ibaraki.ac.jp (nadja.cis.ibaraki.ac.jp [157.80.87.69]) by hub.freebsd.org (Postfix) with ESMTP id 321BF37B491 for ; Fri, 9 Feb 2001 18:19:38 -0800 (PST) Received: (from th@localhost) by nadja.cis.ibaraki.ac.jp (8.11.2/8.11.2) id f1A2JZA73043; Sat, 10 Feb 2001 11:19:35 +0900 (JST) (envelope-from th) Message-Id: <200102100219.f1A2JZA73043@nadja.cis.ibaraki.ac.jp> Date: Sat, 10 Feb 2001 11:19:35 +0900 (JST) From: th@cis.ibaraki.ac.jp Reply-To: th@cis.ibaraki.ac.jp To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24981: ports/lang/ruby : checksum mismatch for 1 distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24981 >Category: ports >Synopsis: ports/lang/ruby : checksum mismatch for 1 distfile >Confidential: no >Severity: critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Fri Feb 09 18:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: HIYAMA Takeshi >Release: FreeBSD 4.0-STABLE i386 >Organization: Dept. of Comp. & Info. Sci.s, Ibaraki University >Environment: ports-current (cvsuped 10 Feb) >Description: checksum of ruby/ruby-1.6.2-2001.02.05.patch.gz doesn't mathch distinfo >How-To-Repeat: cd /usr/ports/lang/ruby ; make >Fix: I think distinfo is wrong, because compiled s successfully with file on MASTER_SITES >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 Feb 9 18:42:25 2001 Delivered-To: freebsd-ports@freebsd.org Received: from sgi04-e.std.COM (sgi04-e.std.com [199.172.62.134]) by hub.freebsd.org (Postfix) with ESMTP id 6E43D37B684; Fri, 9 Feb 2001 18:41:57 -0800 (PST) Received: from world.std.com (world-f.std.com [199.172.62.5]) by sgi04-e.std.COM (8.9.3/8.9.3) with ESMTP id VAA3277467; Fri, 9 Feb 2001 21:30:33 -0500 (EST) Received: (from kwc@localhost) by world.std.com (8.9.3/8.9.3) id VAA00143; Fri, 9 Feb 2001 21:31:33 -0500 (EST) Date: Fri, 9 Feb 2001 21:31:33 -0500 (EST) From: Kenneth W Cochran Message-Id: <200102100231.VAA00143@world.std.com> To: ports@freebsd.org, stable@freebsd.org Subject: Mozilla build failure, 4-stable Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello -stable & -ports: I'm having trouble building mozilla. OS & is 4-stable as of 2000/02/09. Ports tree is as of 2000/02/09. Due to disk space limitations, I'm using a "cleaned out" /usr/obj (its "own" filesystem) as the workspace; command (in c-shell) is "make WRKDIRPREFIX=/usr/obj |& tee make.log" Last few lines from make.log are as folows: ===> Building for mozilla-0.7_1,1 /usr/ports/www/mozilla/Makefile:74: *** missing separator. Stop. *** Error code 2 Stop in /usr/ports/www/mozilla. *** Error code 1 Stop in /usr/ports/www/mozilla. *** Error code 1 Stop in /usr/ports/www/mozilla. ---------- Previous port-dependencies are ok. Any ideas as to problem(s)/fix(es)? Thanks, -kc To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 19:40:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 8991737B491 for ; Fri, 9 Feb 2001 19:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1A3e2H68143; Fri, 9 Feb 2001 19:40:02 -0800 (PST) (envelope-from gnats) Received: from wantadilla.lemis.com (wantadilla.lemis.com [192.109.197.80]) by hub.freebsd.org (Postfix) with ESMTP id B82C537B401 for ; Fri, 9 Feb 2001 19:37:33 -0800 (PST) Received: by wantadilla.lemis.com (Postfix, from userid 1004) id E9D4F6AC94; Sat, 10 Feb 2001 14:07:31 +1030 (CST) Message-Id: <20010210033731.E9D4F6AC94@wantadilla.lemis.com> Date: Sat, 10 Feb 2001 14:07:31 +1030 (CST) From: grog@lemis.com Reply-To: grog@lemis.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24983: Emacs ports have misleading names Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24983 >Category: ports >Synopsis: Emacs ports have misleading names >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 Feb 09 19:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Greg Lehey >Release: All FreeBSD >Organization: LEMIS >Environment: Any FreeBSD >Description: There are currently two ports for Emacs: editors/emacs, which installs the obsolete version 19.34, and editors/emacs20, which installs the current version 20.7. Naive users are liable to install 19.34 by accident, because it seems to be the canonical port. >How-To-Repeat: Please don't repeat. >Fix: Should be as simple as renaming the directories: cd /usr/ports/editors mv emacs emacs19 mv emacs20 emacs This is obviously a candidate for a repocopy. >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 Feb 9 20:50:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A1B5037B491 for ; Fri, 9 Feb 2001 20:50:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1A4o1f75332; Fri, 9 Feb 2001 20:50:01 -0800 (PST) (envelope-from gnats) Received: from divathome.wdwk.mecom.ru (dialup112.primorye.ru [212.122.0.112]) by hub.freebsd.org (Postfix) with ESMTP id E6C6037B491 for ; Fri, 9 Feb 2001 20:41:03 -0800 (PST) Received: (from div@localhost) by divathome.wdwk.mecom.ru (8.9.3/8.9.3) id OAA02971; Sat, 10 Feb 2001 14:38:33 +1000 (VLAT) (envelope-from div) Message-Id: <200102100438.OAA02971@divathome.wdwk.mecom.ru> Date: Sat, 10 Feb 2001 14:38:33 +1000 (VLAT) From: Den.Ivanov@divathome.wdwk.mecom.ru Reply-To: d.s.div@bigfoot.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24984: fmio port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24984 >Category: ports >Synopsis: fmio port >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 Feb 09 20:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Den Ivanov >Release: FreeBSD 3.5-STABLE i386 >Organization: >Environment: >Description: # 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: # # fmio # fmio/pkg-plist # fmio/Makefile # fmio/pkg-comment # fmio/pkg-descr # fmio/distinfo # echo c - fmio mkdir -p fmio > /dev/null 2>&1 echo x - fmio/pkg-plist sed 's/^X//' >fmio/pkg-plist << 'END-of-fmio/pkg-plist' Xbin/fmio END-of-fmio/pkg-plist echo x - fmio/Makefile sed 's/^X//' >fmio/Makefile << 'END-of-fmio/Makefile' X# New ports collection makefile for: fmio X# Date created: 10 Feb 2001 X# Whom: Den Ivanov X# X# $FreeBSD$ X# X XPORTNAME= fmio XPORTVERSION= 1.0.12 XCATEGORIES= audio X#MASTER_SITES= http://www.jumbo.narod.ru/src/fmio-1.0.12.tar.gz XMASTER_SITES= http://www.jumbo.narod.ru/src/ X XMAINTAINER= d.s.div@bigfoot.com X XMAN1= fmio.1 X X.include END-of-fmio/Makefile echo x - fmio/pkg-comment sed 's/^X//' >fmio/pkg-comment << 'END-of-fmio/pkg-comment' XFM radio card manipulation utility END-of-fmio/pkg-comment echo x - fmio/pkg-descr sed 's/^X//' >fmio/pkg-descr << 'END-of-fmio/pkg-descr' XSmall utility to manipulate fm radio card. X XWWW: http://jumbo.narod.ru/openbsd.html END-of-fmio/pkg-descr echo x - fmio/distinfo sed 's/^X//' >fmio/distinfo << 'END-of-fmio/distinfo' XMD5 (fmio-1.0.12.tar.gz) = 46dabb20d3ce3be9713243a4e9f707ad END-of-fmio/distinfo exit >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 Fri Feb 9 21: 0:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id D4EEE37B401 for ; Fri, 9 Feb 2001 21:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1A503G75897; Fri, 9 Feb 2001 21:00:03 -0800 (PST) (envelope-from gnats) Date: Fri, 9 Feb 2001 21:00:03 -0800 (PST) Message-Id: <200102100500.f1A503G75897@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Matthew Thyer Subject: Re: ports/24952: kdebase2 fails to install when using qt-2.2.4 Reply-To: Matthew Thyer Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24952; it has been noted by GNATS. From: Matthew Thyer To: freebsd-gnats-submit@FreeBSD.org, jose@we.lc.ehu.es Cc: Subject: Re: ports/24952: kdebase2 fails to install when using qt-2.2.4 Date: Sat, 10 Feb 2001 15:25:34 +1030 I found yeasterday that I can install kdebase2 if I first: # ln -s aj /etc/malloc.conf so its probably the old "using a member of a structure that you have just freed" problem. Backtrace from my original email to freebsd-current: Program received signal SIGSEGV, Segmentation fault. 0x28bc17c9 in strlen () from /usr/lib/libc.so.5 (gdb) (gdb) bt #0 0x28bc17c9 in strlen () from /usr/lib/libc.so.5 #1 0xbfbff504 in ?? () #2 0x2886c12e in QCString::length () from /usr/X11R6/lib/libqt2.so #3 0x284aba9f in QCString::resize () from /usr/X11R6/lib/libqt2.so #4 0x282a516f in printableToString (str=0x28f71298 "text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;\nEx"..., l=197) at /usr/X11R6/include/qt2/qcstring.h:284 #5 0x282a71f7 in KConfigINIBackEnd::parseSingleConfigFile (this=0x804f300, rFile=@0xbfbff70c, pWriteBackMap=0x0, bGlobal=false) at kconfigbackend.cpp:308 #6 0x282a5ecc in KConfigINIBackEnd::parseConfigFiles (this=0x804f300) at kconfigbackend.cpp:182 #7 0x2828b5f9 in KConfigBase::parseConfigFiles (this=0xbfbff8c0) at kconfigbase.cpp:1292 #8 0x282a3a48 in KDesktopFile::KDesktopFile (this=0xbfbff8c0, pFileName=@0x804edb8, bReadOnly=true, resType=0x804b1e6 "apps") at kdesktopfile.cpp:43 #9 0x8049b84 in checkDesktopFile (templ=@0x804edb8, destDir=0xbfbff97c) at checker.cpp:58 #10 0x80499da in main (argc=2, argv=0xbfbffa00) at main_install.cpp:52 #11 0x804959d in _start () (gdb) The string at 0x28f71298 is: "text/english;text/plain;text/x-makefile;text/x-c++hdr;text/x-c++src;text/x-chdr;text/x-csrc;text/x-java;text/x-moc;text/x-pascal;text/x-tcl;text/x-tex;application/x-shellscript;text/x-c;text/x-c++;\nExec=emacs %f\nIcon=emacs\nTerminalOptions=\nPath=\nType=Application\nTerminal=0\nMapNotify=false\n" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 9 22: 5: 9 2001 Delivered-To: freebsd-ports@freebsd.org Received: from pit.databus.com (p101-45.acedsl.com [160.79.101.45]) by hub.freebsd.org (Postfix) with ESMTP id BC06137B401; Fri, 9 Feb 2001 22:04:47 -0800 (PST) Received: (from barney@localhost) by pit.databus.com (8.11.1/8.11.1) id f1A64jm44254; Sat, 10 Feb 2001 01:04:45 -0500 (EST) (envelope-from barney) Date: Sat, 10 Feb 2001 01:04:45 -0500 From: Barney Wolff To: Kenneth W Cochran Cc: ports@FreeBSD.ORG, stable@FreeBSD.ORG Subject: Re: Mozilla build failure, 4-stable Message-ID: <20010210010445.A43496@pit.databus.com> References: <200102100231.VAA00143@world.std.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200102100231.VAA00143@world.std.com>; from kwc@world.std.com on Fri, Feb 09, 2001 at 09:31:33PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Try anything BUT /usr/obj as WRKDIRPREFIX. /usr/obj/ports, for example. I found most or all ports fail to build if that specific directory is used. I have no idea why. Barney Wolff On Fri, Feb 09, 2001 at 09:31:33PM -0500, Kenneth W Cochran wrote: > Hello -stable & -ports: > > I'm having trouble building mozilla. > OS & is 4-stable as of 2000/02/09. > Ports tree is as of 2000/02/09. > Due to disk space limitations, I'm using a "cleaned out" > /usr/obj (its "own" filesystem) as the workspace; > command (in c-shell) is > "make WRKDIRPREFIX=/usr/obj |& tee make.log" > > Last few lines from make.log are as folows: > > ===> Building for mozilla-0.7_1,1 > /usr/ports/www/mozilla/Makefile:74: *** missing separator. Stop. > *** Error code 2 > > Stop in /usr/ports/www/mozilla. > *** Error code 1 > > Stop in /usr/ports/www/mozilla. > *** Error code 1 > > Stop in /usr/ports/www/mozilla. > > ---------- > > Previous port-dependencies are ok. > > Any ideas as to problem(s)/fix(es)? > > Thanks, > > -kc > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" 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 Fri Feb 9 23:17: 4 2001 Delivered-To: freebsd-ports@freebsd.org Received: from pendragon.tacni.net (unknown [216.178.136.165]) by hub.freebsd.org (Postfix) with SMTP id F326837B401 for ; Fri, 9 Feb 2001 23:16:44 -0800 (PST) Received: (qmail 35167 invoked by alias); 10 Feb 2001 07:16:43 -0000 Received: from unknown (HELO mail.tacni.net) (204.155.159.55) by ns2.sohos.net with SMTP; 10 Feb 2001 07:16:43 -0000 Received: (qmail 65041 invoked by uid 1000); 10 Feb 2001 07:16:38 -0000 Date: Sat, 10 Feb 2001 01:16:38 -0600 From: Erich Zigler To: ports@freebsd.org Subject: Re: FreeBSD Port: gnapster-1.4.2 Message-ID: <20010210011638.A64980@superhero.org> References: <3A843253.E4E0A507@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: <3A843253.E4E0A507@yahoo.com>; from billportilla@yahoo.com on Fri, Feb 09, 2001 at 06:09:23PM +0000 X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Feb 09, 2001 at 06:09:23PM +0000, Charlie Root wrote: > Fatal error loading the given theme If this is your first time running > make sure you properly make install'd! I fixed this by copying /usr/X11R6/share/gnome/gnapster/themes to ~/.gnapster/themes -- Erich Zigler If I have any beliefs about immortality, it is that certain dogs I have known will go to heaven, and very, very few persons. -- James Thurber To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 0:50:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id A61E037B4EC for ; Sat, 10 Feb 2001 00:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1A8o2405402; Sat, 10 Feb 2001 00:50:02 -0800 (PST) (envelope-from gnats) Received: from ws130.nomadiclab.com (ws130.nomadiclab.com [195.165.196.130]) by hub.freebsd.org (Postfix) with ESMTP id 243AE37B491 for ; Sat, 10 Feb 2001 00:47:57 -0800 (PST) Received: by ws130.nomadiclab.com (Postfix, from userid 2000) id 9DC3572507; Sat, 10 Feb 2001 10:47:52 +0200 (EET) Message-Id: <20010210084752.9DC3572507@ws130.nomadiclab.com> Date: Sat, 10 Feb 2001 10:47:52 +0200 (EET) From: martti.kuparinen@iki.fi Reply-To: martti.kuparinen@iki.fi To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24985: [PATCH] fvwm2-beta upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24985 >Category: ports >Synopsis: [PATCH] fvwm2-beta 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: Sat Feb 10 00:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Martti Kuparinen >Release: FreeBSD 4.2-STABLE i386 >Organization: piuha.net >Environment: >Description: Here's an update for the fvwm2-beta port. >How-To-Repeat: >Fix: diff -ru /usr/ports/x11-wm/fvwm2-beta/Makefile fvwm2-beta/Makefile --- /usr/ports/x11-wm/fvwm2-beta/Makefile Thu Jan 25 06:23:30 2001 +++ fvwm2-beta/Makefile Sat Feb 10 10:18:42 2001 @@ -6,7 +6,7 @@ # PORTNAME= fvwm -PORTVERSION= 2.3.27 +PORTVERSION= 2.3.28 CATEGORIES= x11-wm MASTER_SITES= ftp://ftp.fvwm.org/pub/fvwm/version-2/ \ http://www.fvwm.org/generated/icon_download/ diff -ru /usr/ports/x11-wm/fvwm2-beta/distinfo fvwm2-beta/distinfo --- /usr/ports/x11-wm/fvwm2-beta/distinfo Thu Jan 25 06:23:30 2001 +++ fvwm2-beta/distinfo Sat Feb 10 10:22:29 2001 @@ -1,2 +1,2 @@ -MD5 (fvwm-2.3.27.tar.gz) = 91d2decdedbe4491197643f5ca8cf9d1 +MD5 (fvwm-2.3.28.tar.gz) = 3fd0a220efa699049ed02a02befc2a39 MD5 (fvwm_icons.tgz) = 7b254da269a236d77c790581701442cb >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 Feb 10 1: 0:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B230337B503 for ; Sat, 10 Feb 2001 01:00:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1A903t06190; Sat, 10 Feb 2001 01:00:03 -0800 (PST) (envelope-from gnats) Received: from indigo.external.org (c1118643-b.chmpgn1.il.home.com [24.181.130.163]) by hub.freebsd.org (Postfix) with ESMTP id 1CC9037B491 for ; Sat, 10 Feb 2001 00:53:20 -0800 (PST) Received: (from jeremy@localhost) by indigo.external.org (8.11.1/8.11.1) id f1A8u2B15251; Sat, 10 Feb 2001 02:56:02 -0600 (CST) (envelope-from jeremy) Message-Id: <200102100856.f1A8u2B15251@indigo.external.org> Date: Sat, 10 Feb 2001 02:56:02 -0600 (CST) From: Jeremy Shaffner To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24986: Update Port: editors/pico Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24986 >Category: ports >Synopsis: Update 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: Sat Feb 10 01:00:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Jeremy Shaffner >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: Fix distfile (fennerism) to download Pine 4.33 and add MASTER_SITES from UW's list of mirrors. Pico's version and behavior is unchanged. >How-To-Repeat: >Fix: diff -ruN pico.orig/Makefile pico/Makefile --- pico.orig/Makefile Fri Feb 9 23:49:41 2001 +++ pico/Makefile Sat Feb 10 02:40:45 2001 @@ -4,13 +4,27 @@ # # $FreeBSD: ports/editors/pico/Makefile,v 1.4 2001/02/05 14:36:20 olgeni Exp $ # -# This port tracks Pine4 # All patch files have been taken from mail/pine4 PORTNAME= pico PORTVERSION= 4.0 CATEGORIES= editors -MASTER_SITES= ftp://ftp.cac.washington.edu/pine/ +MASTER_SITES= ftp://ftp.cac.washington.edu/pine/ \ + http://mirror.sit.wisc.edu/pub/net/mail/pine/ \ + ftp://sunsite.doc.ic.ac.uk/packages/pine/ \ + ftp://ftp.uni-magdeburg.de/pub/mirror/ftp.cac.washington.edu/pine/ \ + ftp://ftp.fu-berlin.de/unix/mail/pine/ \ + http://ftp.cs.tu-berlin.de/pub/net/mail/pine/ \ + ftp://sunsite.auc.dk/pub/mail/pine/ \ + ftp://ftp.univ-lyon1.fr/pub/mirrors/unix/pine/ \ + ftp://cis.uniroma2.it/unix/misc/dist/PINE/ \ + ftp://ftp.gin.cz/pub/MIRRORS/ftp.cac.washington.edu/pine/ \ + ftp://ftp.eunet.cz/pub/comm/mail/pine/ \ + ftp://ftp.vse.cz/pub/network/mail/pine/ \ + ftp://sunsite.icm.edu.pl/pub/unix/mail/pine/ \ + ftp://giswitch.sggw.waw.pl/pub/unix/pine/ \ + ftp://ftp.ucr.ac.cr/pub/Unix/mail/pine \ + ftp://ftp.ut.ee/pub/unix/mail/pine/ DISTNAME= pine${pineversion} MAINTAINER= jeremy@external.org @@ -18,7 +32,7 @@ WRKSRC= ${WRKDIR}/pine${pineversion}/pico PATCH_WRKSRC= ${WRKSRC}/.. -pineversion= 4.32 +pineversion= 4.33 MAKEFILE= makefile.bsf ALL_TARGET= pico diff -ruN pico.orig/distinfo pico/distinfo --- pico.orig/distinfo Fri Feb 9 23:49:41 2001 +++ pico/distinfo Sat Feb 10 01:40:17 2001 @@ -1 +1 @@ -MD5 (pine4.32.tar.gz) = f9031683c5a69873535694f49edbbc15 +MD5 (pine4.33.tar.gz) = fb45dcfa1d3379031700da49236b2b9c >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 Feb 10 1:10:34 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B86F937B4EC for ; Sat, 10 Feb 2001 01:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1A9A3008970; Sat, 10 Feb 2001 01:10:03 -0800 (PST) (envelope-from gnats) Received: from master.branda.to (host131.co154.isl.net.tw [210.208.154.131]) by hub.freebsd.org (Postfix) with SMTP id 747A237B491 for ; Sat, 10 Feb 2001 01:01:02 -0800 (PST) Received: (qmail 73814 invoked by uid 0); 10 Feb 2001 09:12:06 -0000 Message-Id: <20010210091206.73813.qmail@master.branda.to> Date: 10 Feb 2001 09:12:06 -0000 From: thinker.bbs@bbs.yzu.edu.tw Reply-To: thinker.bbs@bbs.yzu.edu.tw To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24987: Courier mail server. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24987 >Category: ports >Synopsis: Courier mail server. >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 Feb 10 01:10:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: thinker >Release: FreeBSD 4.1-RELEASE i386 >Organization: >Environment: FreeBSD4.2 >Description: Following is archieve of port. >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: # # courier # courier/Makefile # courier/pkg-plist # courier/pkg-descr # courier/pkg-comment # echo c - courier mkdir -p courier > /dev/null 2>&1 echo x - courier/Makefile sed 's/^X//' >courier/Makefile << 'END-of-courier/Makefile' X# New ports collection makefile for: courier X# Date created: 3 February 2001 X# Whom: Thinker K.F. Li X# X# $FreeBSD$ X# X XPORTNAME= courier XPORTVERSION= 0.31.0 XCATEGORIES= mail XMASTER_SITES= \ X ftp://download.sourceforge.net/pub/sourceforge/courier/ \ X http://download.sourceforge.net/courier/ X#DISTNAME= ${PORTNAME}-$(PORTVERSION} X X#HAS_CONFIGURE= yes X#GNU_CONFIGURE= yes XCONFIGURE_ARGS= \ X --disable-root-check \ X --prefix=${PREFIX} \ X --exec-prefix=${PREFIX} \ X --datadir=${PREFIX}/share/courier \ X --sysconfdir=${PREFIX}/etc/courier \ X --sharedstatedir=/var/courier \ X --localstatedir=/var/courier X XMAN1= sendmail.1 preline.1 maildirmake.1 cancelmsg.1 dotlock.1 \ X maildrop.1 makemime.1 makedat.1 reformail.1 reformime.1 \ X couriermlm.1 testmxlookup.1 dot-forward.1 couriertls.1 XMAN5= dot-courier.5 maildropex.5 maildropfilter.5 maildropgdbm.5 XMAN7= localmailfilter.7 maildirquota.7 XMAN8= courierfilter.8 dupfilter.8 courierperlfilter.8 authlib.8 \ X courier.8 courierldapaliasd.8 courierpop3login.8 couriertcpd.8 \ X deliverquota.8 esmtpd.8 mailq.8 makeacceptmailfor.8 \ X makehosteddomains.8 mkesmtpdcert.8 mkimapdcert.8 makealiases.8 \ X makepercentrelay.8 makesmtpaccess.8 makeuserdb.8 pop3d.8 \ X submit.8 userdb.8 userdbpw.8 imapd.8 courieruucp.8 XMLINKS= sendmail.1 rmail.1 authlib.8 authshadow.8 authlib.8 authpam.8 \ X authlib.8 authcram.8 authlib.8 authmysql.8 authlib.8 authdaemond.8 \ X makeuserdb.8 pw2userdb.8 makesmtpaccess.8 makesmtpaccess-msa.8 \ X dot-forward.1 dotforward.1 courierfilter.8 filterctl.8 \ X authlib.8 authpwd.8 authlib.8 authuserdb.8 authlib.8 authvchkpw.8 \ X authlib.8 authldap.8 authlib.8 authdaemon.8 \ X courierpop3login.8 courierpop3d.8 makeuserdb.8 vchkpw2userdb.8 \ X esmtpd.8 esmtpd-msa.8 courieruucp.8 makeuucpneighbors.8 X X XMANCOMPRESSED= no X#NOMANCOMPRESS= yes X X#MAINTAINER= thinker.bbs@bbs.yzu.edu.tw X Xdo-configure: X cd ${WRKSRC} && ./configure ${CONFIGURE_ARGS} X Xtt: X echo ${MAN1} ${MAN5} ${MAN7} ${MAN8} X X.include END-of-courier/Makefile echo x - courier/pkg-plist sed 's/^X//' >courier/pkg-plist << 'END-of-courier/pkg-plist' X@group bin Xlibexec/courier/webmail/webmail X@group mail Xbin/maildrop X@group daemon Xbin/sendmail Xlibexec/courier/modules/esmtp/authstart X@group wheel Xetc/courier/ldapaddressbook.dist Xlibexec/filters/perlfilter Xlibexec/filters/dupfilter Xsbin/courierfilter Xshare/courier/sqwebmail/html/en-us/LOCALE Xshare/courier/sqwebmail/html/en-us/LANGUAGE Xshare/courier/sqwebmail/html/en-us/LANGUAGE_PREF Xshare/courier/sqwebmail/html/en-us/ISPELLDICT Xshare/courier/sqwebmail/html/en-us/CHARSET Xshare/courier/sqwebmail/html/en-us/attachments.html Xshare/courier/sqwebmail/html/en-us/abooklist.html Xshare/courier/sqwebmail/html/en-us/empty.html Xshare/courier/sqwebmail/html/en-us/expired.html Xshare/courier/sqwebmail/html/en-us/folder.html Xshare/courier/sqwebmail/html/en-us/folders.html Xshare/courier/sqwebmail/html/en-us/index.html Xshare/courier/sqwebmail/html/en-us/invalid.html Xshare/courier/sqwebmail/html/en-us/login.html Xshare/courier/sqwebmail/html/en-us/filter.html Xshare/courier/sqwebmail/html/en-us/ldaplist.html Xshare/courier/sqwebmail/html/en-us/ldapsearch.html Xshare/courier/sqwebmail/html/en-us/newmsg.html Xshare/courier/sqwebmail/html/en-us/preferences.html Xshare/courier/sqwebmail/html/en-us/printnocookie.html Xshare/courier/sqwebmail/html/en-us/printredirect.html Xshare/courier/sqwebmail/html/en-us/quickadd.html Xshare/courier/sqwebmail/html/en-us/print.html Xshare/courier/sqwebmail/html/en-us/readmsg.html Xshare/courier/sqwebmail/html/en-us/redirect.html Xshare/courier/sqwebmail/html/en-us/spellchk.html Xshare/courier/sqwebmail/sendit.sh Xshare/courier/sqwebmail/cleancache.pl Xshare/courier/sqwebmail/ldapsearch Xshare/courier/perlfilter-wrapper.pl Xshare/courier/perlfilter-example.pl Xshare/courier/filterctl Xshare/courier/couriermlm/subreporthdr.tmpl Xshare/courier/couriermlm/subreporthdr1.tmpl Xshare/courier/couriermlm/subreporthdr2.tmpl Xshare/courier/couriermlm/subreporthdr3.tmpl X@owner bin X@group bin Xbin/couriertls Xlibexec/courier/modules/modules.ctl Xlibexec/courier/imaplogin Xlibexec/authlib/authcustom Xlibexec/authlib/authcram Xlibexec/authlib/authuserdb Xlibexec/authlib/authpam Xshare/courier/htmldoc/courierfilter.html Xshare/courier/htmldoc/courierperlfilter.html Xshare/courier/htmldoc/dupfilter.html Xshare/courier/htmldoc/aliases.html Xshare/courier/htmldoc/courierd.html Xshare/courier/htmldoc/courierdsn.html Xshare/courier/htmldoc/esmtp.html Xshare/courier/htmldoc/index.html Xshare/courier/htmldoc/install.html Xshare/courier/htmldoc/intro.html Xshare/courier/htmldoc/history.html Xshare/courier/htmldoc/layout.html Xshare/courier/htmldoc/links.html Xshare/courier/htmldoc/local.html Xshare/courier/htmldoc/mailq.html Xshare/courier/htmldoc/modules.html Xshare/courier/htmldoc/queue.html Xshare/courier/htmldoc/structures.html Xshare/courier/htmldoc/sendmail.html Xshare/courier/htmldoc/dot-forward.html Xshare/courier/htmldoc/FAQ.html Xshare/courier/htmldoc/draft-varshavchik-exdata-smtpext.txt Xshare/courier/htmldoc/draft-varshavchik-verp-smtpext.txt Xshare/courier/htmldoc/authlib.html Xshare/courier/htmldoc/courier.html Xshare/courier/htmldoc/courierldapaliasd.html Xshare/courier/htmldoc/courierpop3login.html Xshare/courier/htmldoc/couriertls.html Xshare/courier/htmldoc/dot-courier.html Xshare/courier/htmldoc/deliverquota.html Xshare/courier/htmldoc/esmtpd.html Xshare/courier/htmldoc/maildirmake.html Xshare/courier/htmldoc/mkesmtpdcert.html Xshare/courier/htmldoc/mkimapdcert.html Xshare/courier/htmldoc/couriermlm.html Xshare/courier/htmldoc/testmxlookup.html Xshare/courier/htmldoc/maildirquota.html Xshare/courier/htmldoc/makeuserdb.html Xshare/courier/htmldoc/userdb.html Xshare/courier/htmldoc/localmailfilter.html Xshare/courier/htmldoc/status.html Xshare/courier/htmldoc/makehosteddomains.html Xshare/courier/htmldoc/makeacceptmailfor.html Xshare/courier/htmldoc/makealiases.html Xshare/courier/htmldoc/makesmtpaccess.html Xshare/courier/htmldoc/pop3d.html Xshare/courier/htmldoc/preline.html Xshare/courier/htmldoc/submit.html Xshare/courier/htmldoc/cancelmsg.html Xshare/courier/htmldoc/couriertcpd.html Xshare/courier/htmldoc/makepercentrelay.html Xshare/courier/htmldoc/userdbpw.html Xshare/courier/htmldoc/imapd.html Xshare/courier/htmldoc/maildrop.README.html Xshare/courier/htmldoc/maildropex.html Xshare/courier/htmldoc/maildroptips.html Xshare/courier/htmldoc/reformime.html Xshare/courier/htmldoc/dotlock.html Xshare/courier/htmldoc/maildropfilter.html Xshare/courier/htmldoc/makedat.html Xshare/courier/htmldoc/maildrop.html Xshare/courier/htmldoc/maildropgdbm.html Xshare/courier/htmldoc/reformail.html Xshare/courier/htmldoc/makemime.html Xshare/courier/htmldoc/courieruucp.html Xshare/courier/imapd Xshare/courier/imapd-ssl Xshare/courier/makedat X@owner daemon X@group daemon Xbin/preline Xbin/cancelmsg Xbin/mailq Xbin/maildirmake Xbin/imapd Xbin/dotlock Xbin/dotforward Xbin/makemime Xbin/reformail Xbin/reformime Xbin/deliverquota Xbin/couriermlm Xbin/testmxlookup Xetc/courier/module.uucp Xetc/courier/module.local Xetc/courier/authmodulelist Xetc/courier/esmtpd.cnf Xetc/courier/esmtpd.dist Xetc/courier/esmtpd-msa.dist Xetc/courier/esmtp.authpam Xetc/courier/module.esmtp Xetc/courier/esmtpauthclient Xetc/courier/dsndelayed.txt Xetc/courier/dsndelivered.txt Xetc/courier/dsnfailed.txt Xetc/courier/dsnrelayed.txt Xetc/courier/dsnfooter.txt Xetc/courier/dsnsubjectnotice.txt Xetc/courier/aliases/system Xetc/courier/dsnsubjectwarn.txt Xetc/courier/dsnheader.txt Xetc/courier/module.dsn Xetc/courier/pop3d.authpam Xetc/courier/imapd.authpam Xetc/courier/webmail.authpam Xetc/courier/imapd.cnf Xetc/courier/pop3d.cnf Xetc/courier/courierd.dist Xetc/courier/imapd.dist Xetc/courier/imapd-ssl.dist Xetc/courier/pop3d.dist Xetc/courier/pop3d-ssl.dist Xetc/courier/quotawarnmsg.example Xetc/courier/smtpaccess/default Xetc/courier/maildrop Xetc/courier/enablefiltering Xlibexec/courier/modules/uucp/courieruucp Xlibexec/courier/modules/local/courierlocal Xlibexec/courier/modules/local/courierdeliver Xlibexec/courier/modules/esmtp/courieresmtp Xlibexec/courier/modules/esmtp/courieresmtpd Xlibexec/courier/modules/esmtp/addcr Xlibexec/courier/modules/esmtp/authend Xlibexec/courier/modules/dsn/courierdsn Xlibexec/courier/courierpop3login Xlibexec/courier/aliasexp Xlibexec/courier/aliascombine Xlibexec/courier/aliascreate Xlibexec/courier/submit Xlibexec/courier/makedatprog Xlibexec/courier/submitmkdir Xlibexec/courier/courierd Xlibexec/courier/courierpop3d Xsbin/courier Xsbin/showconfig Xsbin/showmodules Xsbin/couriertcpd Xsbin/userdbpw Xsbin/logger Xshare/courier/sqwebmail/images/folder.gif Xshare/courier/sqwebmail/images/folder2.gif Xshare/courier/sqwebmail/images/folders.gif Xshare/courier/sqwebmail/images/forward.gif Xshare/courier/sqwebmail/images/forwardatt.gif Xshare/courier/sqwebmail/images/fullheaders.gif Xshare/courier/sqwebmail/images/left.gif Xshare/courier/sqwebmail/images/left2.gif Xshare/courier/sqwebmail/images/print.gif Xshare/courier/sqwebmail/images/reply.gif Xshare/courier/sqwebmail/images/replyall.gif Xshare/courier/sqwebmail/images/replylist.gif Xshare/courier/sqwebmail/images/right.gif Xshare/courier/sqwebmail/images/right2.gif Xshare/courier/sqwebmail/images/trash2.gif Xshare/courier/makeuucpneighbors Xshare/courier/esmtpd Xshare/courier/makesmtpaccess Xshare/courier/makeacceptmailfor Xshare/courier/makepercentrelay Xshare/courier/mkesmtpdcert Xshare/courier/courierctl.start Xshare/courier/makealiases Xshare/courier/makehosteddomains Xshare/courier/makeuserdb Xshare/courier/pop3d Xshare/courier/pop3d-ssl Xshare/courier/userdb Xshare/courier/pw2userdb Xshare/courier/vchkpw2userdb Xshare/courier/mkimapdcert Xshare/courier/mkpop3dcert Xshare/courier/couriermlm/adminrequest.tmpl Xshare/courier/couriermlm/confsubj.tmpl Xshare/courier/couriermlm/digestsubj.tmpl Xshare/courier/couriermlm/fetch.tmpl Xshare/courier/couriermlm/fetchsubj.tmpl Xshare/courier/couriermlm/help.tmpl Xshare/courier/couriermlm/idxsubject.tmpl Xshare/courier/couriermlm/idxheaderhtml.tmpl Xshare/courier/couriermlm/idxheader2html.tmpl Xshare/courier/couriermlm/idxheadertxt.tmpl Xshare/courier/couriermlm/modrejbody.tmpl Xshare/courier/couriermlm/modreject.tmpl Xshare/courier/couriermlm/modrejheader.tmpl Xshare/courier/couriermlm/modsubject.tmpl Xshare/courier/couriermlm/modtext.tmpl Xshare/courier/couriermlm/modtext2.tmpl Xshare/courier/couriermlm/sub.tmpl Xshare/courier/couriermlm/sub2.tmpl Xshare/courier/couriermlm/sub3.tmpl Xshare/courier/couriermlm/sub4.tmpl Xshare/courier/couriermlm/sub5.tmpl Xshare/courier/couriermlm/subreportfooter.tmpl Xshare/courier/couriermlm/unsub.tmpl Xshare/courier/couriermlm/unsub2.tmpl Xshare/courier/couriermlm/unsub3.tmpl Xshare/courier/couriermlm/warn1headers.tmpl Xshare/courier/couriermlm/warn1text.tmpl Xshare/courier/couriermlm/warn1text2.tmpl Xshare/courier/couriermlm/warn2msg.tmpl X@exec mkdir -p %D/etc/courier; chown bin.bin %D/etc/courier X@exec mkdir -p %D/etc/courier/aliasdir; chown daemon.daemon %D/etc/courier/aliasdir X@exec mkdir -p %D/etc/courier/aliases; chown daemon.daemon %D/etc/courier/aliases X@exec mkdir -p %D/etc/courier/esmtpacceptmailfor.dir; chown root.wheel %D/etc/courier/esmtpacceptmailfor.dir X@exec mkdir -p %D/etc/courier/esmtppercentrelay.dir; chown root.wheel %D/etc/courier/esmtppercentrelay.dir X@exec mkdir -p %D/etc/courier/filters; chown daemon.daemon %D/etc/courier/filters X@exec mkdir -p %D/etc/courier/filters/active; chown daemon.daemon %D/etc/courier/filters/active X@exec mkdir -p %D/etc/courier/smtpaccess; chown daemon.daemon %D/etc/courier/smtpaccess X@exec mkdir -p %D/libexec/authlib; chown bin.bin %D/libexec/authlib X@exec mkdir -p %D/libexec/courier; chown bin.bin %D/libexec/courier X@exec mkdir -p %D/libexec/courier/modules; chown bin.bin %D/libexec/courier/modules X@exec mkdir -p %D/libexec/courier/modules/dsn; chown daemon.daemon %D/libexec/courier/modules/dsn X@exec mkdir -p %D/libexec/courier/modules/esmtp; chown daemon.daemon %D/libexec/courier/modules/esmtp X@exec mkdir -p %D/libexec/courier/modules/local; chown daemon.daemon %D/libexec/courier/modules/local X@exec mkdir -p %D/libexec/courier/modules/uucp; chown daemon.daemon %D/libexec/courier/modules/uucp X@exec mkdir -p %D/libexec/courier/webmail; chown root.bin %D/libexec/courier/webmail X@exec mkdir -p %D/libexec/filters; chown root.wheel %D/libexec/filters X@exec mkdir -p %D/share/courier; chown bin.bin %D/share/courier X@exec mkdir -p %D/share/courier/couriermlm; chown daemon.daemon %D/share/courier/couriermlm X@exec mkdir -p %D/share/courier/htmldoc; chown root.wheel %D/share/courier/htmldoc X@exec mkdir -p %D/share/courier/sqwebmail; chown root.wheel %D/share/courier/sqwebmail X@exec mkdir -p %D/share/courier/sqwebmail/html; chown root.wheel %D/share/courier/sqwebmail/html X@exec mkdir -p %D/share/courier/sqwebmail/html/en-us; chown root.wheel %D/share/courier/sqwebmail/html/en-us X@exec mkdir -p %D/share/courier/sqwebmail/images; chown daemon.daemon %D/share/courier/sqwebmail/images X@exec cd %D/bin && ln -s %D/libexec/courier/modules/esmtp/addcr addcr X@unexec rm %D/bin/addcr X@exec cd %D/bin && ln -s %D/share/courier/makedat makedat X@unexec rm %D/bin/makedat X@exec cd %D/bin && ln -s sendmail rmail X@unexec rm %D/bin/rmail X@exec cd %D/sbin && ln -s %D/share/courier/filterctl filterctl X@unexec rm %D/sbin/filterctl X@exec cd %D/sbin && ln -s %D/share/courier/makeuucpneighbors makeuucpneighbors X@unexec rm %D/sbin/makeuucpneighbors X@exec cd %D/sbin && ln -s %D/libexec/courier/modules/esmtp/courieresmtpd courieresmtpd X@unexec rm %D/sbin/courieresmtpd X@exec cd %D/sbin && ln -s %D/share/courier/esmtpd esmtpd X@unexec rm %D/sbin/esmtpd X@exec cd %D/sbin && ln -s %D/share/courier/makesmtpaccess makesmtpaccess X@unexec rm %D/sbin/makesmtpaccess X@exec cd %D/sbin && ln -s %D/share/courier/makeacceptmailfor makeacceptmailfor X@unexec rm %D/sbin/makeacceptmailfor X@exec cd %D/sbin && ln -s %D/share/courier/makepercentrelay makepercentrelay X@unexec rm %D/sbin/makepercentrelay X@exec cd %D/sbin && ln -s %D/share/courier/mkesmtpdcert mkesmtpdcert X@unexec rm %D/sbin/mkesmtpdcert X@exec cd %D/sbin && ln -s esmtpd esmtpd-msa X@unexec rm %D/sbin/esmtpd-msa X@exec cd %D/sbin && ln -s makesmtpaccess makesmtpaccess-msa X@unexec rm %D/sbin/makesmtpaccess-msa X@exec cd %D/sbin && ln -s %D/share/courier/imapd imapd X@unexec rm %D/sbin/imapd X@exec cd %D/sbin && ln -s %D/share/courier/imapd-ssl imapd-ssl X@unexec rm %D/sbin/imapd-ssl X@exec cd %D/sbin && ln -s %D/share/courier/mkimapdcert mkimapdcert X@unexec rm %D/sbin/mkimapdcert X@exec cd %D/sbin && ln -s %D/share/courier/mkpop3dcert mkpop3dcert X@unexec rm %D/sbin/mkpop3dcert X@exec cd %D/sbin && ln -s %D/share/courier/makealiases makealiases X@unexec rm %D/sbin/makealiases X@exec cd %D/sbin && ln -s %D/share/courier/pop3d pop3d X@unexec rm %D/sbin/pop3d X@exec cd %D/sbin && ln -s %D/share/courier/makehosteddomains makehosteddomains X@unexec rm %D/sbin/makehosteddomains X@exec cd %D/sbin && ln -s %D/share/courier/makeuserdb makeuserdb X@unexec rm %D/sbin/makeuserdb X@exec cd %D/sbin && ln -s %D/share/courier/pop3d-ssl pop3d-ssl X@unexec rm %D/sbin/pop3d-ssl X@exec cd %D/sbin && ln -s %D/share/courier/userdb userdb X@unexec rm %D/sbin/userdb X@exec cd %D/sbin && ln -s %D/share/courier/pw2userdb pw2userdb X@unexec rm %D/sbin/pw2userdb X@exec cd %D/sbin && ln -s %D/share/courier/vchkpw2userdb vchkpw2userdb X@unexec rm %D/sbin/vchkpw2userdb X@exec cd %D/share/courier/sqwebmail/html && ln -s en-us en X@unexec rm %D/share/courier/sqwebmail/html/en X@dirrm etc/courier/aliasdir X@dirrm etc/courier/aliases X@dirrm etc/courier/esmtpacceptmailfor.dir X@dirrm etc/courier/esmtppercentrelay.dir X@dirrm etc/courier/filters/active X@dirrm etc/courier/filters X@dirrm etc/courier/smtpaccess X@dirrm etc/courier X@dirrm libexec/authlib X@dirrm libexec/courier/modules/dsn X@dirrm libexec/courier/modules/esmtp X@dirrm libexec/courier/modules/local X@dirrm libexec/courier/modules/uucp X@dirrm libexec/courier/modules X@dirrm libexec/courier/webmail X@dirrm libexec/courier X@dirrm libexec/filters X@dirrm share/courier/couriermlm X@dirrm share/courier/htmldoc X@dirrm share/courier/sqwebmail/html/en-us X@dirrm share/courier/sqwebmail/html X@dirrm share/courier/sqwebmail/images X@dirrm share/courier/sqwebmail X@dirrm share/courier X@cwd / X@exec mkdir -p /var/courier; chown bin.bin /var/courier X@exec mkdir -p /var/courier/allfilters; chown daemon.daemon /var/courier/allfilters X@exec mkdir -p /var/courier/filters; chown daemon.daemon /var/courier/filters X@exec mkdir -p /var/courier/msgq; chown daemon.daemon /var/courier/msgq X@exec mkdir -p /var/courier/msgs; chown daemon.daemon /var/courier/msgs X@exec mkdir -p /var/courier/tmp; chown daemon.daemon /var/courier/tmp X@exec mkdir -p /var/courier/tmp/broken; chown root.wheel /var/courier/tmp/broken X@dirrm /var/courier/allfilters X@dirrm /var/courier/filters X@dirrm /var/courier/msgq X@dirrm /var/courier/msgs X@dirrm /var/courier/tmp/broken X@dirrm /var/courier/tmp X@dirrm /var/courier END-of-courier/pkg-plist echo x - courier/pkg-descr sed 's/^X//' >courier/pkg-descr << 'END-of-courier/pkg-descr' XThe Courier mail transfer agent (MTA) is an integrated mail server suite Xthat provides ESMTP, IMAP, POP3, webmail, and mailing list services within a Xsingle, consistent, framework. It grew out of several related projects, that Xmerged together (more on that later). Courier implements SMTP extensions for Xmailing list management and spam filtering. Courier can function as an Xintermediate mail relay, relaying mail between an internal LAN and the XInternet, or perform final delivery to mailboxes. Courier uses maildirs as its Xnative mail storage format (which is NFS-safe) but can also deliver mail to Xlegacy mailbox files as well. X Xwww: http://sourceforge.net/project/?group_id=5404 X X- Thinker Xthinker.bbs@bbs.yzu.edu.tw END-of-courier/pkg-descr echo x - courier/pkg-comment sed 's/^X//' >courier/pkg-comment << 'END-of-courier/pkg-comment' XA highly integrated mail server suiteEND-of-courier/pkg-comment Xecho x - courier/distinfo Xsed 's/^X//' >courier/distinfo << 'END-of-courier/distinfo' XMD5 (courier-0.31.0.tar.gz) = 8f95d2f300a5506b522f3068a4a9ea0b XEND-of-courier/distinfo Xexit X END-of-courier/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 Sat Feb 10 1:49:18 2001 Delivered-To: freebsd-ports@freebsd.org Received: from relay2.agava.net.ru (2.oivt.mipt.ru [193.125.142.2]) by hub.freebsd.org (Postfix) with ESMTP id 9BD3137B4EC; Sat, 10 Feb 2001 01:49:00 -0800 (PST) Received: from gw.office.agava.ru (2.oivt.mipt.ru [193.125.142.2]) by relay2.agava.net.ru (Postfix) with ESMTP id 708CC437B8; Sat, 10 Feb 2001 12:48:56 +0300 (MSK) Received: from juil.domain (juil.domain [192.168.1.50]) by gw.office.agava.ru (Postfix) with ESMTP id 2BE8B5E90; Sat, 10 Feb 2001 12:48:56 +0300 (MSK) Received: by juil.domain (Postfix, from userid 1001) id 425874A; Sat, 10 Feb 2001 12:49:00 +0300 (MSK) To: grog@lemis.com Cc: FreeBSD-gnats-submit@freebsd.org, freebsd-ports@freebsd.org Subject: Re: ports/24983: Emacs ports have misleading names References: <20010210033731.E9D4F6AC94@wantadilla.lemis.com> From: Ilya Martynov Date: 10 Feb 2001 12:49:00 +0300 In-Reply-To: <20010210033731.E9D4F6AC94@wantadilla.lemis.com> Message-ID: <86u2627trn.fsf@juil.domain> Lines: 19 User-Agent: Gnus/5.0808 (Gnus v5.8.8) 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 g> [..skip..] g> > Description: g> There are currently two ports for Emacs: editors/emacs, which g> installs the obsolete version 19.34, and editors/emacs20, g> which installs the current version 20.7. Naive users are g> liable to install 19.34 by accident, because it seems to be g> the canonical port. I wonder - is there any reason why we need emacs19 at all? Is there anybody how use emacs19 instead emacs20 or xemacs? g> [..skip..] -- Ilya Martynov AGAVA Software Company, http://www.agava.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 1:50:26 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 4238637B491 for ; Sat, 10 Feb 2001 01:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1A9o2m11236; Sat, 10 Feb 2001 01:50:02 -0800 (PST) (envelope-from gnats) Date: Sat, 10 Feb 2001 01:50:02 -0800 (PST) Message-Id: <200102100950.f1A9o2m11236@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Ilya Martynov Subject: Re: ports/24983: Emacs ports have misleading names Reply-To: Ilya Martynov Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24983; it has been noted by GNATS. From: Ilya Martynov To: grog@lemis.com Cc: FreeBSD-gnats-submit@freebsd.org, freebsd-ports@freebsd.org Subject: Re: ports/24983: Emacs ports have misleading names Date: 10 Feb 2001 12:49:00 +0300 g> [..skip..] g> > Description: g> There are currently two ports for Emacs: editors/emacs, which g> installs the obsolete version 19.34, and editors/emacs20, g> which installs the current version 20.7. Naive users are g> liable to install 19.34 by accident, because it seems to be g> the canonical port. I wonder - is there any reason why we need emacs19 at all? Is there anybody how use emacs19 instead emacs20 or xemacs? g> [..skip..] -- Ilya Martynov AGAVA Software Company, http://www.agava.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 2:10:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3246C37B4EC for ; Sat, 10 Feb 2001 02:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AAA2u14403; Sat, 10 Feb 2001 02:10:02 -0800 (PST) (envelope-from gnats) Received: from teefax.pmnet.uni-oldenburg.de (teefax.pmnet.uni-oldenburg.de [134.106.120.12]) by hub.freebsd.org (Postfix) with ESMTP id CAB5937B491 for ; Sat, 10 Feb 2001 02:09:12 -0800 (PST) Received: (from eike@localhost) by teefax.pmnet.uni-oldenburg.de (8.11.1/8.11.1) id f1AA94p39985; Sat, 10 Feb 2001 11:09:04 +0100 (CET) (envelope-from eike) Message-Id: <200102101009.f1AA94p39985@teefax.pmnet.uni-oldenburg.de> Date: Sat, 10 Feb 2001 11:09:04 +0100 (CET) From: eike.bernhardt@gmx.de To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24988: [MAINTAINER] update gkrellm_snmp to 0.14 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24988 >Category: ports >Synopsis: [MAINTAINER] update gkrellm_snmp to 0.14 >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 Feb 10 02:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Eike Bernhardt >Release: FreeBSD 4.2-STABLE i386 >Organization: >Environment: >Description: Update the gkrellm_snmp port to version 0.14 >How-To-Repeat: Apply diff >Fix: diff -urN gkrellm_snmp.bak/Makefile gkrellm_snmp/Makefile --- gkrellm_snmp.bak/Makefile Tue Jan 30 17:57:43 2001 +++ gkrellm_snmp/Makefile Sun Feb 4 23:46:52 2001 @@ -6,7 +6,7 @@ # PORTNAME= gkrellm_snmp -PORTVERSION= 0.9 +PORTVERSION= 0.14 CATEGORIES= net MASTER_SITES= http://triq.net/gkrellm/ diff -urN gkrellm_snmp.bak/distinfo gkrellm_snmp/distinfo --- gkrellm_snmp.bak/distinfo Thu Sep 14 18:56:05 2000 +++ gkrellm_snmp/distinfo Sun Feb 4 23:37:40 2001 @@ -1 +1 @@ -MD5 (gkrellm_snmp-0.9.tar.gz) = f238ab6736845a2b39f72f952e4bcd6b +MD5 (gkrellm_snmp-0.14.tar.gz) = 3774a6551c51a798483ad535d09538f7 >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 Feb 10 2:12:57 2001 Delivered-To: freebsd-ports@freebsd.org Received: from daffy.uwnet.nl (ns.isd-holland.nl [195.7.130.35]) by hub.freebsd.org (Postfix) with ESMTP id A2B0C37B401 for ; Sat, 10 Feb 2001 02:12:39 -0800 (PST) Received: from dyn.dailup.c227128239.isd.to (dyn.dailup.c227128239.isd.to [213.227.128.239]) by daffy.uwnet.nl (8.11.1/8.11.0) with ESMTP id f1AACWT04768 for ; Sat, 10 Feb 2001 11:12:32 +0100 Received: (qmail 60362 invoked by uid 1000); 10 Feb 2001 10:05:06 -0000 From: "Andre Goeree" Date: Sat, 10 Feb 2001 10:05:06 +0000 To: ports@freebsd.org Subject: Re: glclock broken? pthread Message-ID: <20010210100506.A60321@mandark.attica.home> Reply-To: abgoeree@uwnet.nl References: <20010208234437.A59433@mandark.attica.home> <200102090054.f190sn413421@vic.sabbo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200102090054.f190sn413421@vic.sabbo.net>; from sobomax@freebsd.org on Fri, Feb 09, 2001 at 02:54:44AM +0200 X-Sender: abgoeree@uwnet.nl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Feb 09, 2001 at 02:54:44AM +0200, Maxim Sobolev wrote: > > > > Hello, > > > > My attempt to build x11-clocks/glclock ended > > with the following error: > > > > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_getspecific' > > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_key_create' > > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_setspecific' > > *** Error code 1 > > > > Stop in /usr/local/ports/x11-clocks/glclock/work/glclock-5.0. > > *** Error code 1 > > > > just fixed a similar error with xscreensaver;) > > The trick of adding "CONFIGURE_ENV= LDFLAGS=-pthread" > > to the Makefile didn't work here. > > What should i try next? > > (XFree86-4.0.2_5 Mesa-3.2.1_1) > > > > You have several choices ahead: > 1. Wait a bit until -pthread weirdness would be resolved; > 2. Manually replace -pthread in ports/x11/XFree86-4/files/patch-* with -lc_r > and then recompile/reinstall XFree86-4; > 3. Apply attached patch for gcc.295 and then recompile/reinstall XFree86-4. > > -Maxim > Hmm, 4. adding -pthread to LIBS= in work/glclock-5.0/makefile (LIBS = -lglut -lGLU -lGL -lXext -lXmu -lX11 -lm -lXi -pthread) seems to work too :) I don't know if this is a appropriate fix but for me it works;) -- Andre. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 3:10:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AE46837B4EC for ; Sat, 10 Feb 2001 03:10:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1ABA4q20226; Sat, 10 Feb 2001 03:10:04 -0800 (PST) (envelope-from gnats) Received: from mta05-svc.ntlworld.com (mta05-svc.ntlworld.com [62.253.162.45]) by hub.freebsd.org (Postfix) with ESMTP id 615A037B503; Sat, 10 Feb 2001 03:07:28 -0800 (PST) Received: from m185-mp1-cvx1b.gui.ntl.com ([62.252.8.185]) by mta05-svc.ntlworld.com (InterMail vM.4.01.02.27 201-229-119-110) with ESMTP id <20010210110726.CNOQ18404.mta05-svc.ntlworld.com@m185-mp1-cvx1b.gui.ntl.com>; Sat, 10 Feb 2001 11:07:26 +0000 Message-Id: Date: Sat, 10 Feb 2001 11:15:24 +0000 (GMT) From: George Reid To: obrien@freebsd.org, FreeBSD-gnats-submit@freebsd.org Subject: ports/24989: [PATCH] security/john has unfetchable distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24989 >Category: ports >Synopsis: [PATCH] security/john 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: Sat Feb 10 03:10:03 PST 2001 >Closed-Date: >Last-Modified: >Originator: George Reid >Release: FreeBSD 5.0-CURRENT i386 >Organization: FreeBSD UKUG >Environment: n/a >Description: Port security/john has an unfetchable distfile. Included patch updates MASTER_SITES. >How-To-Repeat: Try to build :) >Fix: Index: Makefile =================================================================== RCS file: /usr/home/ncvs/ports/security/john/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 2000/11/25 00:05:09 1.14 +++ Makefile 2001/02/10 11:08:34 @@ -9,8 +9,10 @@ PORTNAME= john PORTVERSION= 1.6 CATEGORIES= security -MASTER_SITES= http://www.false.com/security/john/ \ - ftp://ftp.false.com/pub/security/john/ +MASTER_SITES= http://www.openwall.com/john/ \ + ftp://ftp.ru.openwall.com/pub/projects/ \ + ftp://ftp.ca.openwall.com/pub/projects/ \ + ftp://ftp.false.com/pub/security/projects/ MAINTAINER= obrien@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 Sat Feb 10 4:20:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 90DE837B491 for ; Sat, 10 Feb 2001 04:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1ACK3Q30979; Sat, 10 Feb 2001 04:20:03 -0800 (PST) (envelope-from gnats) Received: from relay2.agava.net.ru (2.oivt.mipt.ru [193.125.142.2]) by hub.freebsd.org (Postfix) with ESMTP id CA41537B401 for ; Sat, 10 Feb 2001 04:11:50 -0800 (PST) Received: from gw.office.agava.ru (2.oivt.mipt.ru [193.125.142.2]) by relay2.agava.net.ru (Postfix) with ESMTP id EB330437B8 for ; Sat, 10 Feb 2001 15:11:48 +0300 (MSK) Received: from juil.domain (juil.domain [192.168.1.50]) by gw.office.agava.ru (Postfix) with ESMTP id 99E045E90 for ; Sat, 10 Feb 2001 15:11:48 +0300 (MSK) Received: by juil.domain (Postfix, from userid 1001) id 81A75466; Sat, 10 Feb 2001 15:11:57 +0300 (MSK) Message-Id: <20010210121157.81A75466@juil.domain> Date: Sat, 10 Feb 2001 15:11:57 +0300 (MSK) From: ilya@martynov.org Reply-To: ilya@martynov.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24990: Update port (by mantainer): gnus-emacs20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24990 >Category: ports >Synopsis: Update port (by mantainer): gnus-emacs20 >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 Feb 10 04:20:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Ilya Martynov >Release: FreeBSD 4.2-STABLE i386 >Organization: AGAVA Software >Environment: N/A >Description: Make look gnus info docs look better in info docs listing (/usr/local/info/dir) >How-To-Repeat: N/A >Fix: diff -urN /usr/ports/news/gnus-emacs20/Makefile gnus-emacs20/Makefile --- /usr/ports/news/gnus-emacs20/Makefile Thu Feb 1 17:25:15 2001 +++ gnus-emacs20/Makefile Sat Feb 10 14:51:11 2001 @@ -7,6 +7,7 @@ PORTNAME= gnus PORTVERSION= 5.8.8 +PORTREVISION= 1 CATEGORIES= news mail elisp MASTER_SITES= ftp://ftp.gnus.org/pub/gnus/ PKGNAMESUFFIX= -${EMACS_PORT_NAME} diff -urN /usr/ports/news/gnus-emacs20/files/patch-aa gnus-emacs20/files/patch-aa --- /usr/ports/news/gnus-emacs20/files/patch-aa Thu Feb 1 17:25:17 2001 +++ gnus-emacs20/files/patch-aa Sat Feb 10 14:21:46 2001 @@ -1,6 +1,6 @@ ---- texi/emacs-mime.texi~ Thu Jan 4 08:16:12 2001 -+++ texi/emacs-mime.texi Mon Jan 29 13:34:06 2001 -@@ -1,11 +1,11 @@ +--- texi/emacs-mime.texi.orig Thu Jan 4 08:16:12 2001 ++++ texi/emacs-mime.texi Sat Feb 10 14:09:46 2001 +@@ -1,13 +1,13 @@ \input texinfo @c -*-texinfo-*- -@setfilename emacs-mime @@ -12,5 +12,8 @@ -@dircategory Editors +@dircategory The Emacs editor and associated tools @direntry - * Emacs MIME: (emacs-mime). The MIME de/composition library. +-* Emacs MIME: (emacs-mime). The MIME de/composition library. ++* Emacs MIME: (emacs-mime). The MIME de/composition library. @end direntry + @iftex + @finalout diff -urN /usr/ports/news/gnus-emacs20/files/patch-ab gnus-emacs20/files/patch-ab --- /usr/ports/news/gnus-emacs20/files/patch-ab Thu Feb 1 17:25:17 2001 +++ gnus-emacs20/files/patch-ab Sat Feb 10 14:29:14 2001 @@ -1,6 +1,6 @@ ---- texi/gnus.texi~ Thu Jan 4 08:16:16 2001 -+++ texi/gnus.texi Mon Jan 29 13:32:45 2001 -@@ -1,11 +1,11 @@ +--- texi/gnus.texi.orig Thu Jan 4 08:16:16 2001 ++++ texi/gnus.texi Sat Feb 10 14:10:09 2001 +@@ -1,13 +1,13 @@ \input texinfo @c -*-texinfo-*- -*- coding: iso-latin-1 -*- -@setfilename gnus @@ -12,5 +12,8 @@ -@dircategory Editors +@dircategory The Emacs editor and associated tools @direntry - * Gnus: (gnus). The newsreader Gnus. +-* Gnus: (gnus). The newsreader Gnus. ++* Gnus: (gnus). The newsreader Gnus. @end direntry + @iftex + @finalout diff -urN /usr/ports/news/gnus-emacs20/files/patch-ac gnus-emacs20/files/patch-ac --- /usr/ports/news/gnus-emacs20/files/patch-ac Thu Feb 1 17:25:17 2001 +++ gnus-emacs20/files/patch-ac Sat Feb 10 14:22:04 2001 @@ -1,6 +1,6 @@ ---- texi/message.texi~ Thu Jan 4 08:16:17 2001 -+++ texi/message.texi Mon Jan 29 13:32:59 2001 -@@ -1,11 +1,11 @@ +--- texi/message.texi.orig Thu Jan 4 08:16:17 2001 ++++ texi/message.texi Sat Feb 10 14:10:28 2001 +@@ -1,13 +1,13 @@ \input texinfo @c -*-texinfo-*- -@setfilename message @@ -12,5 +12,8 @@ -@dircategory Editors +@dircategory The Emacs editor and associated tools @direntry - * Message: (message). Mail and news composition mode that goes with Gnus. +-* Message: (message). Mail and news composition mode that goes with Gnus. ++* Message: (message). Mail and news composition mode that goes with Gnus. @end direntry + @iftex + @finalout >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 Feb 10 4:40:30 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id DAE4337B69D for ; Sat, 10 Feb 2001 04:40:01 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1ACe1333805; Sat, 10 Feb 2001 04:40:01 -0800 (PST) (envelope-from gnats) Received: from relay2.agava.net.ru (2.oivt.mipt.ru [193.125.142.2]) by hub.freebsd.org (Postfix) with ESMTP id 9E16D37B401 for ; Sat, 10 Feb 2001 04:34:59 -0800 (PST) Received: from gw.office.agava.ru (2.oivt.mipt.ru [193.125.142.2]) by relay2.agava.net.ru (Postfix) with ESMTP id B7982437B8 for ; Sat, 10 Feb 2001 15:34:57 +0300 (MSK) Received: from juil.domain (juil.domain [192.168.1.50]) by gw.office.agava.ru (Postfix) with ESMTP id 95D935E90 for ; Sat, 10 Feb 2001 15:34:57 +0300 (MSK) Received: by juil.domain (Postfix, from userid 1001) id 61826466; Sat, 10 Feb 2001 15:35:06 +0300 (MSK) Message-Id: <20010210123506.61826466@juil.domain> Date: Sat, 10 Feb 2001 15:35:06 +0300 (MSK) From: ilya@martynov.org Reply-To: ilya@martynov.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24991: New port: eudc-emacs20 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24991 >Category: ports >Synopsis: New port: eudc-emacs20 >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 Feb 10 04:40:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Ilya Martynov >Release: FreeBSD 4.2-STABLE i386 >Organization: AGAVA Software >Environment: N/A >Description: EUDC is a user-friendly e-lisp client interface to directory servers running various protocols: 1) LDAP: Lightweight Directory Protocol 2) CCSO: white pages directory system also known as PH/QI (from its standard client and server names). 3) BBDB: Big Brother's Insiduous Database (BBDB is a local directory database) EUDC lets you query your corporate directory server for information such as phone numbers and office locations. It lets you also query public servers such as Four11 or BigFoot to complete email addresses directly from the server while composing email messages in VM, Gnus, Rmail,... WWW: http://lspwww.epfl.ch/~figueire/Software/eudc/ >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: # # eudc-emacs20/Makefile # eudc-emacs20/distinfo # eudc-emacs20/pkg-comment # eudc-emacs20/pkg-descr # eudc-emacs20/pkg-message # eudc-emacs20/pkg-plist # echo x - eudc-emacs20/Makefile sed 's/^X//' >eudc-emacs20/Makefile << 'END-of-eudc-emacs20/Makefile' X# New ports collection makefile for: eudc-emacs20 X# Date created: 8 February 2001 X# Whom: ilya X# X# $FreeBSD$ X# X XPORTNAME= eudc XPORTVERSION= 1.30b XCATEGORIES= net mail elisp XMASTER_SITES= http://lspwww.epfl.ch/~figueire/Software/eudc/ XPKGNAMESUFFIX= -${EMACS_PORT_NAME} X XMAINTAINER= ilya@martynov.org X XRUN_DEPENDS= ldapsearch:${PORTSDIR}/net/openldap X XEMACS_PORT_NAME?=emacs20 X XUSE_GMAKE= yes XMAKEFILE= GNUmakefile X XINFODIR= ${PREFIX}/info X XPORTDOCDIR= share/doc/${PORTNAME}-${EMACS_PORT_NAME} XDOCS= COPYRIGHT ChangeLog INSTALL NEWS README XSOURCES= eudc-autoloads.el eudc-bob.el eudc-export.el \ X eudc-hotlist.el eudc-vars.el eudc.el \ X eudcb-bbdb.el eudcb-ldap.el eudcb-ph.el ldap.el XELCS= ${SOURCES:S/.el/.elc/g} XINFOS= eudc.info X XPLIST_SUB= EMACS_PORT_NAME=${EMACS_PORT_NAME} \ X INFODIR=${INFODIR:S/${PREFIX}\///} \ X EMACS_SITE_LISPDIR=${EMACS_SITE_LISPDIR} X XINSTALL_TARGET= Xlispdir= ${PREFIX}/${EMACS_SITE_LISPDIR}/eudc Xpost-install: X ${MKDIR} ${lispdir}; X.for i in ${SOURCES} ${ELCS} X ${INSTALL_DATA} ${WRKSRC}/${i} ${lispdir} X.endfor X.for i in ${INFOS} X ${INSTALL_DATA} ${WRKSRC}/${i} ${INFODIR} X install-info ${INFODIR}/eudc.info ${INFODIR}/dir X.endfor X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/${PORTDOCDIR} X.for i in ${DOCS} X ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/${PORTDOCDIR} X.endfor X.endif X @${CAT} ${PKGMESSAGE} X X.include END-of-eudc-emacs20/Makefile echo x - eudc-emacs20/distinfo sed 's/^X//' >eudc-emacs20/distinfo << 'END-of-eudc-emacs20/distinfo' XMD5 (eudc-1.30b.tar.gz) = b533615ef01991e4b8ecacbf523caeb0 END-of-eudc-emacs20/distinfo echo x - eudc-emacs20/pkg-comment sed 's/^X//' >eudc-emacs20/pkg-comment << 'END-of-eudc-emacs20/pkg-comment' XAn Emacs client to directory servers END-of-eudc-emacs20/pkg-comment echo x - eudc-emacs20/pkg-descr sed 's/^X//' >eudc-emacs20/pkg-descr << 'END-of-eudc-emacs20/pkg-descr' XEUDC is a user-friendly e-lisp client interface to directory servers running Xvarious protocols: X X1) LDAP: Lightweight Directory Protocol X2) CCSO: white pages directory system also known as PH/QI (from its standard X client and server names). X3) BBDB: Big Brother's Insiduous Database (BBDB is a local directory database) X XEUDC lets you query your corporate directory server for information such as Xphone numbers and office locations. It lets you also query public servers Xsuch as Four11 or BigFoot to complete email addresses directly from the Xserver while composing email messages in VM, Gnus, Rmail,... X XWWW: http://lspwww.epfl.ch/~figueire/Software/eudc/ X X-- ported by Ilya Martynov END-of-eudc-emacs20/pkg-descr echo x - eudc-emacs20/pkg-message sed 's/^X//' >eudc-emacs20/pkg-message << 'END-of-eudc-emacs20/pkg-message' X******************************************************************* X XAdd the following to your .emacs init file if you want to use EUDC: X X (require 'eudc-autoloads) X X******************************************************************* END-of-eudc-emacs20/pkg-message echo x - eudc-emacs20/pkg-plist sed 's/^X//' >eudc-emacs20/pkg-plist << 'END-of-eudc-emacs20/pkg-plist' X%%EMACS_SITE_LISPDIR%%/eudc/eudc-autoloads.el X%%EMACS_SITE_LISPDIR%%/eudc/eudc-autoloads.elc X%%EMACS_SITE_LISPDIR%%/eudc/eudc-bob.el X%%EMACS_SITE_LISPDIR%%/eudc/eudc-bob.elc X%%EMACS_SITE_LISPDIR%%/eudc/eudc-export.el X%%EMACS_SITE_LISPDIR%%/eudc/eudc-export.elc X%%EMACS_SITE_LISPDIR%%/eudc/eudc-hotlist.el X%%EMACS_SITE_LISPDIR%%/eudc/eudc-hotlist.elc X%%EMACS_SITE_LISPDIR%%/eudc/eudc-vars.el X%%EMACS_SITE_LISPDIR%%/eudc/eudc-vars.elc X%%EMACS_SITE_LISPDIR%%/eudc/eudc.el X%%EMACS_SITE_LISPDIR%%/eudc/eudc.elc X%%EMACS_SITE_LISPDIR%%/eudc/eudcb-bbdb.el X%%EMACS_SITE_LISPDIR%%/eudc/eudcb-bbdb.elc X%%EMACS_SITE_LISPDIR%%/eudc/eudcb-ldap.el X%%EMACS_SITE_LISPDIR%%/eudc/eudcb-ldap.elc X%%EMACS_SITE_LISPDIR%%/eudc/eudcb-ph.el X%%EMACS_SITE_LISPDIR%%/eudc/eudcb-ph.elc X%%EMACS_SITE_LISPDIR%%/eudc/ldap.el X%%EMACS_SITE_LISPDIR%%/eudc/ldap.elc X@unexec install-info --delete %D/%%INFODIR%%/eudc.info %D/%%INFODIR%%/dir X%%INFODIR%%/eudc.info X@exec install-info %D/%%INFODIR%%/eudc.info %D/%%INFODIR%%/dir Xshare/doc/eudc-%%EMACS_PORT_NAME%%/COPYRIGHT Xshare/doc/eudc-%%EMACS_PORT_NAME%%/ChangeLog Xshare/doc/eudc-%%EMACS_PORT_NAME%%/INSTALL Xshare/doc/eudc-%%EMACS_PORT_NAME%%/NEWS Xshare/doc/eudc-%%EMACS_PORT_NAME%%/README X@dirrm %%EMACS_SITE_LISPDIR%%/eudc X@dirrm share/doc/eudc-%%EMACS_PORT_NAME%% END-of-eudc-emacs20/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 Sat Feb 10 5:49: 2 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mugin.agora.dk (unknown [193.164.248.11]) by hub.freebsd.org (Postfix) with ESMTP id 077DA37B491; Sat, 10 Feb 2001 05:48:44 -0800 (PST) Received: from steen ([193.164.251.162]) by mugin.agora.dk (8.9.1/8.9.1) with SMTP id OAA14605; Sat, 10 Feb 2001 14:38:58 +0100 Message-ID: <000301c09367$63fe5220$0201a8c0@imediac.dk> From: "Sht" To: Cc: Subject: FreeBSD Port: poptop-1.0.0 Date: Sat, 10 Feb 2001 14:43:01 +0100 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 Hi We always get the error "pptpd -direct connection label not found" when we try to make a connection this is so from both win 9x vpn and mac vpn clients platform freebsd 3.4, poptop build from ports any sugestions ? . Med Venlig Hilsen Steen Thomsen Bil 40 82 54 56 Mediac Haderslevvej 29 6000 Kolding Tlf 75520756 Fax 75528182 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 6:10:21 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 716B137B491 for ; Sat, 10 Feb 2001 06:10:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AEA3k44403; Sat, 10 Feb 2001 06:10:03 -0800 (PST) (envelope-from gnats) Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by hub.freebsd.org (Postfix) with ESMTP id 2F0C837B401 for ; Sat, 10 Feb 2001 06:01:50 -0800 (PST) Received: by freebsd.org.ru (Postfix, from userid 1000) id C2CD61B; Sat, 10 Feb 2001 17:01:47 +0300 (MSK) Message-Id: <20010210140147.C2CD61B@freebsd.org.ru> Date: Sat, 10 Feb 2001 17:01:47 +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/24993: update databases/gigabase from 2.22 to 2.25 (be maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24993 >Category: ports >Synopsis: update databases/gigabase from 2.22 to 2.25 (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 Feb 10 06:10:01 PST 2001 >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: update databases/gigabase from 2.22 to 2.25 >How-To-Repeat: >Fix: diff -ruN gigabase.old/Makefile gigabase/Makefile --- gigabase.old/Makefile Sat Feb 10 16:53:21 2001 +++ gigabase/Makefile Sat Feb 10 16:48:45 2001 @@ -6,7 +6,7 @@ # PORTNAME= gigabase -PORTVERSION= 2.22 +PORTVERSION= 2.25 CATEGORIES= databases MASTER_SITES= http://www.ispras.ru/~knizhnik/ diff -ruN gigabase.old/distinfo gigabase/distinfo --- gigabase.old/distinfo Sat Feb 10 16:53:21 2001 +++ gigabase/distinfo Sat Feb 10 16:50:01 2001 @@ -1 +1 @@ -MD5 (gigabase-2.22.tar.gz) = 172f02f1e4bbed93ef221bbf0b6bca6f +MD5 (gigabase-2.25.tar.gz) = 2d9dc255cfaeac47e856617cd8b98bc9 >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 Feb 10 7:30:30 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C712637B503 for ; Sat, 10 Feb 2001 07:30:07 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AFU7X39123; Sat, 10 Feb 2001 07:30:07 -0800 (PST) (envelope-from gnats) Received: from relay2.agava.net.ru (2.oivt.mipt.ru [193.125.142.2]) by hub.freebsd.org (Postfix) with ESMTP id 7A12937B491 for ; Sat, 10 Feb 2001 07:27:13 -0800 (PST) Received: from gw.office.agava.ru (2.oivt.mipt.ru [193.125.142.2]) by relay2.agava.net.ru (Postfix) with ESMTP id EEBCD43815 for ; Sat, 10 Feb 2001 18:27:10 +0300 (MSK) Received: from juil.domain (juil.domain [192.168.1.50]) by gw.office.agava.ru (Postfix) with ESMTP id CB9125E90 for ; Sat, 10 Feb 2001 18:27:10 +0300 (MSK) Received: by juil.domain (Postfix, from userid 1001) id 7876D572; Sat, 10 Feb 2001 18:27:11 +0300 (MSK) Message-Id: <20010210152711.7876D572@juil.domain> Date: Sat, 10 Feb 2001 18:27:11 +0300 (MSK) From: ilya@martynov.org Reply-To: ilya@martynov.org To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24994: New port: gnuserv-3.12.1 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24994 >Category: ports >Synopsis: New port: gnuserv-3.12.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: Sat Feb 10 07:30:00 PST 2001 >Closed-Date: >Last-Modified: >Originator: Ilya Martynov >Release: FreeBSD 4.2-STABLE i386 >Organization: AGAVA Software >Environment: N/A >Description: gnuserv allows you to attach to an already running Emacs. This allows external programs to make use of Emacs' editing capabilities. It is like GNU Emacs' emacsserver/server.el, but has many more features. WWW: http://linuxcare.com.au/people/martins/hacks/emacs/ >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: # # gnuserv-emacs20/Makefile # gnuserv-emacs20/distinfo # gnuserv-emacs20/files # gnuserv-emacs20/pkg-comment # gnuserv-emacs20/pkg-descr # gnuserv-emacs20/pkg-message # gnuserv-emacs20/pkg-plist # gnuserv-emacs20/files/patch-aa # gnuserv-emacs20/files/patch-ab # echo x - gnuserv-emacs20/Makefile sed 's/^X//' >gnuserv-emacs20/Makefile << 'END-of-gnuserv-emacs20/Makefile' X# New ports collection makefile for: gnuserv-emacs20 X# Date created: 10 February 2001 X# Whom: ilya X# X# $FreeBSD$ X# X XPORTNAME= gnuserv XPORTVERSION= 3.12.1 XCATEGORIES= editors XMASTER_SITES= http://linuxcare.com.au/people/martins/hacks/emacs/src/ XPKGNAMESUFFIX= -${EMACS_PORT_NAME} X XMAINTAINER= ilya@martynov.org X XHAS_CONFIGURE= yes X XEMACS_PORT_NAME?=emacs20 X XCONFIGURE_ARGS= --prefix=${PREFIX} X XPORTDOCDIR= share/doc/gnuserv-${EMACS_PORT_NAME} XMAN1= gnuserv.1 XMLINKS= gnuserv.1 gnuattach.1 XMLINKS+= gnuserv.1 gnuclient.1 XMLINKS+= gnuserv.1 gnudoit.1 XDOCS= COPYING ChangeLog INSTALL README README.orig XSOURCES= devices.el gnuserv-compat.el gnuserv.el XELCS= ${SOURCES:S/.el/.elc/g} X XPLIST_SUB= EMACS_PORT_NAME=${EMACS_PORT_NAME} \ X EMACS_SITE_LISPDIR=${EMACS_SITE_LISPDIR} X Xlispdir= ${PREFIX}/${EMACS_SITE_LISPDIR}/gnuserv Xpost-install: X ${MKDIR} ${lispdir}; X.for i in ${SOURCES} ${ELCS} X ${INSTALL_DATA} ${WRKSRC}/${i} ${lispdir} X.endfor X.if !defined(NOPORTDOCS) X ${MKDIR} ${PREFIX}/${PORTDOCDIR} X.for i in ${DOCS} X ${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/${PORTDOCDIR} X.endfor X.endif X @${CAT} ${PKGMESSAGE} X X.include END-of-gnuserv-emacs20/Makefile echo x - gnuserv-emacs20/distinfo sed 's/^X//' >gnuserv-emacs20/distinfo << 'END-of-gnuserv-emacs20/distinfo' XMD5 (gnuserv-3.12.1.tar.gz) = b8a60c799686a8a74bc7928f8e92b7d7 END-of-gnuserv-emacs20/distinfo echo c - gnuserv-emacs20/files mkdir -p gnuserv-emacs20/files > /dev/null 2>&1 echo x - gnuserv-emacs20/pkg-comment sed 's/^X//' >gnuserv-emacs20/pkg-comment << 'END-of-gnuserv-emacs20/pkg-comment' XA standalone release of gnuserv for GNU Emacs END-of-gnuserv-emacs20/pkg-comment echo x - gnuserv-emacs20/pkg-descr sed 's/^X//' >gnuserv-emacs20/pkg-descr << 'END-of-gnuserv-emacs20/pkg-descr' Xgnuserv allows you to attach to an already running Emacs. This allows Xexternal programs to make use of Emacs' editing capabilities. It is Xlike GNU Emacs' emacsserver/server.el, but has many more features. X XWWW: http://linuxcare.com.au/people/martins/hacks/emacs/ X X-- ported by Ilya Martynov END-of-gnuserv-emacs20/pkg-descr echo x - gnuserv-emacs20/pkg-message sed 's/^X//' >gnuserv-emacs20/pkg-message << 'END-of-gnuserv-emacs20/pkg-message' X***************************************************************************** X XAdd following code into your .emacs to enable autoloading of gnuserv lisp Xfiles: X X (autoload 'gnuserv-start "gnuserv-compat" X "Allow this Emacs process to be a server for client processes." X t) X X***************************************************************************** END-of-gnuserv-emacs20/pkg-message echo x - gnuserv-emacs20/pkg-plist sed 's/^X//' >gnuserv-emacs20/pkg-plist << 'END-of-gnuserv-emacs20/pkg-plist' X%%EMACS_SITE_LISPDIR%%/gnuserv/devices.el X%%EMACS_SITE_LISPDIR%%/gnuserv/devices.elc X%%EMACS_SITE_LISPDIR%%/gnuserv/gnuserv-compat.el X%%EMACS_SITE_LISPDIR%%/gnuserv/gnuserv-compat.elc X%%EMACS_SITE_LISPDIR%%/gnuserv/gnuserv.el X%%EMACS_SITE_LISPDIR%%/gnuserv/gnuserv.elc Xbin/gnuattach Xbin/gnuclient Xbin/gnudoit Xbin/gnuserv Xshare/doc/gnuserv-%%EMACS_PORT_NAME%%/COPYING Xshare/doc/gnuserv-%%EMACS_PORT_NAME%%/ChangeLog Xshare/doc/gnuserv-%%EMACS_PORT_NAME%%/INSTALL Xshare/doc/gnuserv-%%EMACS_PORT_NAME%%/README Xshare/doc/gnuserv-%%EMACS_PORT_NAME%%/README.orig X@dirrm %%EMACS_SITE_LISPDIR%%/gnuserv X@dirrm share/doc/gnuserv-%%EMACS_PORT_NAME%% END-of-gnuserv-emacs20/pkg-plist echo x - gnuserv-emacs20/files/patch-aa sed 's/^X//' >gnuserv-emacs20/files/patch-aa << 'END-of-gnuserv-emacs20/files/patch-aa' X--- Makefile.in.orig Wed Jan 31 03:23:38 2001 X+++ Makefile.in Sat Feb 10 17:24:58 2001 X@@ -31,6 +31,7 @@ X X INSTALL = @INSTALL@ X INSTALL_PROGRAM = @INSTALL_PROGRAM@ X+INSTALL_SCRIPT = @INSTALL_SCRIPT@ X INSTALL_DATA = @INSTALL_DATA@ X X DEFS = @DEFS@ X@@ -179,10 +180,15 @@ X -$(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(datadir) $(libdir) $(infodir) $(mandir) X X install-programs: all-gnuserv X- @for prog in gnuserv gnuclient gnuattach gnudoit ; do \ X+ @for prog in gnuserv gnuclient ; do \ X new=$(bindir)/$(binprefix)$$prog$(binsuffix); \ X echo $(INSTALL_PROGRAM) $$prog $$new; \ X $(INSTALL_PROGRAM) $$prog $$new;\ X+ done X+ @for prog in gnuattach gnudoit ; do \ X+ new=$(bindir)/$(binprefix)$$prog$(binsuffix); \ X+ echo $(INSTALL_SCRIPT) $$prog $$new; \ X+ $(INSTALL_SCRIPT) $$prog $$new;\ X done X X install-man: force END-of-gnuserv-emacs20/files/patch-aa echo x - gnuserv-emacs20/files/patch-ab sed 's/^X//' >gnuserv-emacs20/files/patch-ab << 'END-of-gnuserv-emacs20/files/patch-ab' X--- gnuserv.c~ Thu Jan 25 13:41:48 2001 X+++ gnuserv.c Sat Feb 10 18:00:44 2001 X@@ -790,7 +790,7 @@ X + strlen (server.sun_path) + 1); X server.sun_len = bindlen; X #else X- bindlen = strlen (server.sun_path) + sizeof (server.sun_family); X+ bindlen = strlen (server.sun_path) + 1 + sizeof (server.sun_family); X #endif X X if (bind(ls,(struct sockaddr *)&server,bindlen) < 0) END-of-gnuserv-emacs20/files/patch-ab 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 Feb 10 7:38:12 2001 Delivered-To: freebsd-ports@freebsd.org Received: from relay2.agava.net.ru (2.oivt.mipt.ru [193.125.142.2]) by hub.freebsd.org (Postfix) with ESMTP id 4C55137B491; Sat, 10 Feb 2001 07:37:54 -0800 (PST) Received: from gw.office.agava.ru (2.oivt.mipt.ru [193.125.142.2]) by relay2.agava.net.ru (Postfix) with ESMTP id 762C343812; Sat, 10 Feb 2001 18:37:52 +0300 (MSK) Received: from juil.domain (juil.domain [192.168.1.50]) by gw.office.agava.ru (Postfix) with ESMTP id 3E2265E90; Sat, 10 Feb 2001 18:37:52 +0300 (MSK) Received: by juil.domain (Postfix, from userid 1001) id C84D5572; Sat, 10 Feb 2001 18:37:52 +0300 (MSK) To: gnats-admin@FreeBSD.org Cc: freebsd-ports@FreeBSD.org Subject: Re: ports/24994: New port: gnuserv-3.12.1 References: <200102101530.f1AFU1B39112@freefall.freebsd.org> From: Ilya Martynov Date: 10 Feb 2001 18:37:52 +0300 In-Reply-To: <200102101530.f1AFU1B39112@freefall.freebsd.org> Message-ID: <86hf22tupb.fsf@juil.domain> Lines: 6 User-Agent: Gnus/5.0808 (Gnus v5.8.8) 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 Sorry - error. Actually subject should be 'New port: gnuserv-emacs20' -- Ilya Martynov AGAVA Software Company, http://www.agava.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 7:40:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6186C37B503 for ; Sat, 10 Feb 2001 07:40:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AFe2N40273; Sat, 10 Feb 2001 07:40:02 -0800 (PST) (envelope-from gnats) Received: from klecker.debian.org (klecker.debian.org [198.186.203.20]) by hub.freebsd.org (Postfix) with ESMTP id 7925B37B491 for ; Sat, 10 Feb 2001 07:33:56 -0800 (PST) Received: from algernon by klecker.debian.org with local (Exim 3.12 1 (Debian)) id 14Rc28-0004UV-00; Sat, 10 Feb 2001 07:33:56 -0800 Message-Id: Date: Sat, 10 Feb 2001 07:33:56 -0800 From: Gergely Nagy <8@free.bsd.hu> To: FreeBSD-gnats-submit@freebsd.org Subject: ports/24995: New port: x11-wm/ratpoison - Simple window manager with no fat library dependencies. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24995 >Category: ports >Synopsis: New port: x11-wm/ratpoison - Simple window manager with no fat library dependencies. >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 Feb 10 07:40:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Gergely Nagy >Release: FreeBSD 5.0-CURRENT i386 >Organization: The MadHouse Project >Environment: System: FreeBSD fearbsd.bonehunter.org 5.0-CURRENT FreeBSD 5.0-CURRENT #2: Sun Feb 4 16:16:10 CET 2001 root@fearbsd.bonehunter.org:/usr/obj/usr/src/sys/FEAR i386 >Description: ratpoison is a simple Window Manager with no fat library dependencies, no fancy graphics, no window decorations, and no flashy wank. It is largely modelled after GNU Screen which has done wonders in virtual terminal market. All interaction with the window manager is done through keystrokes. ratpoison has a prefix map to minimize the key clobbering that cripples EMACS and other quality pieces of software. >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: # # ratpoison # ratpoison/Makefile # ratpoison/distinfo # ratpoison/pkg-comment # ratpoison/pkg-descr # ratpoison/pkg-plist # ratpoison/pkg-plist.nodoc # echo c - ratpoison mkdir -p ratpoison > /dev/null 2>&1 echo x - ratpoison/Makefile sed 's/^X//' >ratpoison/Makefile << 'END-of-ratpoison/Makefile' X# New ports collection makefile for: ratpoison X# Date created: January 20, 2001 X# Whom: Gergely Nagy <8@free.bsd.hu> X# X# $FreeBSD$ X# X XPORTNAME= ratpoison XPORTVERSION= 0.0.5 XCATEGORIES= x11-wm XMASTER_SITES= ${MASTER_SITE_SOURCEFORGE} XMASTER_SITE_SUBDIR= ${PORTNAME} X XMAINTAINER= 8@free.bsd.hu X X.if defined(WITH_RXVT) XRUN_DEPENDS= ${X11BASE}/bin/rxvt:${PORTSDIR}/x11/rxvt X.endif X XUSE_X_PREFIX= yes XGNU_CONFIGURE= yes X X.if defined(WITH_RXVT) Xpre-build: X ${PERL} -pi -e 's/xterm/rxvt/' ${WRKSRC}/src/actions.c X.endif X X.if defined(NOPORTDOCS) XPLIST= ${PKGDIR}/pkg-plist.nodoc X.endif X Xdo-install: X.if !defined(NOPORTDOCS) X ${GMAKE} -C ${WRKSRC} ${INSTALL_TARGET} X.else X ${GMAKE} -C ${WRKSRC} ${INSTALL_TARGET} SUBDIRS=src X.endif X X.include END-of-ratpoison/Makefile echo x - ratpoison/distinfo sed 's/^X//' >ratpoison/distinfo << 'END-of-ratpoison/distinfo' XMD5 (ratpoison-0.0.5.tar.gz) = 766235d28b34fb4e988fdd1bdcecb622 END-of-ratpoison/distinfo echo x - ratpoison/pkg-comment sed 's/^X//' >ratpoison/pkg-comment << 'END-of-ratpoison/pkg-comment' XSimple window manager with no fat library dependencies END-of-ratpoison/pkg-comment echo x - ratpoison/pkg-descr sed 's/^X//' >ratpoison/pkg-descr << 'END-of-ratpoison/pkg-descr' XRatpoison is a simple Window Manager with no fat library Xdependencies, no fancy graphics, no window decorations, Xand no flashy wank. It is largely modelled after GNU XScreen which has done wonders in virtual terminal market. X XAll interaction with the window manager is done through Xkeystrokes. ratpoison has a prefix map to minimize the Xkey clobbering that cripples EMACS and other quality Xpieces of software. X X- Gergely Nagy X8@free.bsd.hu X XWWW: http://ratpoison.sourceforge.net/ XAuthor: Shawn Betts END-of-ratpoison/pkg-descr echo x - ratpoison/pkg-plist sed 's/^X//' >ratpoison/pkg-plist << 'END-of-ratpoison/pkg-plist' Xbin/ratpoison X@unexec install-info --delete %D/info/ratpoison %D/info/dir Xinfo/ratpoison.info X@exec install-info %D/info/ratpoison.info %D/info/dir END-of-ratpoison/pkg-plist echo x - ratpoison/pkg-plist.nodoc sed 's/^X//' >ratpoison/pkg-plist.nodoc << 'END-of-ratpoison/pkg-plist.nodoc' Xbin/ratpoison END-of-ratpoison/pkg-plist.nodoc 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 Feb 10 8:27:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B896637B4EC; Sat, 10 Feb 2001 08:27:05 -0800 (PST) Received: (from knu@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AGR5R46620; Sat, 10 Feb 2001 08:27:05 -0800 (PST) (envelope-from knu) Date: Sat, 10 Feb 2001 08:27:05 -0800 (PST) From: Message-Id: <200102101627.f1AGR5R46620@freefall.freebsd.org> To: th@cis.ibaraki.ac.jp, knu@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24981: ports/lang/ruby : checksum mismatch for 1 distfile Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/lang/ruby : checksum mismatch for 1 distfile State-Changed-From-To: open->closed State-Changed-By: knu State-Changed-When: Sun Feb 11 01:26:44 JST 2001 State-Changed-Why: Checksum corrected, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=24981 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 8:29: 9 2001 Delivered-To: freebsd-ports@freebsd.org Received: from thelab.hub.org (SHW39-29.accesscable.net [24.138.39.29]) by hub.freebsd.org (Postfix) with ESMTP id 075C237B401 for ; Sat, 10 Feb 2001 08:28:51 -0800 (PST) Received: from localhost (scrappy@localhost) by thelab.hub.org (8.11.2/8.11.1) with ESMTP id f1AGQQs80444 for ; Sat, 10 Feb 2001 12:26:26 -0400 (AST) (envelope-from scrappy@hub.org) X-Authentication-Warning: thelab.hub.org: scrappy owned process doing -bs Date: Sat, 10 Feb 2001 12:26:25 -0400 (AST) From: The Hermit Hacker To: Subject: Wrap.c in X ... for DES support ... 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 With all the restrictions that have recently been lifted, has anyone considered having Wrap.c auto-downloaded? If not, how about some sort of note as to where t find it? Do you want to enable XDM-AUTHORIZATION-1 support? [YES] ==> Wraphelp.c not found, DES support NOT enabled. Marc G. Fournier ICQ#7615664 IRC Nick: Scrappy Systems Administrator @ hub.org primary: scrappy@hub.org secondary: scrappy@{freebsd|postgresql}.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 8:41:24 2001 Delivered-To: freebsd-ports@freebsd.org Received: from Haydn.henoc.com (modemcable012.184-202-24.mtl.mc.videotron.ca [24.202.184.12]) by hub.freebsd.org (Postfix) with ESMTP id E635037B4EC; Sat, 10 Feb 2001 08:41:05 -0800 (PST) Received: from henoc.com (jsbach.henocoffice.com [192.168.0.102]) by Haydn.henoc.com (8.11.2/8.11.2) with ESMTP id f1AGf1i22441; Sat, 10 Feb 2001 11:41:02 -0500 (EST) (envelope-from Roger.Savard@henoc.com) Message-ID: <3A856F1B.D17D4CE7@henoc.com> Date: Sat, 10 Feb 2001 11:40:59 -0500 From: "Roger Savard (Consultation henoc inc.)" X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: ade@FreeBSD.org Cc: ports@FreeBSD.org Subject: FreeBSD Port: oaf-0.6.2 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi I am running FreeBSD4.2-Stable, and I was to build gnome from the ports collection and it stopped in oaf . I rebuild one by one libtool, Orbit, but now I'm stucked with OAF. Regards d-load.c: In function `od_entry_read_props': od-load.c:50: structure has no member named `xmlChildrenNode' od-load.c:68: structure has no member named `xmlChildrenNode' od-load.c:95: structure has no member named `xmlChildrenNode' od-load.c:111: structure has no member named `xmlChildrenNode' od-load.c: In function `od_load_file': od-load.c:292: structure has no member named `xmlRootNode' od-load.c:293: structure has no member named `xmlRootNode' od-load.c:295: structure has no member named `xmlRootNode' gmake[2]: *** [od-load.o] Error 1 gmake[2]: Leaving directory `/.amd_mnt/haydn/host/data/ports/devel/oaf/work/oaf-0.6.2/oafd' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/.amd_mnt/haydn/host/data/ports/devel/oaf/work/oaf-0.6.2' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /.amd_mnt/haydn/host/data/ports/devel/oaf. *** Error code 1 Stop in /.amd_mnt/haydn/host/data/ports/devel/oaf. *** Error code 1 Stop in /.amd_mnt/haydn/host/data/ports/devel/oaf. JSBach# -- Roger Savard @ henoc (dot) com Unix Consultant http://www.henoc.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 8:50:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 05C2137B4EC for ; Sat, 10 Feb 2001 08:50:04 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AGo3f48715; Sat, 10 Feb 2001 08:50:03 -0800 (PST) (envelope-from gnats) Date: Sat, 10 Feb 2001 08:50:03 -0800 (PST) Message-Id: <200102101650.f1AGo3f48715@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Valeriy E. Ushakov" Subject: Re: ports/24983: Emacs ports have misleading names Reply-To: "Valeriy E. Ushakov" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24983; it has been noted by GNATS. From: "Valeriy E. Ushakov" To: grog@lemis.com Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/24983: Emacs ports have misleading names Date: Sat, 10 Feb 2001 19:41:13 +0300 > There are currently two ports for Emacs: editors/emacs, which > installs the obsolete version 19.34, and editors/emacs20, > which installs the current version 20.7. And bear in mind that GNU Emacs 21 will be released Real Soon Now (I use beta and it's very stable). So editors/emacs should probably be reserved for 21, emacs20 leaved as it is and what is currently editors/emacs - renamed to emacs19. -uwe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 9: 0: 9 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mile.nevermind.kiev.ua (ppp-244.nav.kiev.ua [213.169.65.244]) by hub.freebsd.org (Postfix) with ESMTP id 70F0B37B401 for ; Sat, 10 Feb 2001 08:59:45 -0800 (PST) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.11.1/8.11.1) id f1AGxgI32203 for freebsd-ports@freebsd.org; Sat, 10 Feb 2001 18:59:42 +0200 (EET) (envelope-from never) Date: Sat, 10 Feb 2001 18:59:40 +0200 From: Nevermind To: freebsd-ports@freebsd.org Subject: [PATCH] for new ratpoison port Message-ID: <20010210185940.A32192@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="Pd0ReVV5GZGQvF3a" Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --Pd0ReVV5GZGQvF3a Content-Type: multipart/mixed; boundary="6c2NcOVqGQ03X4Wi" Content-Disposition: inline --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Attached is patch to avoid one warning while compiling getopt.c included in this port. --=20 NEVE-RIPE The instructions said to install Windows 98 or better, so I installed FreeBSD. --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-aa Content-Transfer-Encoding: quoted-printable --- work/ratpoison-0.0.5/src/getopt.c Tue Oct 31 03:27:34 2000 +++ work/ratpoison-0.0.5/src/getopt.c.new Sat Feb 10 18:54:47 2001 @@ -690,6 +690,7 @@ else { if (opterr) + { if (argv[optind - 1][1] =3D=3D '-') /* --option */ fprintf (stderr, @@ -700,7 +701,7 @@ fprintf (stderr, _("%s: option `%c%s' doesn't allow an argument\n"), argv[0], argv[optind - 1][0], pfound->name); - + } nextchar +=3D strlen (nextchar); =20 optopt =3D pfound->val; --6c2NcOVqGQ03X4Wi-- --Pd0ReVV5GZGQvF3a Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6hXN5pCk6epJSQlIRAqN3AKCHmvAWdIn07AqbyCwidO4zyZp5gwCeJgyS 23AEDz0UyeB1nwns1hYbpjI= =uTKV -----END PGP SIGNATURE----- --Pd0ReVV5GZGQvF3a-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 9:20:24 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id C7B5837B401 for ; Sat, 10 Feb 2001 09:20:03 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AHK3t53276; Sat, 10 Feb 2001 09:20:03 -0800 (PST) (envelope-from gnats) Date: Sat, 10 Feb 2001 09:20:03 -0800 (PST) Message-Id: <200102101720.f1AHK3t53276@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: "Akinori MUSHA" Subject: Re: ports/24930: Update port: graphics/gd to 1.8.4 Reply-To: "Akinori MUSHA" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24930; it has been noted by GNATS. From: "Akinori MUSHA" To: billf@FreeBSD.org Cc: freebsd-gnats-submit@FreeBSD.ORG, ichiro@ichiro.org, tkato@prontomail.ne.jp Subject: Re: ports/24930: Update port: graphics/gd to 1.8.4 Date: Sun, 11 Feb 2001 02:13:27 +0900 This looks fine to me, and I'd suggest we add MASTER_SITE_RINGSERVER to MASTER_SITES with MASTER_SITE_SUBDIR=graphics/gd. Also, it would be nice if we add two more patches to complete GD's Japanese charset support supplied by the maintainer of GD's Japanese support code. With it, we can make japanese/gd a slave port of graphics/gd that just defines "CFLAGS+=-DJISX0208". :) As those patches only affect the Japanese support portion we can safely add them, and judging from the past, they will be merged into GD in the future anyway. Bill, may I commit the update? -- / /__ __ 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" --- gdkanji.c.orig Fri Feb 2 05:23:56 2001 +++ gdkanji.c Wed Feb 7 20:59:08 2001 @@ -103,14 +103,18 @@ unsigned char *str; #endif { - static int whatcode; + static int whatcode = ASCII; + int oldcode = ASCII; int c, i; char *lang = NULL; c = '\1'; i = 0; - if (whatcode == 0) whatcode = ASCII; + if (whatcode != EUCORSJIS && whatcode != ASCII) { + oldcode = whatcode; + whatcode = ASCII; + } while ((whatcode == EUCORSJIS || whatcode == ASCII) && c != '\0') { if ((c = str[i++]) != '\0') { @@ -167,7 +171,7 @@ if ((c >= 64 && c <= 126) || (c >= 128 && c <= 160)) whatcode = SJIS; else - if (c >= 253 && c >= 254) whatcode = EUC; + if (c >= 253 && c <= 254) whatcode = EUC; else if (c >= 161 && c <= 252) whatcode = EUCORSJIS; } @@ -184,6 +188,8 @@ debug("Kanji code detected at %d byte.", i); #endif + if (whatcode == EUCORSJIS && oldcode != ASCII) whatcode = oldcode; + if (whatcode == EUCORSJIS) { if (getenv ("LC_ALL")) lang = getenv ("LC_ALL"); else @@ -310,7 +316,7 @@ error("invalid code specification: \"%s\" or \"%s\"", EUCSTR, code); #endif - strcpy(to, from); + ustrcpy(to, from); return; } @@ -328,7 +334,7 @@ else #endif error("something happen"); - strcpy(to, from); + ustrcpy(to, from); return; } @@ -526,11 +532,10 @@ t = (unsigned char *)gdMalloc(BUFSIZ); any2eucjp(t, s, BUFSIZ); - i = strlen(t); + i = strlen((const char *)t); gdFree(t); return i; } -#endif #ifdef DEBUG int main() @@ -543,7 +548,7 @@ while ( (c = fgetc(stdin)) != '\n' && i < BUFSIZ ) input[i++] = c; input[i] = '\0'; - printf("input : %d bytes\n", strlen(input)); + printf("input : %d bytes\n", strlen((const char *)input)); printf("output: %d bytes\n", strwidth(input)); output = (unsigned char *)gdMalloc(BUFSIZ); @@ -555,4 +560,5 @@ return 0; } +#endif #endif --- gdttf.c.orig Fri Feb 2 05:23:56 2001 +++ gdttf.c Wed Feb 7 20:57:34 2001 @@ -221,11 +221,10 @@ byte = *((unsigned char *) str); #ifdef JISX0208 if (0xA1 <= byte && byte <= 0xFE) { - int jiscode, ku, ten; + int ku, ten; - jiscode = 0x100 * (byte & 0x7F) + (str[1] & 0x7F); - ku = (jiscode >> 8) - 0x20; - ten = (jiscode % 256) - 0x20; + ku = (byte & 0x7F) - 0x20; + ten = (str[1] & 0x7F) - 0x20; if ( (ku < 1 || ku > 92) || (ten < 1 || ten > 94) ) { *chPtr = (Tcl_UniChar) byte; return 1; To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 9:21:41 2001 Delivered-To: freebsd-ports@freebsd.org Received: from smtp2.cluster.oleane.net (smtp2.cluster.oleane.net [195.25.12.17]) by hub.freebsd.org (Postfix) with ESMTP id D59A237B491 for ; Sat, 10 Feb 2001 09:21:18 -0800 (PST) Received: from graf.pompo.net (dyn-1-1-044.Lyn.dialup.oleane.fr [62.161.7.44]) by smtp2.cluster.oleane.net with ESMTP id f1AHLFn89790; Sat, 10 Feb 2001 18:21:15 +0100 (CET) Received: by graf.pompo.net (Postfix, from userid 1001) id 91133773C; Sat, 10 Feb 2001 18:19:28 +0100 (CET) Date: Sat, 10 Feb 2001 18:19:28 +0100 From: Thierry Thomas To: Ben Smithurst Cc: ports@freebsd.org Subject: Re: newsx port? Message-ID: <20010210181928.B27075@graf.pompo.net> References: <20001226221240.A837@graf.pompo.net> <20001226213503.C78904@strontium.scientia.demon.co.uk> <20001226231524.A1150@graf.pompo.net> <20001226235816.A3866@graf.pompo.net> <20001227154744.D78904@strontium.scientia.demon.co.uk> <20001227211542.A994@graf.pompo.net> <20001227211725.H78904@strontium.scientia.demon.co.uk> 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: <20001227211725.H78904@strontium.scientia.demon.co.uk>; from ben@scientia.demon.co.uk on Wed, Dec 27, 2000 at 09:17:25PM +0000 X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP: 0xC71405A2 Organization: Kabbale Eros Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, Long time ago, on Wed, Dec 27, 2000 at 09:17:25PM +0000, Ben Smithurst wrote: > Thierry Thomas wrote: > > > An idea: what is your release of inn? I'm running 2.3, and newsx seems to be > > older: it could be a source of incompatibility. > > I'm running 2.2, I suppose that must be the problem. :-( I had some time to work on this project, and now I know how to make it work. So I have updated your port, but I have a problem, and I found no solution in the Porter's Handbook: newsx needs to compile with an include file from INN, the storage.h. I have to update the configure file, to replace '#include <$ac_hdr>' by something like '#include <$inn_hdr/$ac_hdr>', where $inn_hdr is e.g. ${PORTSDIR}/news/inn/work/inn-2.3.0/include/ How may I define this variable? Even if the user has installed INN, he may have done a 'make clear'... IMHO, the best solution could be: - from an eval of '/usr/local/news/bin/innconfval -v', I read the version of INN; - accordind to this version, it could be possible to define PATCHFILES. But to do this, we need to find an ftp site for these different header files... Do you think it is possible? Truly yours, -- Th. Thomas, ICQ : 8823153 Il y a sûrement des pays qui valent le coup. [MS] To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 9:22: 1 2001 Delivered-To: freebsd-ports@freebsd.org Received: from smtp1.cluster.oleane.net (smtp1.cluster.oleane.net [195.25.12.16]) by hub.freebsd.org (Postfix) with ESMTP id 24F1B37B401 for ; Sat, 10 Feb 2001 09:21:18 -0800 (PST) Received: from graf.pompo.net (dyn-1-1-044.Lyn.dialup.oleane.fr [62.161.7.44]) by smtp1.cluster.oleane.net with ESMTP id f1AHLFT47967 for ; Sat, 10 Feb 2001 18:21:15 +0100 (CET) Received: by graf.pompo.net (Postfix, from userid 1001) id E99957738; Sat, 10 Feb 2001 17:42:12 +0100 (CET) Date: Sat, 10 Feb 2001 17:42:12 +0100 From: Thierry Thomas To: freebsd-ports@FreeBSD.org Subject: subscribe Message-ID: <20010210174212.A27075@graf.pompo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP: 0xC71405A2 Organization: Kabbale Eros Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org subscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 9:31: 5 2001 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 9654037B4EC; Sat, 10 Feb 2001 09:30:47 -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 <20010210173046.LQPZ19464.mail.rdc1.kt.home.ne.jp@daemon.local.idaemons.org>; Sat, 10 Feb 2001 09:30:46 -0800 Received: by daemon.local.idaemons.org (8.11.1/3.7W) id f1AHUjv25035; Sun, 11 Feb 2001 02:30:45 +0900 (JST) Date: Sun, 11 Feb 2001 02:30:45 +0900 Message-ID: <86k86yxx6i.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: dirk.meyer@dinoex.sub.org, ache@FreeBSD.org Cc: ports@FreeBSD.org Subject: www/webalizer vs. www/webalizer-2 User-Agent: Wanderlust/2.5.4 (Smooth) SEMI/1.14.2 (=?ISO-8859-1?Q?Daish=F2?= =?ISO-8859-1?Q?ji?=) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (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.2 - =?ISO-8859-1?Q?=22Daish=F2ji=22?=) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Would you explain why we are keeping those two ports, www/webalizer which version is 2.1.6 and www/webalizer-2 which version is 2.1.6_1? I suspect the former was updated to 2.x by mistake when it was supposed to stay at 1.x. Correct? -- / /__ __ 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 Sat Feb 10 9:33:16 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mile.nevermind.kiev.ua (ppp-244.nav.kiev.ua [213.169.65.244]) by hub.freebsd.org (Postfix) with ESMTP id 9E98A37B401 for ; Sat, 10 Feb 2001 09:32:55 -0800 (PST) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.11.1/8.11.1) id f1AHWac34499; Sat, 10 Feb 2001 19:32:36 +0200 (EET) (envelope-from never) Date: Sat, 10 Feb 2001 19:32:35 +0200 From: Nevermind To: Thierry Thomas Cc: freebsd-ports@FreeBSD.ORG Subject: Re: subscribe Message-ID: <20010210193235.B32187@nevermind.kiev.ua> References: <20010210174212.A27075@graf.pompo.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="+pHx0qQiF2pBVqBT" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010210174212.A27075@graf.pompo.net>; from thierry@thomas.as on Sat, Feb 10, 2001 at 05:42:12PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --+pHx0qQiF2pBVqBT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, Thierry Thomas! On Sat, Feb 10, 2001 at 05:42:12PM +0100, you wrote: > subscribe To subscribe send mail to majordomo@FreeBSD.org with "subscribe freebsd-ports" in the body of the message --=20 NEVE-RIPE The instructions said to install Windows 98 or better, so I installed FreeBSD. --+pHx0qQiF2pBVqBT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6hXsxpCk6epJSQlIRAjw/AKC/kPlXESjLFlsVQZVNbNYWJd5FNQCg1qIl haWMM3m9zmybx0T+1UA7Szc= =c3k2 -----END PGP SIGNATURE----- --+pHx0qQiF2pBVqBT-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 9:44:22 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mile.nevermind.kiev.ua (ppp-244.nav.kiev.ua [213.169.65.244]) by hub.freebsd.org (Postfix) with ESMTP id AC39D37B4EC for ; Sat, 10 Feb 2001 09:43:56 -0800 (PST) Received: (from never@localhost) by mile.nevermind.kiev.ua (8.11.1/8.11.1) id f1AHLa033917 for freebsd-ports@FreeBSD.ORG; Sat, 10 Feb 2001 19:21:36 +0200 (EET) (envelope-from never) Date: Sat, 10 Feb 2001 19:21:34 +0200 From: Nevermind To: freebsd-ports@FreeBSD.ORG Subject: Re: [PATCH] for new ratpoison port Message-ID: <20010210192134.A32187@nevermind.kiev.ua> References: <20010210185940.A32192@nevermind.kiev.ua> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="IJpNTDwzlM2Ie8A6" Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20010210185940.A32192@nevermind.kiev.ua>; from never@nevermind.kiev.ua on Sat, Feb 10, 2001 at 06:59:40PM +0200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --IJpNTDwzlM2Ie8A6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello, Nevermind! On Sat, Feb 10, 2001 at 06:59:40PM +0200, you wrote: > Attached is patch to avoid one warning while compiling getopt.c included = in > this port. And, by the way the port actually depends on gmake, but it is does not described in Makefile. The other thing that port can be made without using gmake... --=20 NEVE-RIPE The instructions said to install Windows 98 or better, so I installed FreeBSD. --IJpNTDwzlM2Ie8A6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.4 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE6hXidpCk6epJSQlIRAlWBAJ91vRD7PpGDQt630NMXLoBqYp7IXwCgm6Qk RgMI2UUw2xgm/KsMpOFuI6g= =t7K+ -----END PGP SIGNATURE----- --IJpNTDwzlM2Ie8A6-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 9:52:18 2001 Delivered-To: freebsd-ports@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 42B8937B503 for ; Sat, 10 Feb 2001 09:52:01 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.2/8.11.2) id f1AHpjZ75533; Sat, 10 Feb 2001 20:51:45 +0300 (MSK) (envelope-from ache) Date: Sat, 10 Feb 2001 20:51:44 +0300 From: "Andrey A. Chernov" To: Akinori MUSHA Cc: dirk.meyer@dinoex.sub.org, ports@FreeBSD.ORG Subject: Re: www/webalizer vs. www/webalizer-2 Message-ID: <20010210205144.D75114@nagual.pp.ru> References: <86k86yxx6i.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: <86k86yxx6i.wl@archon.local.idaemons.org>; from knu@iDaemons.org on Sun, Feb 11, 2001 at 02:30:45AM +0900 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Feb 11, 2001 at 02:30:45 +0900, Akinori MUSHA wrote: > Would you explain why we are keeping those two ports, www/webalizer > which version is 2.1.6 and www/webalizer-2 which version is 2.1.6_1? > > I suspect the former was updated to 2.x by mistake when it was > supposed to stay at 1.x. Correct? webalizer-2 really must be called webalizer-current, can I ask you or someone else for repo copy? -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 10: 8:25 2001 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 A75A137B491 for ; Sat, 10 Feb 2001 10:08:03 -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 <20010210180802.LVSK19464.mail.rdc1.kt.home.ne.jp@daemon.local.idaemons.org>; Sat, 10 Feb 2001 10:08:02 -0800 Received: by daemon.local.idaemons.org (8.11.1/3.7W) id f1AI82v25517; Sun, 11 Feb 2001 03:08:02 +0900 (JST) Date: Sun, 11 Feb 2001 03:08:02 +0900 Message-ID: <86itmixvgd.wl@archon.local.idaemons.org> From: "Akinori MUSHA" To: "Andrey A. Chernov" Cc: dirk.meyer@dinoex.sub.org, ports@FreeBSD.ORG Subject: Re: www/webalizer vs. www/webalizer-2 In-Reply-To: <20010210205144.D75114@nagual.pp.ru> References: <86k86yxx6i.wl@archon.local.idaemons.org> <20010210205144.D75114@nagual.pp.ru> User-Agent: Wanderlust/2.5.4 (Smooth) SEMI/1.14.2 (=?ISO-8859-1?Q?Daish=F2?= =?ISO-8859-1?Q?ji?=) FLIM/1.14.2 (Yagi-Nishiguchi) APEL/10.2 MULE XEmacs/21.1 (patch 14) (Cuyahoga Valley) (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.2 - =?ISO-8859-1?Q?=22Daish=F2ji=22?=) Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org At Sat, 10 Feb 2001 20:51:44 +0300, Andrey A. Chernov wrote: > > On Sun, Feb 11, 2001 at 02:30:45 +0900, Akinori MUSHA wrote: > > Would you explain why we are keeping those two ports, www/webalizer > > which version is 2.1.6 and www/webalizer-2 which version is 2.1.6_1? > > > > I suspect the former was updated to 2.x by mistake when it was > > supposed to stay at 1.x. Correct? > > webalizer-2 really must be called webalizer-current, can I ask you or > someone else for repo copy? Satoshi is in charge of repocopying in the ports tree, or you could ask other CVS meisters in case he is off. (cf. New Committer Guide) -- / /__ __ 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 Sat Feb 10 10: 8:39 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id AC8A337B4EC; Sat, 10 Feb 2001 10:08:22 -0800 (PST) Received: (from ume@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AI8ML60765; Sat, 10 Feb 2001 10:08:22 -0800 (PST) (envelope-from ume) Date: Sat, 10 Feb 2001 10:08:22 -0800 (PST) From: Message-Id: <200102101808.f1AI8ML60765@freefall.freebsd.org> To: eike.bernhardt@gmx.de, ume@FreeBSD.org, freebsd-ports@FreeBSD.org, ume@FreeBSD.org Subject: Re: ports/24988: [MAINTAINER] update gkrellm_snmp to 0.14 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: [MAINTAINER] update gkrellm_snmp to 0.14 State-Changed-From-To: open->closed State-Changed-By: ume State-Changed-When: Sat Feb 10 10:07:15 PST 2001 State-Changed-Why: Thanks! I just committed. Responsible-Changed-From-To: freebsd-ports->ume Responsible-Changed-By: ume Responsible-Changed-When: Sat Feb 10 10:07:15 PST 2001 Responsible-Changed-Why: Thanks! I just committed. http://www.freebsd.org/cgi/query-pr.cgi?pr=24988 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 10:10:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id F230637B503 for ; Sat, 10 Feb 2001 10:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AIA2460913; Sat, 10 Feb 2001 10:10:02 -0800 (PST) (envelope-from gnats) Received: from eeyore.local.dohd.org (d0030.upc-d.chello.nl [213.46.0.30]) by hub.freebsd.org (Postfix) with ESMTP id 350C937B491 for ; Sat, 10 Feb 2001 10:00:06 -0800 (PST) Received: by eeyore.local.dohd.org (Postfix, from userid 1002) id E6258BABC; Sat, 10 Feb 2001 19:00:03 +0100 (MET) Message-Id: <20010210180003.E6258BABC@eeyore.local.dohd.org> Date: Sat, 10 Feb 2001 19:00:03 +0100 (MET) From: xaa+ports@madison-gurkha.com Reply-To: xaa+ports@madison-gurkha.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/24996: xboard upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24996 >Category: ports >Synopsis: ports upgrade by maintainer >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Sat Feb 10 10:10:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Mark Huizer; Eindhoven >Release: FreeBSD 5.0-CURRENT i386 >Organization: Madison Gurkha BV >Environment: System: FreeBSD eeyore.local.dohd.org 5.0-CURRENT FreeBSD 5.0-CURRENT #0: Tue Jan 30 19:19:31 MET 2001 xaa@eeyore.local.dohd.org:/usr2/sources/src/sys/compile/eeyore i386 >Description: Upgrade of port to 4.2.2, change of download location Outdates ports/24846 >How-To-Repeat: >Fix: diff -udr ../games/xboard/Makefile xboard/Makefile --- ../games/xboard/Makefile Thu Jan 18 21:14:08 2001 +++ xboard/Makefile Sat Feb 10 18:22:10 2001 @@ -6,11 +6,11 @@ # PORTNAME= xboard -PORTVERSION= 4.2.0 +PORTVERSION= 4.2.2 CATEGORIES= games -MASTER_SITES= ftp://ftp.gnu.org/gnu/xboard/ \ - http://www.research.compaq.com/SRC/personal/Tim_Mann/xboard/ -DISTNAME= xboard-4.2.0beta +MASTER_SITES= http://www.tim-mann.org/xboard/ \ + ftp://ftp.gnu.org/gnu/xboard/ +#DISTNAME= xboard-4.2.0beta MAINTAINER= xaa+ports@madison-gurkha.com diff -udr ../games/xboard/distinfo xboard/distinfo --- ../games/xboard/distinfo Tue Jan 9 09:31:59 2001 +++ xboard/distinfo Sat Feb 10 18:23:54 2001 @@ -1 +1 @@ -MD5 (xboard-4.2.0beta.tar.gz) = 49d41924250972e125fe63c9de941f5e +MD5 (xboard-4.2.2.tar.gz) = c87923600389620ecced9a3ccf6d54ee >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 Feb 10 10:59:26 2001 Delivered-To: freebsd-ports@freebsd.org Received: from orion.psknet.com (mail.psknet.com [63.171.251.4]) by hub.freebsd.org (Postfix) with SMTP id 91DBA37B491 for ; Sat, 10 Feb 2001 10:59:07 -0800 (PST) Received: (qmail 89835 invoked from network); 10 Feb 2001 18:59:04 -0000 Received: from abyss.dashit.net (HELO ABYSS) (209.100.22.250) by mail.psknet.com with SMTP; 10 Feb 2001 18:59:04 -0000 From: "Troy Settle" To: , , Subject: Postfix + MySQL (ports updated 2/8) Date: Sat, 10 Feb 2001 13:59:04 -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) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal X-AntiVirus: scanned for viruses by Pulaski Networks (http://www.psknet.com) using AMaViS (http://www.amavis.org) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org All, I'm trying to build postfix from ports (updated 2/8). It's crapping out, and I'm not sure where to begin looking. Building on another machine works fine (same version of posfix, older version of MySQL [3.22.32 vs. 3.23.32]). cc -DHAS_MYSQL -I/usr/local/include/mysql -O -pipe -I. -I../include -DFREEB SD4 -o error error.o ../lib/libmaster.a ../lib/libglobal.a ../lib/libutil.a /usr/local/lib/mysql/libmysqlclient.a -lm /usr/local/lib/mysql/libmysqlclient.a(my_compress.o): In function `my_compress_alloc': my_compress.o(.text+0xb0): undefined reference to `compress' /usr/local/lib/mysql/libmysqlclient.a(my_compress.o): In function `my_uncompress': my_compress.o(.text+0x121): undefined reference to `uncompress' *** Error code 1 This isn't critical for me, but I do need to start exploring the viability of using Postfix soon. TIA, -- Troy Settle Pulaski Networks 540.994.4254 They told me to think out of the box, but I tripped over it, now I own my own company. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 11:32:51 2001 Delivered-To: freebsd-ports@freebsd.org Received: from csgrad.cs.vt.edu (csgrad.cs.vt.edu [128.173.41.41]) by hub.freebsd.org (Postfix) with ESMTP id 1805437B503 for ; Sat, 10 Feb 2001 11:32:33 -0800 (PST) Received: from localhost (sperugin@localhost) by csgrad.cs.vt.edu (8.10.1/8.10.1) with ESMTP id f1AJWWN28534 for ; Sat, 10 Feb 2001 14:32:32 -0500 (EST) Date: Sat, 10 Feb 2001 14:32:32 -0500 (EST) From: Saverio Perugini To: freebsd-ports@freebsd.org Subject: old system Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello all, I am running: $ uname -a FreeBSD pipe.cs.vt.edu 4.0-RELEASE FreeBSD 4.0-RELEASE #0: Mon Mar 20 22:50:22 GMT 2000 root@monster.cdrom.com:/usr/src/sys/compile/GENERIC i386 and I have the most up-to-date ports tree. I just did a cvsup. However, when I try to build new ports, I get the following error. : 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. Does this really mean that I need to upgrade to the newest stable version of FreeBSD by doing a make world? Does anyone know any ways around this, short of doing a make world? Thank you. Saverio Perugini email: sperugin@vt.edu To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 11:49:33 2001 Delivered-To: freebsd-ports@freebsd.org Received: from bazooka.unixfreak.org (bazooka.unixfreak.org [63.198.170.138]) by hub.freebsd.org (Postfix) with ESMTP id 800E837B698 for ; Sat, 10 Feb 2001 11:49:16 -0800 (PST) Received: by bazooka.unixfreak.org (Postfix, from userid 1000) id 194883E02; Sat, 10 Feb 2001 11:49:16 -0800 (PST) Received: from unixfreak.org (localhost [127.0.0.1]) by bazooka.unixfreak.org (Postfix) with ESMTP id 126A13C10B; Sat, 10 Feb 2001 11:49:16 -0800 (PST) To: Saverio Perugini Cc: freebsd-ports@freebsd.org Subject: Re: old system In-Reply-To: Message from Saverio Perugini of "Sat, 10 Feb 2001 14:32:32 EST." Date: Sat, 10 Feb 2001 11:49:10 -0800 From: Dima Dorfman Message-Id: <20010210194916.194883E02@bazooka.unixfreak.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > : 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 si ^^^^^^^^^^^^^^^^^^^^ > te and follow the instructions. > > Does this really mean that I need to upgrade to the newest stable version of > FreeBSD by doing a make world? No. See the underlined part? You can get an upgrade kit if you don't want to upgrade. The URL is in the message. Look for the "4.0 to 4-STABLE" upgrade kit. Dima Dorfman dima@unixfreak.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 11:55:55 2001 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 7F98737B69C for ; Sat, 10 Feb 2001 11:55:31 -0800 (PST) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.11.2/8.11.2) with BSMTP id f1AJt5x26057 for ; Sat, 10 Feb 2001 20:55:05 +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: www/webalizer vs. www/webalizer-2 Date: Sat, 10 Feb 2001 20:51:12 +0100 X-Mailer: Dinoex 1.77 References: <20010210205144.D75114@nagual.pp.ru> <86k86yxx6i.wl@archon.local.idaemons.org> <20010210205144.D75114@nagual.pp.ru> <86itmixvgd.wl@archon.local.idaemons.org> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.90] X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Copyright: (C) Copyright 1999 by Dirk Meyer -- All rights reserved. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 20010210000000W+1@dinoex.sub.org X-Accept-Language: de,en X-Noad: Please don't send me ad's by mail. I'm bored by this type of mail. 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. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > webalizer-2 really must be called webalizer-current, can I ask you or > > someone else for repo copy? > > Satoshi is in charge of repocopying in the ports tree, or you could > ask other CVS meisters in case he is off. (cf. New Committer Guide) You will loose support for some languages in this case. Who shall maintain the remaining port? kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 11:56:12 2001 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 4B00937B69D; Sat, 10 Feb 2001 11:55:51 -0800 (PST) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.11.2/8.11.2) with BSMTP id f1AJt4Z26044; Sat, 10 Feb 2001 20:55:04 +0100 (CET) (envelope-from dirk.meyer@dinoex.sub.org) To: ports@FreeBSD.org, ache@FreeBSD.org Cc: dirk.meyer@dinoex.sub.org Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: www/webalizer vs. www/webalizer-2 Date: Sat, 10 Feb 2001 20:51:12 +0100 X-Mailer: Dinoex 1.77 References: <86k86yxx6i.wl@archon.local.idaemons.org> X-Gateway: ZCONNECT gate.dinoex.sub.org [UNIX/Connect 0.90] X-PGP-Fingerprint: 44 16 EC 0A D3 3A 4F 28 8A 8A 47 93 F1 CF 2F 12 X-Copyright: (C) Copyright 1999 by Dirk Meyer -- All rights reserved. X-PGP-Key-Avail: mailto:pgp-public-keys@keys.de.pgp.net Subject:GET 0x331CDA5D X-ZC-VIA: 20010210000000W+1@dinoex.sub.org X-Accept-Language: de,en X-Noad: Please don't send me ad's by mail. I'm bored by this type of mail. 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. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Would you explain why we are keeping those two ports, www/webalizer > which version is 2.1.6 and www/webalizer-2 which version is 2.1.6_1? > > I suspect the former was updated to 2.x by mistake when it was > supposed to stay at 1.x. Correct? The Version 1.x don't exist any more. webalizer-2 was added when 2 was in very beta. (not maintained by me) www/weblaizer supports more languages. www/webalizer2 has some extra patches. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 12: 5:20 2001 Delivered-To: freebsd-ports@freebsd.org Received: from mail.clickarray.com (unknown [216.132.92.2]) by hub.freebsd.org (Postfix) with ESMTP id 0AA1437B69F; Sat, 10 Feb 2001 12:05:03 -0800 (PST) Received: from vader.clickarray.com (nattedaddress.clickarray.com [10.2.1.199]) by mail.clickarray.com (Postfix) with ESMTP id DCC455EF03; Sat, 10 Feb 2001 12:08:31 -0800 (PST) Received: (from asami@localhost) by vader.clickarray.com (8.11.0/8.11.0) id f1AK7bh29105; Sat, 10 Feb 2001 12:07:37 -0800 (PST) (envelope-from asami@cs.berkeley.edu) Date: Sat, 10 Feb 2001 12:07:37 -0800 (PST) Message-Id: <200102102007.f1AK7bh29105@vader.clickarray.com> X-Authentication-Warning: vader.clickarray.com: asami set sender to asami@cs.berkeley.edu using -f To: ports@freebsd.org Cc: ps@freebsd.org Subject: bento down From: asami@freebsd.org (Satoshi Asami) User-Agent: SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) Emacs/20.7 (i386--freebsd) MULE/4.0 (=?ISO-2022-JP?B?GyRCMlYxYxsoQg==?=) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello Ports World, The package building cluster's main server (bento) unfortunately sufferred a disk crash and will be down for the next few days. (This means the error logs page and ftp packages on ftp.FreeBSD.org will not be updated for a while.) Sorry for the inconvenience and thanks for your understanding. -PW To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 12: 8:13 2001 Delivered-To: freebsd-ports@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 28FE637B69F for ; Sat, 10 Feb 2001 12:07:54 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.2/8.11.2) id f1AK7ns76993; Sat, 10 Feb 2001 23:07:49 +0300 (MSK) (envelope-from ache) Date: Sat, 10 Feb 2001 23:07:48 +0300 From: "Andrey A. Chernov" To: Dirk Meyer Cc: freebsd-ports@FreeBSD.ORG Subject: Re: www/webalizer vs. www/webalizer-2 Message-ID: <20010210230748.A76966@nagual.pp.ru> References: <20010210205144.D75114@nagual.pp.ru> <86k86yxx6i.wl@archon.local.idaemons.org> <20010210205144.D75114@nagual.pp.ru> <86itmixvgd.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 dirk.meyer@dinoex.sub.org on Sat, Feb 10, 2001 at 08:51:12PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Feb 10, 2001 at 20:51:12 +0100, Dirk Meyer wrote: > > > > webalizer-2 really must be called webalizer-current, can I ask you or > > > someone else for repo copy? > > > > Satoshi is in charge of repocopying in the ports tree, or you could > > ask other CVS meisters in case he is off. (cf. New Committer Guide) > > You will loose support for some languages in this case. > Who shall maintain the remaining port? Two ports remains: webalizer and webalizer-current, webalizer-2 will be deleted -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 12:20:43 2001 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 4104037B491 for ; Sat, 10 Feb 2001 12:20:25 -0800 (PST) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.11.2/8.11.2) with BSMTP id f1AKK3I01217; Sat, 10 Feb 2001 21:20:03 +0100 (CET) (envelope-from dirk.meyer@dinoex.sub.org) To: freebsd-ports@FreeBSD.ORG, ache@nagual.pp.ru Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: www/webalizer vs. www/webalizer-2 Date: Sat, 10 Feb 2001 21:17:08 +0100 X-Mailer: Dinoex 1.77 References: <20010210205144.D75114@nagual.pp.ru> <86k86yxx6i.wl@archon.local.idaemons.org> <20010210205144.D75114@nagual.pp.ru> <86itmixvgd.wl@archon.local.idaemons.org> <20010210230748.A76966@nagual.pp.ru> 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: 20010210000000W+1@dinoex.sub.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Andrey A. Chernov schrieb:, > > > > webalizer-2 really must be called webalizer-current, can I ask you or > > > > someone else for repo copy? > > > > > > Satoshi is in charge of repocopying in the ports tree, or you could > > > ask other CVS meisters in case he is off. (cf. New Committer Guide) > > > > You will loose support for some languages in this case. > > Who shall maintain the remaining port? > > Two ports remains: webalizer and webalizer-current, webalizer-2 will be > deleted I suggest to keep only one port. Since October 2000 there has bee no pre release, so current won't be needed for now. Btw, Andrey, can you tell me that you patches are supposed to do? kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 12:38:58 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 5129F37B4EC; Sat, 10 Feb 2001 12:38:40 -0800 (PST) Received: (from sf@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AKcda76423; Sat, 10 Feb 2001 12:38:39 -0800 (PST) (envelope-from sf) Date: Sat, 10 Feb 2001 12:38:39 -0800 (PST) From: Message-Id: <200102102038.f1AKcda76423@freefall.freebsd.org> To: clefevre@citeweb.net, sf@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24919: Updated port: mail/elm+ME - 2.4ME+88 (critical) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated port: mail/elm+ME - 2.4ME+88 (critical) State-Changed-From-To: open->closed State-Changed-By: sf State-Changed-When: Sat Feb 10 12:36:01 PST 2001 State-Changed-Why: update committed, thanks. There's no security issue, just only super user could run this program. http://www.freebsd.org/cgi/query-pr.cgi?pr=24919 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 12:56:49 2001 Delivered-To: freebsd-ports@freebsd.org Received: from titanic.medinet.si (titanic.medinet.si [212.18.32.66]) by hub.freebsd.org (Postfix) with ESMTP id F05A737B491; Sat, 10 Feb 2001 12:56:30 -0800 (PST) Received: by titanic.medinet.si (Postfix, from userid 1000) id AD4EA26C06; Sat, 10 Feb 2001 21:56:25 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by titanic.medinet.si (Postfix) with ESMTP id 9F0311170C; Sat, 10 Feb 2001 21:56:25 +0100 (CET) Date: Sat, 10 Feb 2001 21:56:25 +0100 (CET) From: Blaz Zupan To: Troy Settle Cc: , Subject: Re: Postfix + MySQL (ports updated 2/8) 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 > cc -DHAS_MYSQL -I/usr/local/include/mysql -O -pipe -I. -I../include -DFREEB > SD4 -o error error.o ../lib/libmaster.a ../lib/libglobal.a ../lib/libutil.a > /usr/local/lib/mysql/libmysqlclient.a -lm > /usr/local/lib/mysql/libmysqlclient.a(my_compress.o): In function > `my_compress_alloc': > my_compress.o(.text+0xb0): undefined reference to `compress' > /usr/local/lib/mysql/libmysqlclient.a(my_compress.o): In function > `my_uncompress': > my_compress.o(.text+0x121): undefined reference to `uncompress' > *** Error code 1 Try the patch below. It appears that the 3.23 mysql libraries need libz. --- postfix/Makefile.orig Tue Feb 6 03:56:33 2001 +++ postfix/Makefile Sat Feb 10 21:53:38 2001 @@ -60,7 +60,7 @@ .if defined(WITH_MYSQL) BUILD_DEPENDS+= ${LOCALBASE}/lib/mysql/libmysqlclient.a:${PORTSDIR}/databases/mysql323-client POSTFIX_CCARGS+= -DHAS_MYSQL -I${LOCALBASE}/include/mysql -POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/mysql/libmysqlclient.a -lm +POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/mysql/libmysqlclient.a -lm -lz .endif .if defined(WITH_LDAP) 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 Sat Feb 10 12:57:15 2001 Delivered-To: freebsd-ports@freebsd.org Received: from blizzard.sabbo.net (pop3.sabbo.net [193.193.218.18]) by hub.freebsd.org (Postfix) with ESMTP id 6F12137B65D for ; Sat, 10 Feb 2001 12:56:54 -0800 (PST) Received: from vic.sabbo.net (root@vic.sabbo.net [193.193.218.112]) by blizzard.sabbo.net (8.10.1/8.10.1) with ESMTP id f1AKuiC09179; Sat, 10 Feb 2001 22:56:44 +0200 Received: (from max@localhost) by vic.sabbo.net (8.11.2/8.11.2) id f1AKut771275; Sat, 10 Feb 2001 22:56:55 +0200 (EET) (envelope-from sobomax@FreeBSD.org) From: Maxim Sobolev Message-Id: <200102102056.f1AKut771275@vic.sabbo.net> Subject: Re: glclock broken? pthread To: abgoeree@uwnet.nl Date: Sat, 10 Feb 2001 22:56:55 +0200 (EET) Cc: ports@FreeBSD.ORG In-Reply-To: <20010210100506.A60321@mandark.attica.home> from "Andre Goeree" at Feb 10, 2001 10:05:06 AM X-Mailer: ELM [version 2.5 PL3] 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 > > On Fri, Feb 09, 2001 at 02:54:44AM +0200, Maxim Sobolev wrote: > > > > > > Hello, > > > > > > My attempt to build x11-clocks/glclock ended > > > with the following error: > > > > > > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_getspecific' > > > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_key_create' > > > /usr/X11R6/lib/libGL.so: undefined reference to `pthread_setspecific' > > > *** Error code 1 > > > > > > Stop in /usr/local/ports/x11-clocks/glclock/work/glclock-5.0. > > > *** Error code 1 > > > > > > just fixed a similar error with xscreensaver;) > > > The trick of adding "CONFIGURE_ENV= LDFLAGS=-pthread" > > > to the Makefile didn't work here. > > > What should i try next? > > > (XFree86-4.0.2_5 Mesa-3.2.1_1) > > > > > > > You have several choices ahead: > > 1. Wait a bit until -pthread weirdness would be resolved; > > 2. Manually replace -pthread in ports/x11/XFree86-4/files/patch-* with -lc_r > > and then recompile/reinstall XFree86-4; > > 3. Apply attached patch for gcc.295 and then recompile/reinstall XFree86-4. > > > > -Maxim > > > > Hmm, > > 4. adding -pthread to LIBS= in work/glclock-5.0/makefile > (LIBS = -lglut -lGLU -lGL -lXext -lXmu -lX11 -lm -lXi -pthread) > seems to work too :) > > I don't know if this is a appropriate fix but for me it works;) > Yes, it's also possible workaround, but you have to hack Makefile of each GL port you that you wish to compile. PITA. -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 12:57:26 2001 Delivered-To: freebsd-ports@freebsd.org Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by hub.freebsd.org (Postfix) with ESMTP id 2C91237B503 for ; Sat, 10 Feb 2001 12:57:05 -0800 (PST) Received: (from ache@localhost) by nagual.pp.ru (8.11.2/8.11.2) id f1AKugN77666; Sat, 10 Feb 2001 23:56:42 +0300 (MSK) (envelope-from ache) Date: Sat, 10 Feb 2001 23:56:41 +0300 From: "Andrey A. Chernov" To: Dirk Meyer Cc: freebsd-ports@FreeBSD.ORG Subject: Re: www/webalizer vs. www/webalizer-2 Message-ID: <20010210235641.A77557@nagual.pp.ru> References: <20010210205144.D75114@nagual.pp.ru> <86k86yxx6i.wl@archon.local.idaemons.org> <20010210205144.D75114@nagual.pp.ru> <86itmixvgd.wl@archon.local.idaemons.org> <20010210230748.A76966@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from dirk.meyer@dinoex.sub.org on Sat, Feb 10, 2001 at 09:17:08PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Feb 10, 2001 at 21:17:08 +0100, Dirk Meyer wrote: > I suggest to keep only one port. > Since October 2000 there has bee no pre release, > so current won't be needed for now. What happens, if new alpha/beta will be released? > can you tell me that you patches are supposed to do? 1) Fix ctype macros argument - (int) is incorrect cast and does evil sign extension, correct one is (unsigned char) 2) Put clickable URLs into Full URLs list (they are not clickable by default, just text) 3) Don't convert search argumets to lowercase - webmasters often want to tune their sites for _exact_ keywords and many search engines do case-sensitive search. -- Andrey A. Chernov http://ache.pp.ru/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 13:10:19 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1057437B401 for ; Sat, 10 Feb 2001 13:10:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1ALA2180746; Sat, 10 Feb 2001 13:10:02 -0800 (PST) (envelope-from gnats) Date: Sat, 10 Feb 2001 13:10:02 -0800 (PST) Message-Id: <200102102110.f1ALA2180746@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Maxim Sobolev Subject: Re: ports/24976: gemdropx port is missing a dependency on kdelibs2 Reply-To: Maxim Sobolev Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/24976; it has been noted by GNATS. From: Maxim Sobolev To: cmf@iabears.org Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/24976: gemdropx port is missing a dependency on kdelibs2 Date: Sat, 10 Feb 2001 23:06:22 +0200 (EET) > > >Description: > The gemdropx port uses libartsc, which is part of the kdelibs2 port. > The Makefile fails to include a dependency on that library, so the build > fails if kdelibs2 is not installed. > Huh, I'm really surprised. In fact gemdropx doesn't require anything but SDL+SDL_mixer to work correctly. In your case, probably, SDL's configure script just accidentaly picked libartsc, which is not recorded as a dependency, because kdelibs2 is bulky, and compiled SDL driver for libartsc into libSDL. After that you deinstalled libartsc (you did not get a warning because libartsc was not recorded as dependency for SDL) thus making further linking with libSDL impossible. Therefore the real problem not with gemdropx but with sdl-devel. I'll look into what I can do about it. Thank you for reporting! -Maxim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 14:33:11 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 80A5037B4EC; Sat, 10 Feb 2001 14:32:54 -0800 (PST) Received: (from sf@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AMWsW89387; Sat, 10 Feb 2001 14:32:54 -0800 (PST) (envelope-from sf) Date: Sat, 10 Feb 2001 14:32:54 -0800 (PST) From: Message-Id: <200102102232.f1AMWsW89387@freefall.freebsd.org> To: clefevre@citeweb.net, sf@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24542: Updated port: net/isc-dhcp3 (beta 2 patch level 14) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Updated port: net/isc-dhcp3 (beta 2 patch level 14) State-Changed-From-To: open->closed State-Changed-By: sf State-Changed-When: Sat Feb 10 14:32:43 PST 2001 State-Changed-Why: Superseded by 24686. http://www.freebsd.org/cgi/query-pr.cgi?pr=24542 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 14:42:49 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id BDF4A37B503; Sat, 10 Feb 2001 14:42:32 -0800 (PST) Received: (from sf@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AMgWB90230; Sat, 10 Feb 2001 14:42:32 -0800 (PST) (envelope-from sf) Date: Sat, 10 Feb 2001 14:42:32 -0800 (PST) From: Message-Id: <200102102242.f1AMgWB90230@freefall.freebsd.org> To: andrews@powersurfr.com, sf@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24830: Update pine4 port from 4.32 to 4.33 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update pine4 port from 4.32 to 4.33 State-Changed-From-To: open->closed State-Changed-By: sf State-Changed-When: Sat Feb 10 14:41:32 PST 2001 State-Changed-Why: pine4 has been updated to 4.33 and maintainer changed to Pete Fritchman. http://www.freebsd.org/cgi/query-pr.cgi?pr=24830 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 14:58: 2 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 51A4237B684; Sat, 10 Feb 2001 14:57:46 -0800 (PST) Received: (from sf@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1AMvkA91331; Sat, 10 Feb 2001 14:57:46 -0800 (PST) (envelope-from sf) Date: Sat, 10 Feb 2001 14:57:46 -0800 (PST) From: Message-Id: <200102102257.f1AMvkA91331@freefall.freebsd.org> To: sf@FreeBSD.org, freebsd-ports@FreeBSD.org, nakai@FreeBSD.org Subject: Re: ports/24838: Port x11-wm/spager needs updating Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Port x11-wm/spager needs updating Responsible-Changed-From-To: freebsd-ports->nakai Responsible-Changed-By: sf Responsible-Changed-When: Sat Feb 10 14:57:33 PST 2001 Responsible-Changed-Why: Over to maintainer http://www.freebsd.org/cgi/query-pr.cgi?pr=24838 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 15:55:13 2001 Delivered-To: freebsd-ports@freebsd.org Received: from server02.belenus.com (unknown [212.63.129.190]) by hub.freebsd.org (Postfix) with ESMTP id 4DD1E37B401 for ; Sat, 10 Feb 2001 15:54:56 -0800 (PST) Received: by server02.belenus.com with Internet Mail Service (5.5.2650.21) id ; Sun, 11 Feb 2001 00:54:55 +0100 Message-ID: From: "Schmalzbauer, Harald" To: "'freebsd-ports@freebsd.org'" Subject: gxsnmp Date: Sun, 11 Feb 2001 00:54:53 +0100 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-Type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sorry if I'm completely wrong, I'd like to ask if somebody could have a look on porting gxsnmp (http://www.gxsnmp.org) to FreeBSD? If I could do anything for that I'd have done. But I couldn't even get the configure working without copying libsm* to /usr/lib. So I have to hope that somebody else can spend some time on it. This seems to be a really great application! Best regards -Harry belenus GmbH Harald Schmalzbauer Sys/Net Admin Tel: +49 (89) 21979-120 Fax: +49 (89) 21979-111 www.belenus.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 15:58:41 2001 Delivered-To: freebsd-ports@freebsd.org Received: from pendragon.tacni.net (unknown [216.178.136.165]) by hub.freebsd.org (Postfix) with SMTP id 3DDF037B401 for ; Sat, 10 Feb 2001 15:58:23 -0800 (PST) Received: (qmail 44979 invoked by alias); 10 Feb 2001 23:58:21 -0000 Received: from unknown (HELO mail.tacni.net) (204.155.159.65) by ns2.sohos.net with SMTP; 10 Feb 2001 23:58:21 -0000 Received: (qmail 37417 invoked by uid 1000); 10 Feb 2001 23:58:11 -0000 Date: Sat, 10 Feb 2001 17:58:11 -0600 From: Erich Zigler To: ports@freebsd.org Subject: Gabber and gettext Message-ID: <20010210175810.A37309@superhero.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Eric-Conspiracy: There is no conspiracy. X-Shane: Hi Shane! Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm currently working on debugging part of the Gabber port. It seems to core when it is meant to process anything against gettext. Here is the backtrace... I hope someone can provide some insight. Because I'm stumped and so is one of the authors. He claims to be including gettext like every other GNOME app. Program received signal SIGSEGV, Segmentation fault. 0x28c37d33 in getenv () from /usr/lib/libc_r.so.4 #0 0x28c37d33 in getenv () from /usr/lib/libc_r.so.4 #1 0x28838ae1 in guess_category_value () from /usr/local/lib/libintl.so.1 #2 0x28838396 in dcgettext__ () from /usr/local/lib/libintl.so.1 #3 0x28838b90 in dgettext__ () from /usr/local/lib/libintl.so.1 #4 0x28838bbc in gettext__ () from /usr/local/lib/libintl.so.1 #5 0x28837ffe in gettext () from /usr/local/lib/libintl.so.1 #6 0x80c8dc4 in GabberWin::OnSessionConnected (this=0x83a8a00, t=@0x83a22e0) at GabberWin.cc:302 Thank you in advance for any help. -- Erich Zigler We don't flirt with Death. She runs up and sticks her tounge in our ears. -- James Nicoll, rasseff To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 17:17:18 2001 Delivered-To: freebsd-ports@freebsd.org Received: from orion.psknet.com (mail.psknet.com [63.171.251.4]) by hub.freebsd.org (Postfix) with SMTP id 3429C37B401 for ; Sat, 10 Feb 2001 17:16:56 -0800 (PST) Received: (qmail 76714 invoked from network); 11 Feb 2001 01:16:52 -0000 Received: from abyss.dashit.net (HELO ABYSS) (209.100.22.250) by mail.psknet.com with SMTP; 11 Feb 2001 01:16:52 -0000 From: "Troy Settle" To: "Blaz Zupan" Cc: , Subject: RE: Postfix + MySQL (ports updated 2/8) Date: Sat, 10 Feb 2001 20:16:52 -0500 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" 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) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal In-Reply-To: X-AntiVirus: scanned for viruses by Pulaski Networks (http://www.psknet.com) using AMaViS (http://www.amavis.org) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Beautiful! Thanks Blaz. I trust you'll be commiting this soon? Though I don't suppose I'll have problems remembering this when/if I take postfix into production. -- Troy Settle Pulaski Networks 540.994.4254 They told me to think out of the box, but I tripped over it, now I own my own company. ** -----Original Message----- ** From: Blaz Zupan [mailto:blaz@amis.net] ** Sent: Saturday, February 10, 2001 3:56 PM ** To: Troy Settle ** Cc: freebsd-questions@freebsd.org; freebsd-ports@freebsd.org ** Subject: Re: Postfix + MySQL (ports updated 2/8) ** ** ** > cc -DHAS_MYSQL -I/usr/local/include/mysql -O -pipe -I. ** -I../include -DFREEB ** > SD4 -o error error.o ../lib/libmaster.a ../lib/libglobal.a ** ../lib/libutil.a ** > /usr/local/lib/mysql/libmysqlclient.a -lm ** > /usr/local/lib/mysql/libmysqlclient.a(my_compress.o): In function ** > `my_compress_alloc': ** > my_compress.o(.text+0xb0): undefined reference to `compress' ** > /usr/local/lib/mysql/libmysqlclient.a(my_compress.o): In function ** > `my_uncompress': ** > my_compress.o(.text+0x121): undefined reference to `uncompress' ** > *** Error code 1 ** ** Try the patch below. It appears that the 3.23 mysql libraries need libz. ** ** --- postfix/Makefile.orig Tue Feb 6 03:56:33 2001 ** +++ postfix/Makefile Sat Feb 10 21:53:38 2001 ** @@ -60,7 +60,7 @@ ** .if defined(WITH_MYSQL) ** BUILD_DEPENDS+= ** ${LOCALBASE}/lib/mysql/libmysqlclient.a:${PORTSDIR}/databases/mys ** ql323-client ** POSTFIX_CCARGS+= -DHAS_MYSQL -I${LOCALBASE}/include/mysql ** -POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/mysql/libmysqlclient.a -lm ** +POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/mysql/libmysqlclient.a -lm -lz ** .endif ** ** .if defined(WITH_LDAP) ** ** ** ** 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 Sat Feb 10 18:42:33 2001 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 2C62537B401 for ; Sat, 10 Feb 2001 18:42:17 -0800 (PST) Received: from ade by hub.lovett.com with local (Exim 3.20 #1) id 14RmSi-00025Y-00; Sat, 10 Feb 2001 20:42:04 -0600 Date: Sat, 10 Feb 2001 20:42:04 -0600 From: Ade Lovett To: "Roger Savard (Consultation henoc inc.)" Cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: oaf-0.6.2 Message-ID: <20010210204204.A71970@FreeBSD.org> References: <3A856F1B.D17D4CE7@henoc.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3A856F1B.D17D4CE7@henoc.com>; from Roger.Savard@henoc.com on Sat, Feb 10, 2001 at 11:40:59AM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Feb 10, 2001 at 11:40:59AM -0500, Roger Savard (Consultation henoc inc.) wrote: > Hi I am running FreeBSD4.2-Stable, and I was to build > gnome from the ports collection and it stopped in oaf . > I rebuild one by one libtool, Orbit, but now I'm stucked with OAF. Looks like you have libxml2 installed, instead of textproc/libxml (in particular, version 1.8.11). libxml2 does not work with GNOME, and should not be installed in a GNOME environment unless you have a very up-to-date ports tree installed. Regards, -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 Sat Feb 10 19:15:11 2001 Delivered-To: freebsd-ports@freebsd.org Received: from sunu422.rz.ruhr-uni-bochum.de (sunu422.rz.ruhr-uni-bochum.de [134.147.64.14]) by hub.freebsd.org (Postfix) with SMTP id 35B7F37B401 for ; Sat, 10 Feb 2001 19:14:53 -0800 (PST) Received: (qmail 15127 invoked from network); 11 Feb 2001 03:14:52 -0000 Received: from unknown (HELO ruhr-uni-bochum.de) (134.147.159.3) by mailhost.rz.ruhr-uni-bochum.de with SMTP; 11 Feb 2001 03:14:52 -0000 Message-ID: <3A860399.FFE97862@ruhr-uni-bochum.de> Date: Sun, 11 Feb 2001 04:14:33 +0100 From: Thomas Stratmann X-Mailer: Mozilla 4.76 [en] (X11; U; FreeBSD 4.2-STABLE i386) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Subject: staroffice52 make install failure Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi everyone, I went inside /usr/ports/editors/staroffice52/ and typed make install: ===> staroffice-5.2 depends on file: /compat/linux/lib/libc.so.6 - found ===> Extracting for staroffice-5.2 >> Checksum OK for staroffice52/soa-5_2-ga-bin-linux-en.bin. >> Checksum OK for staroffice52/so-5_2-ga-bin-linux-en.bin. >> Checksum OK for staroffice52/109939-02.tar.Z. ELF interpreter /lib/ld-linux.so.2 not found Abort trap *** Error code 134 Stop in /usr/ports/editors/staroffice52. *** 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. *** Error code 1 Stop in /usr/ports/editors/staroffice52. *** Error code 1 Stop in /usr/ports/editors/staroffice52. locate told me that the one and only file of name ld-linux.so.2 resides in /usr/compat/linux/lib/ Any suggestions? Regards Thomas Stratmann To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 20:19:30 2001 Delivered-To: freebsd-ports@freebsd.org Received: from leviathan.inethouston.net (216-118-21-146.pdq.net [216.118.21.146]) by hub.freebsd.org (Postfix) with ESMTP id 5A3F037B401 for ; Sat, 10 Feb 2001 20:19:10 -0800 (PST) Received: from dwcjr (216-118-21-147.pdq.net [216.118.21.147]) by leviathan.inethouston.net (Postfix) with ESMTP id B9E4B177E9E; Sat, 10 Feb 2001 22:19:15 -0600 (CST) Message-ID: <00e201c093e1$ccebbd20$931576d8@inethouston.net> From: "David W. Chapman Jr." To: "Troy Settle" , "Blaz Zupan" Cc: References: Subject: Re: Postfix + MySQL (ports updated 2/8) Date: Sat, 10 Feb 2001 22:19:17 -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 I don't think Blaz is a committer so it might take some time. Is this something that might apply to postfix-current? ----- Original Message ----- From: "Troy Settle" To: "Blaz Zupan" Cc: ; Sent: Saturday, February 10, 2001 7:16 PM Subject: RE: Postfix + MySQL (ports updated 2/8) > > Beautiful! Thanks Blaz. I trust you'll be commiting this soon? Though I > don't suppose I'll have problems remembering this when/if I take postfix > into production. > > > -- > Troy Settle > Pulaski Networks > 540.994.4254 > > They told me to think out of the box, but I > tripped over it, now I own my own company. > > > > ** -----Original Message----- > ** From: Blaz Zupan [mailto:blaz@amis.net] > ** Sent: Saturday, February 10, 2001 3:56 PM > ** To: Troy Settle > ** Cc: freebsd-questions@freebsd.org; freebsd-ports@freebsd.org > ** Subject: Re: Postfix + MySQL (ports updated 2/8) > ** > ** > ** > cc -DHAS_MYSQL -I/usr/local/include/mysql -O -pipe -I. > ** -I../include -DFREEB > ** > SD4 -o error error.o ../lib/libmaster.a ../lib/libglobal.a > ** ../lib/libutil.a > ** > /usr/local/lib/mysql/libmysqlclient.a -lm > ** > /usr/local/lib/mysql/libmysqlclient.a(my_compress.o): In function > ** > `my_compress_alloc': > ** > my_compress.o(.text+0xb0): undefined reference to `compress' > ** > /usr/local/lib/mysql/libmysqlclient.a(my_compress.o): In function > ** > `my_uncompress': > ** > my_compress.o(.text+0x121): undefined reference to `uncompress' > ** > *** Error code 1 > ** > ** Try the patch below. It appears that the 3.23 mysql libraries need libz. > ** > ** --- postfix/Makefile.orig Tue Feb 6 03:56:33 2001 > ** +++ postfix/Makefile Sat Feb 10 21:53:38 2001 > ** @@ -60,7 +60,7 @@ > ** .if defined(WITH_MYSQL) > ** BUILD_DEPENDS+= > ** ${LOCALBASE}/lib/mysql/libmysqlclient.a:${PORTSDIR}/databases/mys > ** ql323-client > ** POSTFIX_CCARGS+= -DHAS_MYSQL -I${LOCALBASE}/include/mysql > ** -POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/mysql/libmysqlclient.a -lm > ** +POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/mysql/libmysqlclient.a -lm -lz > ** .endif > ** > ** .if defined(WITH_LDAP) > ** > ** > ** > ** 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 > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 20:55:53 2001 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 8CA3537B401 for ; Sat, 10 Feb 2001 20:55:35 -0800 (PST) Received: from gate.dinoex.sub.org (dinoex@localhost) by net2.dinoex.sub.org (8.11.2/8.11.2) with BSMTP id f1B4t4l01662; Sun, 11 Feb 2001 05:55:04 +0100 (CET) (envelope-from dirk.meyer@dinoex.sub.org) To: freebsd-ports@FreeBSD.ORG, ache@nagual.pp.ru Message-ID: From: dirk.meyer@dinoex.sub.org (Dirk Meyer) Organization: privat Subject: Re: www/webalizer vs. www/webalizer-2 Date: Sun, 11 Feb 2001 05:51:12 +0100 X-Mailer: Dinoex 1.77 References: <20010210205144.D75114@nagual.pp.ru> <86k86yxx6i.wl@archon.local.idaemons.org> <20010210205144.D75114@nagual.pp.ru> <86itmixvgd.wl@archon.local.idaemons.org> <20010210230748.A76966@nagual.pp.ru> <20010210235641.A77557@nagual.pp.ru> 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: 20010211000000W+1@dinoex.sub.org Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > I suggest to keep only one port. > > Since October 2000 there has bee no pre release, > > so current won't be needed for now. > > What happens, if new alpha/beta will be released? We could create a new one, or keep the "-current", I don't know what's easier to do, in between both versions will create the same package. Thanks for the Information. I will include it into german/webalizer and german/webalizer2 in the next future. kind regards Dirk - Dirk Meyer, Im Grund 4, 34317 Habichtswald, Germany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 21:50:22 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 691A037B6A7; Sat, 10 Feb 2001 21:50:01 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1B5o0435655; Sat, 10 Feb 2001 21:50:00 -0800 (PST) (envelope-from kevlo) Date: Sat, 10 Feb 2001 21:50:00 -0800 (PST) From: Message-Id: <200102110550.f1B5o0435655@freefall.freebsd.org> To: osa@FreeBSD.org.ru, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24993: update databases/gigabase from 2.22 to 2.25 (by maintainer) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update databases/gigabase from 2.22 to 2.25 (by maintainer) State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Feb 10 21:49:40 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24993 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 21:58:50 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id B81E337B6CA; Sat, 10 Feb 2001 21:58:32 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1B5wUe36177; Sat, 10 Feb 2001 21:58:30 -0800 (PST) (envelope-from kevlo) Date: Sat, 10 Feb 2001 21:58:30 -0800 (PST) From: Message-Id: <200102110558.f1B5wUe36177@freefall.freebsd.org> To: jeremy@external.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24986: Update Port: editors/pico Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update Port: editors/pico State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Feb 10 21:58:11 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24986 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 22: 0:52 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 3FB7637B4EC; Sat, 10 Feb 2001 22:00:35 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1B60YY36405; Sat, 10 Feb 2001 22:00:34 -0800 (PST) (envelope-from kevlo) Date: Sat, 10 Feb 2001 22:00:34 -0800 (PST) From: Message-Id: <200102110600.f1B60YY36405@freefall.freebsd.org> To: tkato@prontomail.ne.jp, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24974: Update port: databases/unixODBC to 2.0.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: databases/unixODBC to 2.0.4 State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Feb 10 22:00:22 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24974 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 22:20:37 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1B02637B4EC; Sat, 10 Feb 2001 22:20:21 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1B6KKr44246; Sat, 10 Feb 2001 22:20:20 -0800 (PST) (envelope-from kevlo) Date: Sat, 10 Feb 2001 22:20:20 -0800 (PST) From: Message-Id: <200102110620.f1B6KKr44246@freefall.freebsd.org> To: rch@richard.eu.org, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24966: port upgrade Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port upgrade State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Feb 10 22:19:45 PST 2001 State-Changed-Why: Committed, thanks. BTW, I fixed and sorted pkg-plist. http://www.freebsd.org/cgi/query-pr.cgi?pr=24966 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 22:21:10 2001 Delivered-To: freebsd-ports@freebsd.org Received: from postoffice.shortboy.net (bensho.lnk.telstra.net [139.130.128.233]) by hub.freebsd.org (Postfix) with ESMTP id 74E6F37B401; Sat, 10 Feb 2001 22:20:50 -0800 (PST) Received: from melchior (melchior.shortboy.net [203.39.147.193]) by postoffice.shortboy.net (8.11.0/8.11.0) with SMTP id f1B6LD816931; Sun, 11 Feb 2001 17:21:14 +1100 (EST) From: "Ben Short" To: Cc: Subject: FreeBSD Port: bind-9.1.1rc1 Date: Sun, 11 Feb 2001 17:20:40 +1100 Message-ID: <000001c093f2$c1bf91e0$c19327cb@shortboy.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi Doug, Just a simplish question - is there a Makefile around that will install bind9 over the binary base install of fbsd, using its config files etc, for 4.x? ie /etc/namedb, /usr/sbin and stuff? Last time I tried, it resulted in me losing my system for a day while I restored a backup, after named did some nasty things, and I was silly enough to re-install the bin distro ;) Thanks Ben To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 22:22:18 2001 Delivered-To: freebsd-ports@freebsd.org Received: from orion.psknet.com (mail.psknet.com [63.171.251.4]) by hub.freebsd.org (Postfix) with SMTP id BA04C37B401 for ; Sat, 10 Feb 2001 22:21:57 -0800 (PST) Received: (qmail 28607 invoked from network); 11 Feb 2001 06:21:53 -0000 Received: from abyss.dashit.net (HELO ABYSS) (209.100.22.250) by mail.psknet.com with SMTP; 11 Feb 2001 06:21:53 -0000 From: "Troy Settle" To: "David W. Chapman Jr." , "Blaz Zupan" Cc: Subject: RE: Postfix + MySQL (ports updated 2/8) Date: Sun, 11 Feb 2001 01:21:51 -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) X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4133.2400 Importance: Normal In-Reply-To: <00e201c093e1$ccebbd20$931576d8@inethouston.net> X-AntiVirus: scanned for viruses by Pulaski Networks (http://www.psknet.com) using AMaViS (http://www.amavis.org) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Yeah, I guess it's a change in mysql... the -lz needs to go into postfix-current as well (see scripts/configure.postfix, ~ line 94). I didn't even notice that the 2 ports had different maintainers, else I would have cc'd you directly when I sent the first message =) Nice job on the dialog script, I really like those (takes the guess work away when one desires to add support for other stuff). I see that you have TLS in the script, but not in the dialog. Is this currently broken? -- Troy Settle Pulaski Networks 540.994.4254 They told me to think out of the box, but I tripped over it, now I own my own company. ** -----Original Message----- ** From: David W. Chapman Jr. [mailto:dwcjr@inethouston.net] ** Sent: Saturday, February 10, 2001 11:19 PM ** To: Troy Settle; Blaz Zupan ** Cc: freebsd-ports@freebsd.org ** Subject: Re: Postfix + MySQL (ports updated 2/8) ** ** ** I don't think Blaz is a committer so it might take some time. Is this ** something that might apply to postfix-current? ** ** ----- Original Message ----- ** From: "Troy Settle" ** To: "Blaz Zupan" ** Cc: ; ** Sent: Saturday, February 10, 2001 7:16 PM ** Subject: RE: Postfix + MySQL (ports updated 2/8) ** ** ** > ** > Beautiful! Thanks Blaz. I trust you'll be commiting this ** soon? Though I ** > don't suppose I'll have problems remembering this when/if I ** take postfix ** > into production. ** > ** > ** > -- ** > Troy Settle ** > Pulaski Networks ** > 540.994.4254 ** > ** > They told me to think out of the box, but I ** > tripped over it, now I own my own company. ** > ** > ** > ** > ** -----Original Message----- ** > ** From: Blaz Zupan [mailto:blaz@amis.net] ** > ** Sent: Saturday, February 10, 2001 3:56 PM ** > ** To: Troy Settle ** > ** Cc: freebsd-questions@freebsd.org; freebsd-ports@freebsd.org ** > ** Subject: Re: Postfix + MySQL (ports updated 2/8) ** > ** ** > ** ** > ** > cc -DHAS_MYSQL -I/usr/local/include/mysql -O -pipe -I. ** > ** -I../include -DFREEB ** > ** > SD4 -o error error.o ../lib/libmaster.a ../lib/libglobal.a ** > ** ../lib/libutil.a ** > ** > /usr/local/lib/mysql/libmysqlclient.a -lm ** > ** > /usr/local/lib/mysql/libmysqlclient.a(my_compress.o): In function ** > ** > `my_compress_alloc': ** > ** > my_compress.o(.text+0xb0): undefined reference to `compress' ** > ** > /usr/local/lib/mysql/libmysqlclient.a(my_compress.o): In function ** > ** > `my_uncompress': ** > ** > my_compress.o(.text+0x121): undefined reference to `uncompress' ** > ** > *** Error code 1 ** > ** ** > ** Try the patch below. It appears that the 3.23 mysql libraries need ** libz. ** > ** ** > ** --- postfix/Makefile.orig Tue Feb 6 03:56:33 2001 ** > ** +++ postfix/Makefile Sat Feb 10 21:53:38 2001 ** > ** @@ -60,7 +60,7 @@ ** > ** .if defined(WITH_MYSQL) ** > ** BUILD_DEPENDS+= ** > ** ${LOCALBASE}/lib/mysql/libmysqlclient.a:${PORTSDIR}/databases/mys ** > ** ql323-client ** > ** POSTFIX_CCARGS+= -DHAS_MYSQL -I${LOCALBASE}/include/mysql ** > ** -POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/mysql/libmysqlclient.a -lm ** > ** +POSTFIX_AUXLIBS+= ${LOCALBASE}/lib/mysql/libmysqlclient.a -lm -lz ** > ** .endif ** > ** ** > ** .if defined(WITH_LDAP) ** > ** ** > ** ** > ** ** > ** 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 ** > ** ** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 22:31:55 2001 Delivered-To: freebsd-ports@freebsd.org Received: from titanic.medinet.si (titanic.medinet.si [212.18.32.66]) by hub.freebsd.org (Postfix) with ESMTP id 0186837B401; Sat, 10 Feb 2001 22:31:37 -0800 (PST) Received: by titanic.medinet.si (Postfix, from userid 1000) id 9815E26C06; Sun, 11 Feb 2001 07:31:35 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by titanic.medinet.si (Postfix) with ESMTP id 8DE0E11708; Sun, 11 Feb 2001 07:31:35 +0100 (CET) Date: Sun, 11 Feb 2001 07:31:35 +0100 (CET) From: Blaz Zupan To: Troy Settle Cc: , Subject: RE: Postfix + MySQL (ports updated 2/8) 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 > Beautiful! Thanks Blaz. I trust you'll be commiting this soon? Though I > don't suppose I'll have problems remembering this when/if I take postfix > into production. Actually I'll be sending in a PR with this and other updates. I don't have commit privileges myself. 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 Sat Feb 10 22:46:16 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 1E50937B65D; Sat, 10 Feb 2001 22:45:59 -0800 (PST) Received: (from kevlo@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1B6jws46124; Sat, 10 Feb 2001 22:45:58 -0800 (PST) (envelope-from kevlo) Date: Sat, 10 Feb 2001 22:45:58 -0800 (PST) From: Message-Id: <200102110645.f1B6jws46124@freefall.freebsd.org> To: maurice@atum.castro.aus.net, kevlo@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/24967: Update of R port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update of R port State-Changed-From-To: open->closed State-Changed-By: kevlo State-Changed-When: Sat Feb 10 22:45:43 PST 2001 State-Changed-Why: Committed, thanks. http://www.freebsd.org/cgi/query-pr.cgi?pr=24967 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 10 22:50:20 2001 Delivered-To: freebsd-ports@hub.freebsd.org Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 6278637B491 for ; Sat, 10 Feb 2001 22:50:02 -0800 (PST) Received: (from gnats@localhost) by freefall.freebsd.org (8.11.1/8.11.1) id f1B6o2e46657; Sat, 10 Feb 2001 22:50:02 -0800 (PST) (envelope-from gnats) Received: from orion.psknet.com (mail.psknet.com [63.171.251.4]) by hub.freebsd.org (Postfix) with SMTP id 7288237B401 for ; Sat, 10 Feb 2001 22:47:58 -0800 (PST) Received: (qmail 33406 invoked by uid 1001); 11 Feb 2001 06:47:56 -0000 Message-Id: <20010211064756.33405.qmail@orion.psknet.com> Date: 11 Feb 2001 06:47:56 -0000 From: troy@psknet.com Reply-To: troy@psknet.com To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: ports/24999: Missing lib in ports/mail/postfix, ports/mail/postfix-current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 24999 >Category: ports >Synopsis: Missing lib in ports/mail/postifx* >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 Feb 10 22:50:01 PST 2001 >Closed-Date: >Last-Modified: >Originator: Troy Settle >Release: FreeBSD 4.2-RELEASE i386 >Organization: Pulaski Networks >Environment: Test machine, fresh ports update on 2/8/2001 >Description: postfix and postfix-current fail to compile due to missing libz in Makefile (apparently required by MySQL 3.23.22) >How-To-Repeat: Install MySQL 3.23.22 (from ports), attempt to install either of the postifx ports. It will crap out on an undefined reference to 'compress' in libmysqlclient.a >Fix: Add '-lz' to line 63 of ports/mail/postfix/Makefile Add '-lz' to line 93 of ports/mail/postfix/scripts/configure.postfix >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message