From owner-freebsd-ports Sun Feb 15 01:50:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA04331 for freebsd-ports-outgoing; Sun, 15 Feb 1998 01:50:03 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA04320; Sun, 15 Feb 1998 01:50:02 -0800 (PST) (envelope-from gnats) Received: from sandra.mikage.t-cnet.or.jp (sandra.mikage.t-cnet.or.jp [203.183.213.130]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA04070 for ; Sun, 15 Feb 1998 01:46:36 -0800 (PST) (envelope-from issei@mikage.t-cnet.or.jp) Received: (from issei@localhost) by sandra.mikage.t-cnet.or.jp (8.8.8/3.6Wbeta7) id SAA02580; Sun, 15 Feb 1998 18:46:32 +0900 (JST) Message-Id: <199802150946.SAA02580@sandra.mikage.t-cnet.or.jp> Date: Sun, 15 Feb 1998 18:46:32 +0900 (JST) From: Issei Suzuki Reply-To: issei@mikage.t-cnet.or.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5750: Obsolute description in CVSup manual Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5750 >Category: ports >Synopsis: Description to receive FreeBSD stablein man page is obsolute. >Confidential: yes >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: doc-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 15 01:50:01 PST 1998 >Last-Modified: >Originator: Issei Suzuki >Organization: A Site under T-CNET >Release: FreeBSD 2.2.5-STABLE i386 >Environment: ports/net/cvsup ports-current at Feb 12, 1998. >Description: The man page of cvsup say to use tag=RELENG_2_1_0 to receive the stable release via cvsup, but it is obsolute. Now tag should be RELENG_2_2. >How-To-Repeat: >Fix: change 'tag=RELENG_2_1_0' to 'tag=RELENG_2_2' >Audit-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 15 02:35:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA10798 for freebsd-ports-outgoing; Sun, 15 Feb 1998 02:35:00 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from server.amis.net (server.amis.net [193.77.234.34]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA10793 for ; Sun, 15 Feb 1998 02:34:57 -0800 (PST) (envelope-from blaz@gold.amis.net) Received: (from uucp@localhost) by server.amis.net (8.8.8/8.8.8) with UUCP id LAA27525 for freebsd-ports@freebsd.org; Sun, 15 Feb 1998 11:34:54 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by gold.amis.net (8.8.8/8.8.5) with SMTP id LAA13809 for ; Sun, 15 Feb 1998 11:31:24 +0100 (CET) Date: Sun, 15 Feb 1998 11:31:23 +0100 (CET) From: Blaz Zupan To: freebsd-ports@FreeBSD.ORG Subject: Cyrus and TCL 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 is the correct dependency for ports that need TCL? Cyrus is marked broken in the ports collection because of a non-working tcl dependency. I can make it work by patching its configure script to directly use -ltcl80 and the include directory ${prefix}/include/tcl80. So should I make this depend on tcl 8.0 or tcl 7.5? Here is the patch that makes cyrus compile correctly under 2.2.5-STABLE if the tcl 8.0 port is installed on the system (remove BROKEN from Makefile first, of course). Add the below patch as patch-ac in the patches directory to make it work. Blaz Zupan, blaz@medinet.si, http://www.amis.net/staff/blaz Medinet d.o.o., Linhartova 21, 2000 Maribor, Slovenia *** configure.old Wed Mar 19 22:43:58 1997 --- configure Sun Feb 15 11:06:27 1998 *************** *** 2438,2459 **** fi if test -z "$with_tcl"; then ! if test -f /usr/local/lib/libtcl.a; then with_tcl="/usr/local" fi fi case "$with_tcl" in no) if test "$TCL_SUBDIRS" != ""; then ! { echo "configure: error: Could not find Tcl libraries. You must either install Tcl or configure with --disable-cyradm" 1>&2; exit 1; } fi;; ! ""|yes) echo $ac_n "checking for Tcl_Init in -ltcl""... $ac_c" 1>&6 ! echo "configure:2451: checking for Tcl_Init in -ltcl" >&5 ac_lib_var=`echo tcl'_'Tcl_Init | 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="-ltcl -lm $LIBS" cat > conftest.$ac_ext <&2; exit 1; } fi;; ! ""|yes) echo $ac_n "checking for Tcl_Init in -ltcl80""... $ac_c" 1>&6 ! echo "configure:2451: checking for Tcl_Init in -ltcl80" >&5 ac_lib_var=`echo tcl'_'Tcl_Init | 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="-ltcl80 -lm $LIBS" cat > conftest.$ac_ext <&6 ! TCLLIBS="-ltcl -lm" else echo "$ac_t""no" 1>&6 if test "$TCL_SUBDIRS" != ""; then ! { echo "configure: error: Could not find Tcl libraries. You must either install Tcl or configure with --disable-cyradm" 1>&2; exit 1; } fi fi ;; ! *) CPPFLAGS="${CPPFLAGS} -I${with_tcl}/include" ! TCLLIBS="-L${with_tcl}/lib ${ld_runpath_switch}${with_tcl}/lib -ltcl -lm" ;; esac # Check whether --with-zephyr or --without-zephyr was given. --- 2481,2496 ---- fi if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 ! TCLLIBS="-ltcl80 -lm" else echo "$ac_t""no" 1>&6 if test "$TCL_SUBDIRS" != ""; then ! { echo "configure: error: Could not find Tcl libraries. You must either install Tcl 8.0 or configure with --disable-cyradm" 1>&2; exit 1; } fi fi ;; ! *) CPPFLAGS="${CPPFLAGS} -I${with_tcl}/include/tcl8.0" ! TCLLIBS="-L${with_tcl}/lib ${ld_runpath_switch}${with_tcl}/lib -ltcl80 -lm" ;; esac # Check whether --with-zephyr or --without-zephyr was given. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 02:53:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA14711 for freebsd-ports-outgoing; Sun, 15 Feb 1998 02:53:58 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA14678; Sun, 15 Feb 1998 02:53:46 -0800 (PST) (envelope-from andreas@FreeBSD.org) From: Andreas Klemm Received: (from andreas@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA03517; Sun, 15 Feb 1998 02:26:36 -0800 (PST) Date: Sun, 15 Feb 1998 02:26:36 -0800 (PST) Message-Id: <199802151026.CAA03517@freefall.freebsd.org> To: issei@mikage.t-cnet.or.jp, andreas@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, jdp@FreeBSD.ORG Subject: Re: ports/5750 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Description to receive FreeBSD stablein man page is obsolute. State-Changed-From-To: open-analyzed State-Changed-By: andreas State-Changed-When: Sun Feb 15 11:24:31 MET 1998 State-Changed-Why: Have send John the necessary diffs. Responsible-Changed-From-To: freebsd-ports->jdp@FreeBSD.ORG Responsible-Changed-By: andreas Responsible-Changed-When: Sun Feb 15 11:24:31 MET 1998 Responsible-Changed-Why: cvsup is Johns program, he has to fix it in his source tree. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 03:34:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA22647 for freebsd-ports-outgoing; Sun, 15 Feb 1998 03:34:30 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA22619 for ; Sun, 15 Feb 1998 03:34:22 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id MAA10608; Sun, 15 Feb 1998 12:15:06 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.7) id LAA12399; Sun, 15 Feb 1998 11:51:57 +0100 (CET) (envelope-from andreas) Message-ID: <19980215115157.03629@klemm.gtn.com> Date: Sun, 15 Feb 1998 11:51:57 +0100 From: Andreas Klemm To: Blaz Zupan , freebsd-ports@FreeBSD.ORG Subject: Re: Cyrus and TCL References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: ; from Blaz Zupan on Sun, Feb 15, 1998 at 11:31:23AM +0100 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Feb 15, 1998 at 11:31:23AM +0100, Blaz Zupan wrote: > What is the correct dependency for ports that need TCL? Cyrus is marked > broken in the ports collection because of a non-working tcl dependency. I > can make it work by patching its configure script to directly use -ltcl80 > and the include directory ${prefix}/include/tcl80. Yes ok so. tcl80 is the fastest. > So should I make this > depend on tcl 8.0 or tcl 7.5? 8.0 would be better. -- Andreas Klemm powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 03:53:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA24116 for freebsd-ports-outgoing; Sun, 15 Feb 1998 03:53:11 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from jaguars.cableinet.net (jaguars-int.cableinet.net [193.38.113.9]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id DAA24109 for ; Sun, 15 Feb 1998 03:53:06 -0800 (PST) (envelope-from i.vaudrey@bigfoot.com) Received: (qmail 23779 invoked from network); 15 Feb 1998 11:49:02 -0000 Received: from unknown (HELO ivwk00152.cableinet.co.uk) (194.117.149.122) by jaguars with SMTP; 15 Feb 1998 11:49:02 -0000 Received: by ivwk00152.cableinet.co.uk with Microsoft Mail id <01BD3A08.21565FA0@ivwk00152.cableinet.co.uk>; Sun, 15 Feb 1998 11:52:02 -0000 Message-ID: <01BD3A08.21565FA0@ivwk00152.cableinet.co.uk> From: Ian Vaudrey To: "'Blaz Zupan'" Cc: "freebsd-ports@FreeBSD.ORG" Subject: RE: Cyrus and TCL Date: Sun, 15 Feb 1998 11:51:40 -0000 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Don't hold your breath waiting for your fix to be incorporated. I submitted a PR (ports/4729) to unbreak the Cyrus port on 8th of October last. Four months later it's still broken :-( - Ian On 15 February 1998 11:31, Blaz Zupan wrote: > What is the correct dependency for ports that need TCL? Cyrus is marked > broken in the ports collection because of a non-working tcl dependency. I > can make it work by patching its configure script to directly use -ltcl80 > and the include directory ${prefix}/include/tcl80. So should I make this > depend on tcl 8.0 or tcl 7.5? Here is the patch that makes cyrus compile > correctly under 2.2.5-STABLE if the tcl 8.0 port is installed on the > system (remove BROKEN from Makefile first, of course). Add the below patch > as patch-ac in the patches directory to make it work. > > Blaz Zupan, blaz@medinet.si, http://www.amis.net/staff/blaz > Medinet d.o.o., Linhartova 21, 2000 Maribor, Slovenia > > *** configure.old Wed Mar 19 22:43:58 1997 > --- configure Sun Feb 15 11:06:27 1998 > *************** > *** 2438,2459 **** > fi > > if test -z "$with_tcl"; then > ! if test -f /usr/local/lib/libtcl.a; then > with_tcl="/usr/local" > fi > fi > case "$with_tcl" in > no) if test "$TCL_SUBDIRS" != ""; then > ! { echo "configure: error: Could not find Tcl libraries. You must either install Tcl or configure with --disable-cyradm" 1>&2; exit 1; } > fi;; > ! ""|yes) echo $ac_n "checking for Tcl_Init in -ltcl""... $ac_c" 1>&6 > ! echo "configure:2451: checking for Tcl_Init in -ltcl" >&5 > ac_lib_var=`echo tcl'_'Tcl_Init | 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="-ltcl -lm $LIBS" > cat > conftest.$ac_ext < #line 2459 "configure" > #include "confdefs.h" > --- 2438,2459 ---- > fi > > if test -z "$with_tcl"; then > ! if test -f /usr/local/lib/libtcl80.a; then > with_tcl="/usr/local" > fi > fi > case "$with_tcl" in > no) if test "$TCL_SUBDIRS" != ""; then > ! { echo "configure: error: Could not find Tcl 8.0 libraries. You must either install Tcl or configure with --disable-cyradm" 1>&2; exit 1; } > fi;; > ! ""|yes) echo $ac_n "checking for Tcl_Init in -ltcl80""... $ac_c" 1>&6 > ! echo "configure:2451: checking for Tcl_Init in -ltcl80" >&5 > ac_lib_var=`echo tcl'_'Tcl_Init | 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="-ltcl80 -lm $LIBS" > cat > conftest.$ac_ext < #line 2459 "configure" > #include "confdefs.h" > *************** > *** 2481,2496 **** > fi > if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then > echo "$ac_t""yes" 1>&6 > ! TCLLIBS="-ltcl -lm" > else > echo "$ac_t""no" 1>&6 > if test "$TCL_SUBDIRS" != ""; then > ! { echo "configure: error: Could not find Tcl libraries. You must either install Tcl or configure with --disable-cyradm" 1>&2; exit 1; } > fi > fi > ;; > ! *) CPPFLAGS="${CPPFLAGS} -I${with_tcl}/include" > ! TCLLIBS="-L${with_tcl}/lib ${ld_runpath_switch}${with_tcl}/lib -ltcl -lm" ;; > esac > > # Check whether --with-zephyr or --without-zephyr was given. > --- 2481,2496 ---- > fi > if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then > echo "$ac_t""yes" 1>&6 > ! TCLLIBS="-ltcl80 -lm" > else > echo "$ac_t""no" 1>&6 > if test "$TCL_SUBDIRS" != ""; then > ! { echo "configure: error: Could not find Tcl libraries. You must either install Tcl 8.0 or configure with --disable-cyradm" 1>&2; exit 1; } > fi > fi > ;; > ! *) CPPFLAGS="${CPPFLAGS} -I${with_tcl}/include/tcl8.0" > ! TCLLIBS="-L${with_tcl}/lib ${ld_runpath_switch}${with_tcl}/lib -ltcl80 -lm" ;; > esac > > # Check whether --with-zephyr or --without-zephyr was given. > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 04:10:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27370 for freebsd-ports-outgoing; Sun, 15 Feb 1998 04:10:03 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27342; Sun, 15 Feb 1998 04:10:01 -0800 (PST) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27183; Sun, 15 Feb 1998 04:07:54 -0800 (PST) (envelope-from nobody) Message-Id: <199802151207.EAA27183@hub.freebsd.org> Date: Sun, 15 Feb 1998 04:07:54 -0800 (PST) From: mountin.man@mixcom.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5752: apacheSSL-1.2.4 make certificate fails Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5752 >Category: ports >Synopsis: apacheSSL-1.2.4 make certificate fails >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Feb 15 04:10:00 PST 1998 >Last-Modified: >Originator: Jeffrey J. Mountin >Organization: The Unix Janitor >Release: 2.2.5R >Environment: FreeBSD rustbelt.com 2.2.5-RELEASE FreeBSD 2.2.5-RELEASE #0: Wed Feb 4 17:46:08 CST 1998 root@rustbelt.com:/usr/src/sys/compile/GENERIC i386 >Description: make certificate cd /usr/ports/www/apache-ssl/work/apache_1.2.4; make PREFIX=/usr/local LOCALBASE=/usr/local X11BASE=/usr/X11R6 MOTIFLIB="" CFLAGS="-O" BSD_INSTALL_PROGRAM="install -c -s -o bin -g bin -m 555" BSD_INSTALL_SCRIPT="install -c -o bin -g bin -m 555" BSD_INSTALL_DATA="install -c -o bin -g bin -m 444" BSD_INSTALL_MAN="install -c -o bin -g bin -m 444" certificate cd src; make PREFIX=/usr/local certificate /usr/local/lib/apps/ssleay req -config /usr/local/lib/apps/ssleay.cnf -new -x509 -nodes -out ../SSLconf/conf/httpsd.pem -keyout ../SSLconf/conf/httpsd.pem; ln -sf ../SSLconf/conf/httpsd.pem ../SSLconf/conf/`/usr/local/lib/apps/ssleay x509 -noout -hash < ../SSLconf/conf/httpsd.pem`.0 /usr/local/lib/apps/ssleay: not found *** Error code 127 Stop. *** Error code 1 Stop. *** Error code 1 Stop. >How-To-Repeat: cd /usr/ports/www/apache-ssl make install make certificate >Fix: It's a hack, but works: ln -s /usr/local/bin/ ./apps (still broken) make certificate cd /usr/ports/www/apache-ssl/work/apache_1.2.4; make PREFIX=/usr/local LOCALBASE=/usr/local X11BASE=/usr/X11R6 MOTIFLIB="" CFLAGS="-O" BSD_INSTALL_PROGRAM="install -c -s -o bin -g bin -m 555" BSD_INSTALL_SCRIPT="install -c -o bin -g bin -m 555" BSD_INSTALL_DATA="install -c -o bin -g bin -m 444" BSD_INSTALL_MAN="install -c -o bin -g bin -m 444" certificate cd src; make PREFIX=/usr/local certificate /usr/local/lib/apps/ssleay req -config /usr/local/lib/apps/ssleay.cnf -new -x509 -nodes -out ../SSLconf/conf/httpsd.pem -keyout ../SSLconf/conf/httpsd.pem; ln -sf ../SSLconf/conf/httpsd.pem ../SSLconf/conf/`/usr/local/lib/apps/ssleay x509 -noout -hash < ../SSLconf/conf/httpsd.pem`.0 Using configuration from /usr/local/lib/apps/ssleay.cnf error on line 0 of /usr/local/lib/apps/ssleay.cnf 15257:error:02001002:system library:fopen:system lib:conf.c:127 15257:error:0E064002:configuation file routines:CONF_load:system lib:conf.c:128 *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. /usr/local/lib/apps > cp -p /usr/local/lib/ssleay.cnf . And it's happy. Can't test any real certificates, as I'm trying this version of SSL and only have Verisgn CERTs. Have used Stronghold no problem. before >Audit-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 15 04:11:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27442 for freebsd-ports-outgoing; Sun, 15 Feb 1998 04:11:12 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from server.amis.net (server.amis.net [193.77.234.34]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA27435 for ; Sun, 15 Feb 1998 04:11:10 -0800 (PST) (envelope-from blaz@gold.amis.net) Received: (from uucp@localhost) by server.amis.net (8.8.8/8.8.8) with UUCP id NAA18250; Sun, 15 Feb 1998 13:11:04 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by gold.amis.net (8.8.8/8.8.5) with SMTP id NAA14090; Sun, 15 Feb 1998 13:10:51 +0100 (CET) Date: Sun, 15 Feb 1998 13:10:51 +0100 (CET) From: Blaz Zupan To: Ian Vaudrey cc: "freebsd-ports@FreeBSD.ORG" Subject: RE: Cyrus and TCL In-Reply-To: <01BD3A08.21565FA0@ivwk00152.cableinet.co.uk> 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 > Don't hold your breath waiting for your fix to be incorporated. I > submitted a PR (ports/4729) to unbreak the Cyrus port on 8th of > October last. Four months later it's still broken :-( >From what I can see your PR fixes Cyrus's problems better then mine, so it would really be wise to use those patches and close the PR. Maybe it is time for Satoshi (or whoever is the default port maintainer to take over Cyrus or at least apply the patches in PR 4729 - my mail to jfitz@freebsd.org, the current maintainer, resulted in an automatic reply from which I could see that perhaps jfitz does not have much time to work on ports....). Anybody with commit priviledge want to fix Cyrus? Please? :) Blaz Zupan, blaz@medinet.si, http://www.amis.net/staff/blaz Medinet d.o.o., Linhartova 21, 2000 Maribor, Slovenia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 04:16:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA27907 for freebsd-ports-outgoing; Sun, 15 Feb 1998 04:16:16 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA27901 for ; Sun, 15 Feb 1998 04:16:13 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id EAA04667; Sun, 15 Feb 1998 04:16:12 -0800 (PST) To: Ian Vaudrey cc: "'Blaz Zupan'" , "freebsd-ports@FreeBSD.ORG" Subject: Re: Cyrus and TCL In-reply-to: Your message of "Sun, 15 Feb 1998 11:51:40 GMT." <01BD3A08.21565FA0@ivwk00152.cableinet.co.uk> Date: Sun, 15 Feb 1998 04:16:12 -0800 Message-ID: <4663.887544972@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Don't hold your breath waiting for your fix to be incorporated. I > submitted a PR (ports/4729) to unbreak the Cyrus port on 8th of > October last. Four months later it's still broken :-( Ouch! You're far too patient - you should have made noises sooner; sometimes we're a purely interrupt-driven project. :-) Tested, committed, closed. Thank you for the PR! Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 05:22:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA03507 for freebsd-ports-outgoing; Sun, 15 Feb 1998 05:22:06 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from server.amis.net (server.amis.net [193.77.234.34]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA03493 for ; Sun, 15 Feb 1998 05:22:01 -0800 (PST) (envelope-from blaz@gold.amis.net) Received: (from uucp@localhost) by server.amis.net (8.8.8/8.8.8) with UUCP id OAA03560; Sun, 15 Feb 1998 14:21:52 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by gold.amis.net (8.8.8/8.8.5) with SMTP id OAA17912; Sun, 15 Feb 1998 14:21:57 +0100 (CET) Date: Sun, 15 Feb 1998 14:21:57 +0100 (CET) From: Blaz Zupan To: "Jordan K. Hubbard" cc: freebsd-ports@FreeBSD.ORG Subject: imap-uw (was Re: Cyrus and TCL) In-Reply-To: <4663.887544972@time.cdrom.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 > Ouch! You're far too patient - you should have made noises sooner; > sometimes we're a purely interrupt-driven project. :-) > Tested, committed, closed. Thank you for the PR! Jordan, while you are already at fixing ports, you may want to recalculate the md5 checksum for the imap-uw port (mail/imap-uw). It seems like the distfile changed. You also have to remove patch-aa and replace both patch-ab and patch-ac with the below patches. The changes in patch-aa have already been incorporated in the new distfile so it is not needed anymore, both patch-ab and patch-ac need fixing because of the changes in the new distfile. Also remove the first 3 lines of pkg/PLIST and remove the first 2 lines after do-install in the port Makefile. Also I think the complete install-lib target plus comments can be removed (this is a port of imapd not libc-client). The only change this would result in is, that imapd is no longer dynamically linked with libc-client, which I don't think does any harm because imapd is the only program that uses this so dynamic linking brings us nothing. ------------ New patch-ab: *** src/osdep/unix/Makefile.orig Thu Feb 12 08:07:54 1998 --- src/osdep/unix/Makefile Sun Feb 15 13:57:05 1998 *************** *** 182,188 **** SPOOLDIR=/var \ ACTIVEFILE=/usr/local/news/lib/active \ RSHPATH=/usr/bin/rsh \ ! BASECFLAGS="-g -O -pipe -DNFSKLUDGE" \ BASELDFLAGS="-lcrypt" bsi: # BSD/i386 --- 182,188 ---- SPOOLDIR=/var \ ACTIVEFILE=/usr/local/news/lib/active \ RSHPATH=/usr/bin/rsh \ ! BASECFLAGS="-g -O -pipe -DNFSKLUDGE -DIGNORE_LOCK_EACCES_ERRORS" \ BASELDFLAGS="-lcrypt" bsi: # BSD/i386 ------------ New patch-ac: *** src/imapd/Makefile.bak Fri Jan 23 00:42:52 1998 --- src/imapd/Makefile Sun Feb 15 13:41:58 1998 *************** *** 31,38 **** # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ! ALERT=/etc/imapd.alert ! ANO=/etc/anonymous.newsgroups SHELL= /bin/sh # The "Manage Mail" menu item of Netscape Messager puts up an error message --- 31,38 ---- # WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ! ALERT=$(PREFIX)/etc/imapd.alert ! ANO=$(PREFIX)/etc/anonymous.newsgroups SHELL= /bin/sh # The "Manage Mail" menu item of Netscape Messager puts up an error message Blaz Zupan, blaz@medinet.si, http://www.amis.net/staff/blaz Medinet d.o.o., Linhartova 21, 2000 Maribor, Slovenia To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 05:54:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA07762 for freebsd-ports-outgoing; Sun, 15 Feb 1998 05:54:55 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hwcn.org (ac199@james.hwcn.org [199.212.94.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA07753 for ; Sun, 15 Feb 1998 05:54:49 -0800 (PST) (envelope-from hoek@hwcn.org) Received: from localhost (ac199@localhost) by hwcn.org (8.8.8/8.8.8) with SMTP id IAA27277; Sun, 15 Feb 1998 08:50:50 -0500 (EST) Date: Sun, 15 Feb 1998 08:50:50 -0500 (EST) From: Tim Vanderhoek Reply-To: Tim Vanderhoek To: Blaz Zupan cc: "Jordan K. Hubbard" , freebsd-ports@FreeBSD.ORG Subject: Re: imap-uw (was Re: Cyrus and TCL) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 15 Feb 1998, Blaz Zupan wrote: > Jordan, while you are already at fixing ports, you may want to recalculate > the md5 checksum for the imap-uw port (mail/imap-uw). It seems like the Is this an offer to be the maintainer for the imap-uw port? :) It badly needs a maintainer... If you want a net site on to put the imap distfile, so you can update the port for the distfile at your convenience, that can be provided. :) Heck, almost anything except a maintainer can be provided. :) > The only change this would result in is, that imapd is no longer > dynamically linked with libc-client, which I don't think does any harm > because imapd is the only program that uses this so dynamic linking brings > us nothing. libc-client is used by tkrat. One of two things should happen. 1) A separate port for libc-client, which installs the appropriate headers, etc. in a subdir of include/ (to avoid seriously polluting include/). 2) The imap-uw port should install those headers itself. As it is now, tkrat carries internal copies of the header files that libc-client provides (but does not install). This is highly sub-optimal... The above two are pretty easy. It's just chosing one or the other. :) -- Outnumbered? Maybe. Outspoken? Never! tIM...HOEk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 06:19:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA10209 for freebsd-ports-outgoing; Sun, 15 Feb 1998 06:19:22 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA10178; Sun, 15 Feb 1998 06:19:12 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA05513; Sun, 15 Feb 1998 06:19:04 -0800 (PST) Date: Sun, 15 Feb 1998 06:19:04 -0800 (PST) Message-Id: <199802151419.GAA05513@freefall.freebsd.org> To: handy@lambic.space.lockheed.com, jseger@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5749 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: FreeCiv upgrade: 1.50 --> 1.51 State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Sun Feb 15 06:18:47 PST 1998 State-Changed-Why: Committed, thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 06:28:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA12297 for freebsd-ports-outgoing; Sun, 15 Feb 1998 06:28:36 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA12288; Sun, 15 Feb 1998 06:28:32 -0800 (PST) (envelope-from jseger@FreeBSD.org) From: "Justin M. Seger" Received: (from jseger@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA05794; Sun, 15 Feb 1998 06:28:24 -0800 (PST) Date: Sun, 15 Feb 1998 06:28:24 -0800 (PST) Message-Id: <199802151428.GAA05794@freefall.freebsd.org> To: furusawa@com.cs.osakafu-u.ac.jp, jseger@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5695 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New ports collescction : xbloody-1.00 State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Sun Feb 15 06:25:46 PST 1998 State-Changed-Why: Committed with some change. 1. Add files/md5 2. README->README.sjis in pkg/PLIST 3. Remove the unneccessary XMKMF definition in the Makefile To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 07:10:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA16026 for freebsd-ports-outgoing; Sun, 15 Feb 1998 07:10:33 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from jseger@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA15912; Sun, 15 Feb 1998 07:09:29 -0800 (PST) (envelope-from jseger) Date: Sun, 15 Feb 1998 07:09:29 -0800 (PST) From: "Justin M. Seger" Message-Id: <199802151509.HAA15912@hub.freebsd.org> To: bogusz@temida.rejent.poznan.pl, jseger, freebsd-ports Subject: Re: ports/5699 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: port of rise2 to freebsd State-Changed-From-To: open-closed State-Changed-By: jseger State-Changed-When: Sun Feb 15 07:08:47 PST 1998 State-Changed-Why: This isn't a port. This is a binary that will run on FreeBSD. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 07:46:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA18467 for freebsd-ports-outgoing; Sun, 15 Feb 1998 07:46:37 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA18445; Sun, 15 Feb 1998 07:46:33 -0800 (PST) (envelope-from steve) Date: Sun, 15 Feb 1998 07:46:33 -0800 (PST) From: Steve Price Message-Id: <199802151546.HAA18445@hub.freebsd.org> To: obrien@FreeBSD.ORG, steve, freebsd-ports Subject: Re: bin/5656 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: STABLE's xemacs-20.3 requires libcompface State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Feb 15 07:43:58 PST 1998 State-Changed-Why: The xemacs20 port will no longer build with faces support even if you have libcompface present. Remove the one line added to the makefile to revert to old behavior of autodetection. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 08:26:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA21627 for freebsd-ports-outgoing; Sun, 15 Feb 1998 08:26:12 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from coconut.itojun.org (root@coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA21603 for ; Sun, 15 Feb 1998 08:26:05 -0800 (PST) (envelope-from itojun@itojun.org) Received: from localhost (itojun@localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.8.8+3.0Wbeta11/3.6W) with ESMTP id BAA27410; Mon, 16 Feb 1998 01:22:46 +0900 (JST) To: Michael Hancock cc: ports@FreeBSD.ORG In-reply-to: michaelh's message of Sun, 15 Feb 1998 14:32:53 JST. <199802150532.OAA21929@chaos.cet.co.jp> X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: /usr/ports/editors/nvi/files/md5 From: Jun-ichiro itojun Itoh Date: Mon, 16 Feb 1998 01:22:46 +0900 Message-ID: <27407.887559766@coconut.itojun.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >--- md5.old Sun Feb 15 14:24:40 1998 >+++ md5 Sun Feb 15 14:25:41 1998 >@@ -1,2 +1,2 @@ >-MD5 (nvi-1.79.tar.gz) = 765e2153f5fc4f21793f2edc2647305a >+MD5 (nvi-1.79.tar.gz) = 52549f8e390db06f9366ee83e59f64de > MD5 (nvi-1.79.m17n-970820-1600.diff.gz) = 74d27c92062ab2cad6fd28e0b68e76a1 thanks for letting me know, nvi-1.79.tar.gz seems to be replaced more than once in the past. (with the same filename) itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 08:40:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA22859 for freebsd-ports-outgoing; Sun, 15 Feb 1998 08:40:10 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA22844; Sun, 15 Feb 1998 08:40:05 -0800 (PST) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA22318; Sun, 15 Feb 1998 08:33:08 -0800 (PST) (envelope-from nobody) Message-Id: <199802151633.IAA22318@hub.freebsd.org> Date: Sun, 15 Feb 1998 08:33:08 -0800 (PST) From: igor@zynaps.ru To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5753: fwtk port outdated Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5753 >Category: ports >Synopsis: fwtk port outdated >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 15 08:40:02 PST 1998 >Last-Modified: >Originator: Igor Vinokurov >Organization: >Release: >Environment: >Description: fwtk port is outdated >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 09:07:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25285 for freebsd-ports-outgoing; Sun, 15 Feb 1998 09:07:03 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25261; Sun, 15 Feb 1998 09:06:56 -0800 (PST) (envelope-from steve) Date: Sun, 15 Feb 1998 09:06:56 -0800 (PST) From: Steve Price Message-Id: <199802151706.JAA25261@hub.freebsd.org> To: igor@zynaps.ru, steve, freebsd-ports Subject: Re: ports/5740 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gdbm port update State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Feb 15 09:06:33 PST 1998 State-Changed-Why: Suggested fix applied. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 09:25:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA27012 for freebsd-ports-outgoing; Sun, 15 Feb 1998 09:25:11 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA27006; Sun, 15 Feb 1998 09:25:06 -0800 (PST) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id RAA03442; Sun, 15 Feb 1998 17:25:03 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.6/8.8.6) id SAA03014; Sun, 15 Feb 1998 18:25:02 +0100 (MET) Message-ID: <19980215182501.38811@follo.net> Date: Sun, 15 Feb 1998 18:25:01 +0100 From: Eivind Eklund To: Steve Price Cc: ports@FreeBSD.ORG Subject: Re: cvs commit: ports/editors/xemacs20 Makefile References: <199802151543.HAA29076@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199802151543.HAA29076@freefall.freebsd.org>; from Steve Price on Sun, Feb 15, 1998 at 07:43:43AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Feb 15, 1998 at 07:43:43AM -0800, Steve Price wrote: > steve 1998/02/15 07:43:43 PST > > Modified files: > editors/xemacs20 Makefile > Log: > Build this port with '--with-xface=no'. > > PR: 5656 > > Revision Changes Path > 1.8 +2 -1 ports/editors/xemacs20/Makefile How about this? (Concept only; I haven't tested this.) Index: Makefile =================================================================== RCS file: /home/ncvs/ports/editors/xemacs20/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- Makefile 1998/02/15 15:43:42 1.8 +++ Makefile 1998/02/15 16:06:48 @@ -34,8 +34,7 @@ --site-includes=${PREFIX}/include \ --site-libraries=${PREFIX}/lib \ --sitelispdir="${PREFIX}/lib/xemacs/site-lisp ${PREFIX}/share/emacs/site-lisp" \ - --with-xface=no \ - ${WITH_MULE} ${WITH_DIALOGS} + ${WITH_XFACE} ${WITH_MULE} ${WITH_DIALOGS} MAN1= ctags.1 etags.1 gnuattach.1 gnuclient.1 gnudoit.1 \ gnuserv.1 xemacs.1 ALL_TARGET= all dist @@ -60,6 +59,11 @@ # hack to avoid shipping binaries linked with Motif .if defined(MOTIF_STATIC) WITH_DIALOGS= --with-dialogs=athena .endif + +# Drop faces if building package, autodetect otherwise +.ifmake package +WITH_XFACE?= --with-xface=no +.endif post-install: Autodetecting when built locally certainly sounds like a feature to me; the only problem seems to be when building packages. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 12:40:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18665 for freebsd-ports-outgoing; Sun, 15 Feb 1998 12:40:03 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18645; Sun, 15 Feb 1998 12:40:02 -0800 (PST) (envelope-from gnats) Received: from lambic.spasci.com (lambic.space.lockheed.com [192.68.162.69]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA18518 for ; Sun, 15 Feb 1998 12:38:30 -0800 (PST) (envelope-from handy@lambic.spasci.com) Received: (from handy@localhost) by lambic.spasci.com (8.8.8/8.8.7) id MAA12948; Sun, 15 Feb 1998 12:38:18 -0800 (PST) (envelope-from handy) Message-Id: <199802152038.MAA12948@lambic.spasci.com> Date: Sun, 15 Feb 1998 12:38:18 -0800 (PST) From: Brian Handy Reply-To: handy@lambic.spasci.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5756: Upgrade: a2ps --> 4.9.9 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5756 >Category: ports >Synopsis: Upgrade: a2ps --> 4.9.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 15 12:40:01 PST 1998 >Last-Modified: >Originator: Brian Handy >Organization: MSU - Bozeman >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: Update a2ps 4.9.8 --> 4.9.9 Add some @dirrm's to PLIST >How-To-Repeat: >Fix: diff -ru a2ps.orig/Makefile a2ps/Makefile --- a2ps.orig/Makefile Sun Feb 15 12:33:42 1998 +++ a2ps/Makefile Sun Feb 15 12:30:08 1998 @@ -1,5 +1,5 @@ # New ports collection makefile for: a2ps -# Version required: 4.9.7 +# Version required: 4.9.9 # Date created: 18 August 1997 # Whom: Chuck Robey (chuckr@freebsd.org) # @@ -7,15 +7,15 @@ # DISTNAME= a2ps -PKGNAME= a2ps-${PAPERSIZE}-4.9.8 +PKGNAME= a2ps-${PAPERSIZE}-4.9.9 CATEGORIES= print MASTER_SITES= http://www-inf.enst.fr/~demaille/ftp/a2ps/ -DISTFILES= a2ps-4.9.8.tar.gz +DISTFILES= a2ps-4.9.9.tar.gz MAINTAINER= chuckr@FreeBSD.org MANUAL_PACKAGE_BUILD= PAPERSIZE has to be set to Letter A4 -WRKSRC= $(WRKDIR)/$(DISTNAME)-4.9.8 +WRKSRC= $(WRKDIR)/$(DISTNAME)-4.9.9 GNU_CONFIGURE= yes MAN1= a2ps.1 ogonkify.1 diff -ru a2ps.orig/files/md5 a2ps/files/md5 --- a2ps.orig/files/md5 Sun Feb 15 12:33:42 1998 +++ a2ps/files/md5 Sun Feb 15 12:30:08 1998 @@ -1 +1 @@ -MD5 (a2ps-4.9.8.tar.gz) = f03cbe4ce07942974279be125b2b9e02 +MD5 (a2ps-4.9.9.tar.gz) = 17e3d399d1ef6c05130ebe8e8414e2e6 diff -ru a2ps.orig/pkg/PLIST a2ps/pkg/PLIST --- a2ps.orig/pkg/PLIST Sun Feb 15 12:33:42 1998 +++ a2ps/pkg/PLIST Sun Feb 15 12:35:55 1998 @@ -1,3 +1,4 @@ +share/a2ps/README share/a2ps/ps/base.ps share/a2ps/ps/bw.pro share/a2ps/ps/gray.pro @@ -99,18 +100,24 @@ share/a2ps/sheets/ada.ssh share/a2ps/sheets/cpp.ssh share/a2ps/sheets/c.ssh +share/a2ps/sheets/csh.ssh share/a2ps/sheets/caml.ssh share/a2ps/sheets/chlog.ssh share/a2ps/sheets/claire.ssh share/a2ps/sheets/clisp.ssh share/a2ps/sheets/coqv.ssh share/a2ps/sheets/eiffel.ssh +share/a2ps/sheets/elisp.ssh +share/a2ps/sheets/eps.ssh +share/a2ps/sheets/gnuc.ssh share/a2ps/sheets/fortran.ssh share/a2ps/sheets/initora.ssh share/a2ps/sheets/java.ssh share/a2ps/sheets/lace.ssh share/a2ps/sheets/lex.ssh +share/a2ps/sheets/make.ssh share/a2ps/sheets/mail.ssh +share/a2ps/sheets/modula2.ssh share/a2ps/sheets/modula3.ssh share/a2ps/sheets/o2c.ssh share/a2ps/sheets/oberon.ssh @@ -120,6 +127,7 @@ share/a2ps/sheets/pascal.ssh share/a2ps/sheets/perl.ssh share/a2ps/sheets/plsql.ssh +share/a2ps/sheets/ppd.ssh share/a2ps/sheets/ps.ssh share/a2ps/sheets/pre.ssh share/a2ps/sheets/prolog.ssh @@ -132,6 +140,7 @@ share/a2ps/sheets/sql.ssh share/a2ps/sheets/sql92.ssh share/a2ps/sheets/ssh.ssh +share/a2ps/sheets/texinfo.ssh share/a2ps/sheets/tcl.ssh share/a2ps/sheets/tex.ssh share/a2ps/sheets/tk.ssh @@ -155,9 +164,11 @@ share/a2ps/encoding/latin5.edf share/a2ps/encoding/latin6.edf share/a2ps/encoding/mac.edf -share/emacs/site-lisp/make-regexp.el -share/emacs/site-lisp/a2ps.el -lib/liba2ps.so.0.2 +share/a2ps/printers/README +share/a2ps/printers/level1.ppd +share/a2ps/printers/level2.ppd +share/a2ps/printers/printers.map +lib/liba2ps.so.0.3 @exec /sbin/ldconfig -m %B lib/liba2ps.a etc/a2ps.cfg @@ -169,9 +180,16 @@ info/a2ps.info-1 info/a2ps.info-2 info/a2ps.info-3 +info/a2ps.info-4 info/regex.info info/regex.info-1 info/regex.info-2 info/regex.info-3 man/man1/a2ps.1.gz man/man1/ogonkify.1.gz +@dirrm share/a2ps/afm +@dirrm share/a2ps/encoding +@dirrm share/a2ps/printers +@dirrm share/a2ps/ps +@dirrm share/a2ps/sheets +@dirrm share/a2ps >Audit-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 15 12:41:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18804 for freebsd-ports-outgoing; Sun, 15 Feb 1998 12:41:06 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from fly.HiWAAY.net (root@fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA18780; Sun, 15 Feb 1998 12:40:58 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from bonsai.hiwaay.net (tnt3-155.HiWAAY.net [208.147.146.155]) by fly.HiWAAY.net (8.8.8/8.8.6) with SMTP id OAA31990; Sun, 15 Feb 1998 14:40:51 -0600 (CST) Message-ID: <34E75347.284797A9@hiwaay.net> Date: Sun, 15 Feb 1998 14:42:47 -0600 From: Steve Price X-Mailer: Mozilla 3.04Gold (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: Eivind Eklund CC: asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: cvs commit: ports/editors/xemacs20 Makefile References: <199802151543.HAA29076@freefall.freebsd.org> <19980215182501.38811@follo.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Eivind Eklund wrote: > > How about this? (Concept only; I haven't tested this.) > [patch to Makefile elided] > > Autodetecting when built locally certainly sounds like a feature to me; the > only problem seems to be when building packages. This would be okay with me. It really depends on how Satoshi builds the package tree. If he simply does cd /usr/ports && make package then this should work. Satoshi? Steve > Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 13:10:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22750 for freebsd-ports-outgoing; Sun, 15 Feb 1998 13:10:04 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22724; Sun, 15 Feb 1998 13:10:02 -0800 (PST) (envelope-from gnats) Date: Sun, 15 Feb 1998 13:10:02 -0800 (PST) Message-Id: <199802152110.NAA22724@hub.freebsd.org> To: freebsd-ports Cc: From: Brian Handy Subject: Re: ports/5756: Upgrade: a2ps --> 4.9.9 Reply-To: Brian Handy Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/5756; it has been noted by GNATS. From: Brian Handy To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/5756: Upgrade: a2ps --> 4.9.9 Date: Sun, 15 Feb 1998 13:08:51 -0800 (PST) ARRGH...caught by PORTLINT. I've regenerated the diff, what follows is against the original 4.9.8 port. Fixed up the makefile and added some info-dir stuff in the PLIST. (I am only "mostly sure" I got the install-info stuff right, it seems to install and de-install properly.) Sorry, Brian -- diff -ru a2ps.orig/Makefile a2ps/Makefile --- a2ps.orig/Makefile Mon Nov 10 03:23:14 1997 +++ a2ps/Makefile Sun Feb 15 12:45:52 1998 @@ -1,21 +1,19 @@ # New ports collection makefile for: a2ps -# Version required: 4.9.7 +# Version required: 4.9.9 # Date created: 18 August 1997 # Whom: Chuck Robey (chuckr@freebsd.org) # # $Id: Makefile,v 1.11 1997/11/10 11:23:14 asami Exp $ # -DISTNAME= a2ps -PKGNAME= a2ps-${PAPERSIZE}-4.9.8 +DISTNAME= a2ps-4.9.9 +PKGNAME= a2ps-${PAPERSIZE}-4.9.9 CATEGORIES= print MASTER_SITES= http://www-inf.enst.fr/~demaille/ftp/a2ps/ -DISTFILES= a2ps-4.9.8.tar.gz MAINTAINER= chuckr@FreeBSD.org MANUAL_PACKAGE_BUILD= PAPERSIZE has to be set to Letter A4 -WRKSRC= $(WRKDIR)/$(DISTNAME)-4.9.8 GNU_CONFIGURE= yes MAN1= a2ps.1 ogonkify.1 @@ -23,7 +21,6 @@ STRIP= CONFIGURE_ARGS= --with-medium=$(PAPERSIZE) - Letter:: $(MAKE) PAPERSIZE=Letter @@ -43,34 +40,34 @@ $(MAKE) PAPERSIZE=A4 pre-build: - /usr/bin/touch $(WRKSRC)/doc/*.info - /usr/bin/touch $(WRKSRC)/doc/*.dvi + ${TOUCH} $(WRKSRC)/doc/*.info + ${TOUCH} $(WRKSRC)/doc/*.dvi pre-configure: .if empty(PAPERSIZE) - @echo - @echo "PAPERSIZE not specified." - @echo - @echo "Must specify PAPERSIZE as one of A4, Letter, or Letterdj, either" - @echo "using setenv, or via Makefile targets of the same name. Note" - @echo "that each PAPERSIZE has a leading capital letter, and Letterdj" - @echo "allows a slightly larger margins for DeskJets." + @${ECHO} + @${ECHO} "PAPERSIZE not specified." + @${ECHO} + @${ECHO} "Must specify PAPERSIZE as one of A4, Letter, or Letterdj, either" + @${ECHO} "using setenv, or via Makefile targets of the same name. Note" + @${ECHO} "that each PAPERSIZE has a leading capital letter, and Letterdj" + @${ECHO} "allows a slightly larger margins for DeskJets." @false .elif $(PAPERSIZE)!=A4 && $(PAPERSIZE)!=Letter && $(PAPERSIZE)!=Letterdj - @echo - @echo "PAPERSIZE incorrect value: $(PAPERSIZE)." - @echo - @echo "Must specify PAPERSIZE as one of A4, Letter, or Letterdj, either" - @echo "using setenv, or via Makefile targets of the same name. Note" - @echo "that each PAPERSIZE has a leading capital letter, and Letterdj" - @echo "allows a slightly larger margins for DeskJets." + @${ECHO} + @${ECHO} "PAPERSIZE incorrect value: $(PAPERSIZE)." + @${ECHO} + @${ECHO} "Must specify PAPERSIZE as one of A4, Letter, or Letterdj, either" + @${ECHO} "using setenv, or via Makefile targets of the same name. Note" + @${ECHO} "that each PAPERSIZE has a leading capital letter, and Letterdj" + @${ECHO} "allows a slightly larger margins for DeskJets." @false .endif - echo $(PAPERSIZE) > $(WRKDIR)/.media + ${ECHO} $(PAPERSIZE) > $(WRKDIR)/.media .include .if exists($(WRKDIR)/.media) PAPERSIZE= -PAPERSIZE!= cat $(WRKDIR)/.media +PAPERSIZE!= ${CAT} $(WRKDIR)/.media .endif diff -ru a2ps.orig/files/md5 a2ps/files/md5 --- a2ps.orig/files/md5 Fri Oct 10 19:57:18 1997 +++ a2ps/files/md5 Sun Feb 15 12:30:08 1998 @@ -1 +1 @@ -MD5 (a2ps-4.9.8.tar.gz) = f03cbe4ce07942974279be125b2b9e02 +MD5 (a2ps-4.9.9.tar.gz) = 17e3d399d1ef6c05130ebe8e8414e2e6 diff -ru a2ps.orig/pkg/PLIST a2ps/pkg/PLIST --- a2ps.orig/pkg/PLIST Fri Oct 10 19:57:19 1997 +++ a2ps/pkg/PLIST Sun Feb 15 13:02:59 1998 @@ -1,3 +1,4 @@ +share/a2ps/README share/a2ps/ps/base.ps share/a2ps/ps/bw.pro share/a2ps/ps/gray.pro @@ -99,18 +100,24 @@ share/a2ps/sheets/ada.ssh share/a2ps/sheets/cpp.ssh share/a2ps/sheets/c.ssh +share/a2ps/sheets/csh.ssh share/a2ps/sheets/caml.ssh share/a2ps/sheets/chlog.ssh share/a2ps/sheets/claire.ssh share/a2ps/sheets/clisp.ssh share/a2ps/sheets/coqv.ssh share/a2ps/sheets/eiffel.ssh +share/a2ps/sheets/elisp.ssh +share/a2ps/sheets/eps.ssh +share/a2ps/sheets/gnuc.ssh share/a2ps/sheets/fortran.ssh share/a2ps/sheets/initora.ssh share/a2ps/sheets/java.ssh share/a2ps/sheets/lace.ssh share/a2ps/sheets/lex.ssh +share/a2ps/sheets/make.ssh share/a2ps/sheets/mail.ssh +share/a2ps/sheets/modula2.ssh share/a2ps/sheets/modula3.ssh share/a2ps/sheets/o2c.ssh share/a2ps/sheets/oberon.ssh @@ -120,6 +127,7 @@ share/a2ps/sheets/pascal.ssh share/a2ps/sheets/perl.ssh share/a2ps/sheets/plsql.ssh +share/a2ps/sheets/ppd.ssh share/a2ps/sheets/ps.ssh share/a2ps/sheets/pre.ssh share/a2ps/sheets/prolog.ssh @@ -132,6 +140,7 @@ share/a2ps/sheets/sql.ssh share/a2ps/sheets/sql92.ssh share/a2ps/sheets/ssh.ssh +share/a2ps/sheets/texinfo.ssh share/a2ps/sheets/tcl.ssh share/a2ps/sheets/tex.ssh share/a2ps/sheets/tk.ssh @@ -155,23 +164,39 @@ share/a2ps/encoding/latin5.edf share/a2ps/encoding/latin6.edf share/a2ps/encoding/mac.edf -share/emacs/site-lisp/make-regexp.el -share/emacs/site-lisp/a2ps.el -lib/liba2ps.so.0.2 +share/a2ps/printers/README +share/a2ps/printers/level1.ppd +share/a2ps/printers/level2.ppd +share/a2ps/printers/printers.map +lib/liba2ps.so.0.3 @exec /sbin/ldconfig -m %B lib/liba2ps.a etc/a2ps.cfg bin/ogonkify bin/a2ps bin/composite +@unexec install-info --delete %D/info/a2ps.info %D/info/dir +@unexec install-info --delete %D/info/ogonkify.info %D/info/dir +@unexec install-info --delete %D/info/regex.info %D/info/dir info/a2ps.info info/ogonkify.info info/a2ps.info-1 info/a2ps.info-2 info/a2ps.info-3 +info/a2ps.info-4 info/regex.info info/regex.info-1 info/regex.info-2 info/regex.info-3 +@exec [ -f %D/info/dir ] || sed -ne '1,/Menu:/p' /usr/share/info/dir > %D/info/dir +@exec install-info %D/info/a2ps.info %D/info/dir +@exec install-info %D/info/ogonkify.info %D/info/dir +@exec install-info %D/info/regex.info %D/info/dir man/man1/a2ps.1.gz man/man1/ogonkify.1.gz +@dirrm share/a2ps/afm +@dirrm share/a2ps/encoding +@dirrm share/a2ps/printers +@dirrm share/a2ps/ps +@dirrm share/a2ps/sheets +@dirrm share/a2ps To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 13:25:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA24145 for freebsd-ports-outgoing; Sun, 15 Feb 1998 13:25:47 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA24099; Sun, 15 Feb 1998 13:25:36 -0800 (PST) (envelope-from steve) Date: Sun, 15 Feb 1998 13:25:36 -0800 (PST) From: Steve Price Message-Id: <199802152125.NAA24099@hub.freebsd.org> To: handy@lambic.spasci.com, steve, freebsd-ports Subject: Re: ports/5756 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade: a2ps --> 4.9.9 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Feb 15 13:25:09 PST 1998 State-Changed-Why: Update committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 14:00:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA28022 for freebsd-ports-outgoing; Sun, 15 Feb 1998 14:00:06 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27999; Sun, 15 Feb 1998 14:00:02 -0800 (PST) (envelope-from gnats) Date: Sun, 15 Feb 1998 14:00:02 -0800 (PST) Message-Id: <199802152200.OAA27999@hub.freebsd.org> To: freebsd-ports Cc: From: Stefan Esser Subject: Re: ports/5743: kdelib port not building Reply-To: Stefan Esser Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/5743; it has been noted by GNATS. From: Stefan Esser To: kkennawa@physics.adelaide.edu.au, freebsd-gnats-submit@freebsd.org Cc: Stefan Esser Subject: Re: ports/5743: kdelib port not building Date: Sun, 15 Feb 1998 15:52:37 +0100 On 1998-02-14 07:18 -0800, kkennawa@physics.adelaide.edu.au wrote: > >Description: > the kdelib port is not locating the qt 1.3 stuff correctly, > despite my having just installed the qt port. > configure dies with the following: > > checking for QT... configure: error: QT-1.3 (libraries) not found. Please check your installation! > * > > The script seems to check for qmovie.h in a variety of directories, the qt port put mine in: > > [morden|root] 1:49 /usr/X11R6/include/X11/qt ls -l qmovie.h > -r--r--r-- 1 bin bin 2202 Feb 15 01:30 qmovie.h Sorry, but I can't reproduce this problem: checking for X... libraries /usr/X11R6/lib -L/usr/local/lib, headers /usr/X11R6/include -I/usr/local/include checking for QT... libraries /usr/X11R6/lib, headers /usr/X11R6/include/X11/qt checking if Qt compiles without flags... yes > cd /usr/ports/x11/kdelibs && make Please send output from "nohup make clean all &", and I'll check what's going on. Bonus points for sending "config.cache" created in work/kdelibs by configure. Regards, STefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 15:05:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA08509 for freebsd-ports-outgoing; Sun, 15 Feb 1998 15:05:08 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA08475; Sun, 15 Feb 1998 15:05:02 -0800 (PST) (envelope-from steve) Date: Sun, 15 Feb 1998 15:05:02 -0800 (PST) From: Steve Price Message-Id: <199802152305.PAA08475@hub.freebsd.org> To: dphi@ix.netcom.com, steve, freebsd-ports Subject: Re: ports/5738 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: perl share libs in wrong place when installing latest_tar.gz (*.ph files from h2ph) State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Feb 15 15:04:17 PST 1998 State-Changed-Why: h2ph is now run as a part of the post-install target. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 15:25:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA12352 for freebsd-ports-outgoing; Sun, 15 Feb 1998 15:25:40 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from sag.space.lockheed.com (sag.space.lockheed.com [192.68.162.134]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id PAA12322 for ; Sun, 15 Feb 1998 15:25:30 -0800 (PST) (envelope-from handy@sag.space.lockheed.com) Received: from localhost by sag.space.lockheed.com; (5.65v3.2/1.1.8.2/21Nov95-0423PM) id AA13570; Sun, 15 Feb 1998 15:25:32 -0800 Date: Sun, 15 Feb 1998 15:25:32 -0800 (PST) From: Brian Handy To: ports@FreeBSD.ORG Subject: Motif and XFree86? Message-Id: X-Files: The truth is out there Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hey folks, I've got a question or two on the Xig stuff that maybe somebody here can help with. I've got: (1) Xig AcceleratedX server (2) Xig Motif Now...I've already seen how the Xaccel server can trash my XFree86 tree so I can't compile ports anymore. (Instances of "GNUmalloc" seem to have been sprinkled somewhere in my tree, and I think that happened to something in /usr/X11R6/lib/X11/config...but I haven't verified that. (I'm going on Satoshi's comments claiming this is the case.) So, I already have a buggered XF86 tree. Can I fix this by copying the config/cf/* files from the extracted XFree86 port over that? Also, next I want to install Motif. I have no need for mwm or any of that stuff, I only want to be able to compile Motif Applications. This is a two-headed question...(a) Can I just install the development stuff, and (b) how do I fix the conf files after this? I'm asking here rather than Xig because it seems clear that the ports building machine has found a way around all this. What's the trick? Thanks, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 16:40:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25110 for freebsd-ports-outgoing; Sun, 15 Feb 1998 16:40:19 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25067; Sun, 15 Feb 1998 16:40:07 -0800 (PST) (envelope-from gnats) Date: Sun, 15 Feb 1998 16:40:07 -0800 (PST) Message-Id: <199802160040.QAA25067@hub.freebsd.org> To: freebsd-ports Cc: From: Kris Kennaway Subject: Re: ports/5743: kdelib port not building Reply-To: Kris Kennaway Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/5743; it has been noted by GNATS. From: Kris Kennaway To: Stefan Esser Cc: freebsd-gnats-submit@freebsd.org, Stefan Esser Subject: Re: ports/5743: kdelib port not building Date: Mon, 16 Feb 1998 11:06:13 +1030 (CST) On Sun, 15 Feb 1998, Stefan Esser wrote: > On 1998-02-14 07:18 -0800, kkennawa@physics.adelaide.edu.au wrote: > Please send output from "nohup make clean all &", > and I'll check what's going on. Bonus points for > sending "config.cache" created in work/kdelibs by > configure. No problems, I'll forward those to you later when I get home from work. Thanks for your prompt reply, Kris > > Regards, STefan > WOWBO /\ . Through the darkness of future past, /\ . BWOWB OBWOW /##\/#\ The Magician longs to see. /##\/#\ BOBWO WBOBW / \ One chance out between two worlds, / \ OWBOB WOWBO / \ Fire, Walk with me! / \ BWOWB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 17:10:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA29160 for freebsd-ports-outgoing; Sun, 15 Feb 1998 17:10:02 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA29152; Sun, 15 Feb 1998 17:10:01 -0800 (PST) (envelope-from gnats) Received: from lambic.spasci.com (lambic.space.lockheed.com [192.68.162.69]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA28034 for ; Sun, 15 Feb 1998 17:00:10 -0800 (PST) (envelope-from handy@lambic.spasci.com) Received: (from handy@localhost) by lambic.spasci.com (8.8.8/8.8.7) id RAA02706; Sun, 15 Feb 1998 17:00:04 -0800 (PST) (envelope-from handy) Message-Id: <199802160100.RAA02706@lambic.spasci.com> Date: Sun, 15 Feb 1998 17:00:04 -0800 (PST) From: Brian Handy Reply-To: handy@lambic.spasci.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5757: DDD upgrade: 2.1.1 --> 2.2.3 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5757 >Category: ports >Synopsis: DDD upgrade: 2.1.1 --> 2.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: Sun Feb 15 17:10:00 PST 1998 >Last-Modified: >Originator: Brian Handy >Organization: MSU - Bozeman >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: Just got Motif for my system, so *naturally* I have to try to compile something...I try DDD, and the version on the MASTER_SITE has been upgraded. Also a slight PORTLINT. >How-To-Repeat: >Fix: diff -ruN ddd.orig/Makefile ddd/Makefile --- ddd.orig/Makefile Sun Feb 15 16:56:02 1998 +++ ddd/Makefile Sun Feb 15 16:55:42 1998 @@ -1,13 +1,13 @@ # ex:ts=8 # Ports collection makefile for: ddd -# Version required: 2.0 +# Version required: 2.2.3 # Date created: Tue Jan 28, 1997 # Whom: David O'Brien (obrien@FreeBSD.org) # # $Id: Makefile,v 1.4 1997/06/23 05:43:26 obrien Exp $ # -DISTNAME= ddd-2.1.1 +DISTNAME= ddd-2.2.3 CATEGORIES= devel MASTER_SITES= ftp://ftp.ips.cs.tu-bs.de/pub/local/softech/ddd/ \ ftp://richb-pc.acc.qc.edu/pub/ddd/ \ @@ -23,12 +23,11 @@ MAN1= ddd.1 post-configure: - echo "LIBXM = ${MOTIFLIB}" >> ${WRKSRC}/ddd/Makefile + ${ECHO} "LIBXM = ${MOTIFLIB}" >> ${WRKSRC}/ddd/Makefile post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${PREFIX}/share/doc/ddd - ${INSTALL_DATA} ${WRKSRC}/FAQ ${PREFIX}/share/doc/ddd ${INSTALL_DATA} ${WRKSRC}/PROBLEMS ${PREFIX}/share/doc/ddd ${INSTALL_DATA} ${WRKSRC}/doc/ddd-paper.ps ${PREFIX}/share/doc/ddd ${INSTALL_DATA} ${WRKSRC}/doc/ddd.man.ps ${PREFIX}/share/doc/ddd diff -ruN ddd.orig/files/md5 ddd/files/md5 --- ddd.orig/files/md5 Sun Feb 15 16:56:02 1998 +++ ddd/files/md5 Sun Feb 15 16:32:39 1998 @@ -1 +1 @@ -MD5 (ddd-2.1.1.tar.gz) = 490bc5d3d7cc0bed28149d43e8472e1d +MD5 (ddd-2.2.3.tar.gz) = 40cecf4fa0db57a7b999fc90dfe6020e diff -ruN ddd.orig/patches/patch-01 ddd/patches/patch-01 --- ddd.orig/patches/patch-01 Sun Feb 15 16:56:02 1998 +++ ddd/patches/patch-01 Sun Feb 15 16:36:17 1998 @@ -1,12 +1,12 @@ ---- ddd/Ddd.in.orig Wed May 7 05:19:43 1997 -+++ ddd/Ddd.in Thu May 22 19:49:46 1997 -@@ -167,7 +167,8 @@ +--- ddd/Ddd.in.orig Sun Feb 15 16:35:41 1998 ++++ ddd/Ddd.in Sun Feb 15 16:35:56 1998 +@@ -197,7 +197,8 @@ ! Paper size, in format WIDTH x HEIGHT. (Default: A4). --Ddd*paperSize: 210mm x 297mm -+!Ddd*paperSize: 210mm x 297mm -+Ddd*paperSize: 8.5" x 11" +-@Ddd@*paperSize: 210mm x 297mm ++!@Ddd@*paperSize: 210mm x 297mm ++@Ddd@*paperSize: 8.5" x 11" ! The `edit' command to invoke an editor on the specific file. diff -ruN ddd.orig/pkg/PLIST ddd/pkg/PLIST --- ddd.orig/pkg/PLIST Sun Feb 15 16:56:02 1998 +++ ddd/pkg/PLIST Sun Feb 15 16:53:26 1998 @@ -1,6 +1,5 @@ bin/ddd man/man1/ddd.1.gz -share/doc/ddd/FAQ share/doc/ddd/PROBLEMS share/doc/ddd/ddd-paper.ps.gz share/doc/ddd/ddd.man.ps.gz >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 18:32:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA07925 for freebsd-ports-outgoing; Sun, 15 Feb 1998 18:32:05 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA07894; Sun, 15 Feb 1998 18:31:56 -0800 (PST) (envelope-from steve) Date: Sun, 15 Feb 1998 18:31:56 -0800 (PST) From: Steve Price Message-Id: <199802160231.SAA07894@hub.freebsd.org> To: scole@aracnet.com, steve, freebsd-ports Subject: Re: ports/5617 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port for FreeBSD called pppload State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Feb 15 18:31:23 PST 1998 State-Changed-Why: New port created. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 21:22:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA02856 for freebsd-ports-outgoing; Sun, 15 Feb 1998 21:22:41 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from goofy.bangkok.thai (vanc-max1-24.aracnet.com [209.95.33.74]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id VAA02849 for ; Sun, 15 Feb 1998 21:22:36 -0800 (PST) (envelope-from scole@aracnet.com) Received: (qmail 18680 invoked by uid 1000); 16 Feb 1998 05:22:15 -0000 To: Steve Price Cc: steve@hub.freebsd.org, freebsd-ports@hub.freebsd.org Subject: Re: ports/5617 References: <199802160231.SAA07894@hub.freebsd.org> From: scole Date: 15 Feb 1998 21:22:15 -0800 In-Reply-To: Steve Price's message of "Sun, 15 Feb 1998 18:31:56 -0800 (PST)" Message-ID: <87btw8t988.fsf@goofy.bangkok.thai> Lines: 61 X-Mailer: Gnus v5.5/XEmacs 20.3 - "Vatican City" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Steve Price writes: > Synopsis: new port for FreeBSD called pppload > > State-Changed-From-To: open-closed > State-Changed-By: steve > State-Changed-When: Sun Feb 15 18:31:23 PST 1998 > State-Changed-Why: > New port created. Thanks! I tested the new port of pppload and there seems to be some sort of problem, at least on my system. It fails to install the man page and exits. I could not figure out for the life of me why it is trying to install the man page in /usr/local/man//man1 instead of /usr/local/man/man1. Here is what happens when I type make install: >> pppload-1.0.tar.gz doesn't seem to exist on this system. >> Attempting to fetch from http://sunsite.unc.edu/pub/Linux/system/network/serial/ppp/. Receiving pppload-1.0.tar.gz (15000 bytes): 100% 15000 bytes transfered in 4.2 seconds (3.47 Kbytes/s) >> Checksum OK for pppload-1.0.tar.gz. ===> Extracting for pppload-1.0 ===> pppload-1.0 depends on executable: moc - found ===> pppload-1.0 depends on executable: gmake - found ===> pppload-1.0 depends on shared library: qt - found ===> Patching for pppload-1.0 ===> Applying FreeBSD patches for pppload-1.0 ===> Configuring for pppload-1.0 ===> Building for pppload-1.0 g++ -c -pipe -O2 -Wall -I/usr/X11R6/include/X11/qt pppload.C g++ -c -pipe -O2 -Wall -I/usr/X11R6/include/X11/qt PPPStats.C g++ -c -pipe -O2 -Wall -I/usr/X11R6/include/X11/qt MainWindow.C g++ -c -pipe -O2 -Wall -I/usr/X11R6/include/X11/qt Options.C moc -o mPPPStats.C PPPStats.H g++ -c -pipe -O2 -Wall -I/usr/X11R6/include/X11/qt mPPPStats.C moc -o mMainWindow.C MainWindow.H g++ -c -pipe -O2 -Wall -I/usr/X11R6/include/X11/qt mMainWindow.C g++ pppload.o PPPStats.o MainWindow.o Options.o mPPPStats.o mMainWindow.o -o pppload -L/usr/X11R6/lib -lqt ===> Installing for pppload-1.0 ===> pppload-1.0 depends on shared library: qt - found gmake: Nothing to be done for `install'. ===> Compressing manual pages for pppload-1.0 /usr/local/man//man1/pppload.1: No such file or directory *** Error code 1 Stop. *** Error code 1 Stop. Sorry I couldn't fix this myself. Sean Cole scole@aracnet.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 21:50:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06545 for freebsd-ports-outgoing; Sun, 15 Feb 1998 21:50:18 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06515; Sun, 15 Feb 1998 21:50:09 -0800 (PST) (envelope-from gnats) Received: from noether.blah.org (mp-7-9.mp.usyd.edu.au [129.78.57.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA05980 for ; Sun, 15 Feb 1998 21:46:11 -0800 (PST) (envelope-from ada@not-enough.bandwidth.org) Received: (from ada@localhost) by noether.blah.org (8.8.8/8.8.8) id QAA18237; Mon, 16 Feb 1998 16:45:02 +1100 (EST) Message-Id: <199802160545.QAA18237@noether.blah.org> Date: Mon, 16 Feb 1998 16:45:02 +1100 (EST) From: Ada Reply-To: ada@not-enough.bandwidth.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5759: updated freeciv port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5759 >Category: ports >Synopsis: updated freeciv port >Confidential: yes >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Feb 15 21:50:02 PST 1998 >Last-Modified: >Originator: Ada Lim >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: Freeciv port updated to 1.51 >How-To-Repeat: >Fix: new port in ftp.freebsd.org/pub/FreeBSD/incoming/freeciv.tar.gz >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Feb 15 22:25:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA13737 for freebsd-ports-outgoing; Sun, 15 Feb 1998 22:25:43 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca37-18.ix.netcom.com [207.93.141.210]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA13731; Sun, 15 Feb 1998 22:25:36 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id WAA08342; Sun, 15 Feb 1998 22:25:19 -0800 (PST) Date: Sun, 15 Feb 1998 22:25:19 -0800 (PST) Message-Id: <199802160625.WAA08342@silvia.HIP.Berkeley.EDU> To: andreas@klemm.gtn.com CC: skynyrd@opus.cts.cwu.edu, freebsd-ports@FreeBSD.ORG, gpalmer@FreeBSD.ORG In-reply-to: <19980214180849.43287@klemm.gtn.com> (message from Andreas Klemm on Sat, 14 Feb 1998 18:08:49 +0100) Subject: Re: Amanda 2.4b6 port From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Hi Satoshi ! * * The new amanda stuff is really cool, we should include it * but keep the old one for compatibility reasons, if people * need it to setup backup clients, where the server runs the older * amanda version. * * Time for a repository copy ... ;-) Ok, done. Copied everything except for the Attic. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 00:03:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA28218 for freebsd-ports-outgoing; Mon, 16 Feb 1998 00:03:15 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA28200; Mon, 16 Feb 1998 00:03:07 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA05583; Mon, 16 Feb 1998 00:02:54 -0800 (PST) Date: Mon, 16 Feb 1998 00:02:54 -0800 (PST) Message-Id: <199802160802.AAA05583@freefall.freebsd.org> To: ada@not-enough.bandwidth.org, tg@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5759 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: updated freeciv port State-Changed-From-To: open-closed State-Changed-By: tg State-Changed-When: Sun Feb 15 23:58:54 PST 1998 State-Changed-Why: Sorry, Brian Handy beat you to it (PR 5749). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 00:25:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA00106 for freebsd-ports-outgoing; Mon, 16 Feb 1998 00:25:53 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca37-18.ix.netcom.com [207.93.141.210]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA29999 for ; Mon, 16 Feb 1998 00:25:51 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA10523; Mon, 16 Feb 1998 00:25:40 -0800 (PST) Date: Mon, 16 Feb 1998 00:25:40 -0800 (PST) Message-Id: <199802160825.AAA10523@silvia.HIP.Berkeley.EDU> To: sprice@hiwaay.net CC: eivind@yes.no, freebsd-ports@FreeBSD.ORG In-reply-to: <34E75347.284797A9@hiwaay.net> (message from Steve Price on Sun, 15 Feb 1998 14:42:47 -0600) Subject: Re: cvs commit: ports/editors/xemacs20 Makefile From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * This would be okay with me. It really depends on how Satoshi builds * the package tree. If he simply does * * cd /usr/ports && make package * * then this should work. Satoshi? Please use the variable "PACKAGE_BUILDING" instead, that's what I and the packages-current-buildin' dudes use. (Packages are not necessarily built by calling "package", so "if make(package)" is not really approprate.) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 00:49:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA02360 for freebsd-ports-outgoing; Mon, 16 Feb 1998 00:49:57 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca37-18.ix.netcom.com [207.93.141.210]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA02353 for ; Mon, 16 Feb 1998 00:49:54 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA10596; Mon, 16 Feb 1998 00:49:46 -0800 (PST) Date: Mon, 16 Feb 1998 00:49:46 -0800 (PST) Message-Id: <199802160849.AAA10596@silvia.HIP.Berkeley.EDU> To: handy@sag.space.lockheed.com CC: ports@FreeBSD.ORG In-reply-to: (message from Brian Handy on Sun, 15 Feb 1998 15:25:32 -0800 (PST)) Subject: Re: Motif and XFree86? From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Hey folks, * * I've got a question or two on the Xig stuff that maybe somebody here can * help with. * * I've got: * (1) Xig AcceleratedX server * (2) Xig Motif * * Now...I've already seen how the Xaccel server can trash my XFree86 tree so * I can't compile ports anymore. (Instances of "GNUmalloc" seem to have * been sprinkled somewhere in my tree, and I think that happened to * something in /usr/X11R6/lib/X11/config...but I haven't verified that. * (I'm going on Satoshi's comments claiming this is the case.) * * So, I already have a buggered XF86 tree. Can I fix this by copying the * config/cf/* files from the extracted XFree86 port over that? Yes. Move the old directory out of the way first though, just in case you have something you want to get back. * Also, next I want to install Motif. I have no need for mwm or any of that * stuff, I only want to be able to compile Motif Applications. This is a * two-headed question...(a) Can I just install the development stuff, and No idea if their installation script will let you do this. I recommend you unpack it elsewhere, and just copy the shared libraries and X11/include/Xm. * (b) how do I fix the conf files after this? If you mean how to be able to use ports that require Motif, you don't need to do anything except uncommenting HAVE_MOTIF in /etc/make.conf. (And that's the whole point of our mechanism -- it doesn't depend on any ideas of the "correct" set of macros of a particular vendor....) * I'm asking here rather than Xig because it seems clear that the ports * building machine has found a way around all this. What's the trick? Just don't use their config files, and you'll be happy. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 00:52:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA02614 for freebsd-ports-outgoing; Mon, 16 Feb 1998 00:52:29 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA02604; Mon, 16 Feb 1998 00:52:21 -0800 (PST) (envelope-from tg@FreeBSD.org) From: Thomas Gellekum Received: (from tg@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA05749; Mon, 16 Feb 1998 00:52:07 -0800 (PST) Date: Mon, 16 Feb 1998 00:52:07 -0800 (PST) Message-Id: <199802160852.AAA05749@freefall.freebsd.org> To: tg@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, obrien@FreeBSD.ORG Subject: Re: ports/5757 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: DDD upgrade: 2.1.1 --> 2.2.3 Responsible-Changed-From-To: freebsd-ports->obrien Responsible-Changed-By: tg Responsible-Changed-When: Mon Feb 16 00:50:44 PST 1998 Responsible-Changed-Why: David is the maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 01:00:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA03489 for freebsd-ports-outgoing; Mon, 16 Feb 1998 01:00:03 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA03480; Mon, 16 Feb 1998 01:00:02 -0800 (PST) (envelope-from gnats) Received: from rigel.opt.phys.waseda.ac.jp (root@rigel.opt.phys.waseda.ac.jp [133.9.185.167]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA03298 for ; Mon, 16 Feb 1998 00:57:22 -0800 (PST) (envelope-from kuriyama@opt.phys.waseda.ac.jp) Received: from moon.opt.phys.waseda.ac.jp (pc023083.ppp.waseda.ac.jp [133.9.23.83]) by rigel.opt.phys.waseda.ac.jp (8.8.8/3.6W/rigel-0.3) with ESMTP id AAA11608 for ; Sat, 14 Feb 1998 00:01:50 +0900 (JST) Received: (from junk@localhost) by moon.opt.phys.waseda.ac.jp (8.8.5/3.5Wpl4/moon-0.7) id XAA10763; Fri, 13 Feb 1998 23:07:25 +0900 (JST) Message-Id: <199802131407.XAA10763@moon.opt.phys.waseda.ac.jp> Date: Fri, 13 Feb 1998 23:07:25 +0900 (JST) From: Jun Kuriyama Reply-To: kuriyama@opt.phys.waseda.ac.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5761: update ports/news/inn Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5761 >Category: ports >Synopsis: update ports/news/inn >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 16 01:00:01 PST 1998 >Last-Modified: >Originator: Jun Kuriyama >Organization: Waseda Univ., Japan >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: FreeBSD moon.opt.phys.waseda.ac.jp 2.2.2-RELEASE FreeBSD 2.2.2-RELEASE #5: Sat Nov 29 14:35:53 JST 1997 junk@moon.opt.phys.waseda.ac.jp:/usr/src/sys/compile/MOON i386 >Description: 1) strip binaries 2) fix PERL5INC, PERL5LIB path '5.004' to '5.00404' I put diff file and new patch-ai in >Fix: section. This diff was made from ports-current at Feb 13th. >How-To-Repeat: >Fix: begin 644 inn.tgz M'XL(`+%1Y#0``^V9:V_:2!2&\Q7_BI,4567!5VP(;M.E34@7B4($K5JI6VV- M/8`W9NP=VR25^N/WC&V"MYMR23>)I>5(8E M&[OT(7`>VKK4(=CSA_O3GMP`M=G`_@,3Y]"]JC;/ST1NW(<,MGS;6Y8SD@S#-DMW[<$">, MD''HR(:D*+I\.AAVMBDU!>GM4BP2\_^GX-7_&'R)OD6YNZ'?!H_=:UL1O)2C M><#_)!R14D@'O8['T:CB\&@=WA8+?/(67=8G0J/ M/8E_P@(KLF>BY=YG'>OU7]7QZ8W^-[0FUW^]4=_K_T,8E\T)\VE$J!/*;ZU+ MPL6Z=,Y<."=CX,K8,!7=K*O`U3(1T/7I-0+0\Z]$CRR(A^L/=H/G@65'*/2A)$#Y69=/L(I9*KE\H1#$4OG9Z+=.KUII@1IPL@L M9`0VW<(#N'4*C$BKT(^$BNP9AX M_E4-W!`"YH^ML?<5IK[O`*%^/)VA:CE);GR;I3)BM:/!^^%I9U1)MJCD.G`9 MV5)HUR3.5-;(J:S6JFEU5-DTW%)ES_)ZXM.%8T6\,Y;NUJK[4Z)[VR#)@Z7M MP,=(XA0)RE\0=@/&(\6`FUAAQ.8(ECK%@)HR$LQP'OGL*ZX.JT@QZ.8XR_C$ M6.!`6_G%8;MIN5RD&'1\3\3(7S&)L>ERD6+0!2RFJ\;+QQZ-[T%6FK%E7V[8 MU&NYM69M\FRUT7*KC:[6ZGRU2<,[K#86LV?)9,N<8HR69.?%)3US"D(53R;V MS**(E7G%X+(7T7+7FGG%X.+C-VVOI5<,+DJC`(]%J)*I4PPJ/`]=S]TH.1AQ MISA4V>"Z<8M!%J).ICPD-$OYV+;GM:T(U^=UA M<]0?7IQ5^/*`%3WB]M3V_/&8,`P)SG3L`C8'<0*_2#YF?H7%)DW'[QRW;+D? M)N4-9YA&;F?9:M5:4$U^MV^X;K_/VVV76]![&[U86E-IO.R=?GEW-?&ONPK=OD'Q$B^VQG#ZJ M@/829(][6UO>_N?VM_K=[Z2`"@``"AI ` end >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 01:10:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA04242 for freebsd-ports-outgoing; Mon, 16 Feb 1998 01:10:04 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA04215; Mon, 16 Feb 1998 01:10:02 -0800 (PST) (envelope-from gnats) Date: Mon, 16 Feb 1998 01:10:02 -0800 (PST) Message-Id: <199802160910.BAA04215@hub.freebsd.org> To: freebsd-ports Cc: From: asami@cs.berkeley.edu (Satoshi Asami) Subject: Re: ports/5617 Reply-To: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/5617; it has been noted by GNATS. From: asami@cs.berkeley.edu (Satoshi Asami) To: scole@aracnet.com Cc: steve@freebsd.org, steve@hub.freebsd.org, freebsd-gnats-submit@hub.freebsd.org Subject: Re: ports/5617 Date: Mon, 16 Feb 1998 01:01:37 -0800 (PST) * I tested the new port of pppload and there seems to be some sort of * problem, at least on my system. It fails to install the man page and * exits. I could not figure out for the life of me why it is trying * to install the man page in * * /usr/local/man//man1 instead of * /usr/local/man/man1. That's not the problem. An empty path component is equivalent to "." on FreeBSD. * Here is what happens when I type make install: : * ===> Installing for pppload-1.0 * ===> pppload-1.0 depends on shared library: qt - found * gmake: Nothing to be done for `install'. * ===> Compressing manual pages for pppload-1.0 * /usr/local/man//man1/pppload.1: No such file or directory * *** Error code 1 See the line that "gmake" is complaining about. It's just not installing anything at all. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 05:00:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA19443 for freebsd-ports-outgoing; Mon, 16 Feb 1998 05:00:08 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gw.teledigit.se ([193.14.252.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA19308; Mon, 16 Feb 1998 04:59:39 -0800 (PST) (envelope-from robert@callmedia.se) Received: (from smap@localhost) by gw.teledigit.se (8.7.5/8.7.3) id NAA17580; Mon, 16 Feb 1998 13:41:07 +0100 (MET) X-Authentication-Warning: gw.teledigit.se: smap set sender to using -f Received: from unknown(192.168.16.31) by gw.teledigit.se via smap (V1.3) id sma017577; Mon Feb 16 13:40:47 1998 Message-ID: <34E83795.D16BDFD9@callmedia.se> Date: Mon, 16 Feb 1998 13:56:53 +0100 From: Robert Lindgren X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 3.0-971208-SNAP i386) MIME-Version: 1.0 To: se@FreeBSD.ORG CC: ports@FreeBSD.ORG Subject: FreeBSD Port: kdebase-2.1b Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Any body who knows when Kde beta 3 is available for FreeBSD? Is somebody working on it? I hope so Thanx in advance Robert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 05:09:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA21077 for freebsd-ports-outgoing; Mon, 16 Feb 1998 05:09:22 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-51.ix.netcom.com [207.93.143.179]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA21035; Mon, 16 Feb 1998 05:09:14 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id FAA01299; Mon, 16 Feb 1998 05:06:34 -0800 (PST) Date: Mon, 16 Feb 1998 05:06:34 -0800 (PST) Message-Id: <199802161306.FAA01299@silvia.HIP.Berkeley.EDU> To: robert@teledigit.se CC: se@FreeBSD.ORG, ports@FreeBSD.ORG In-reply-to: <34E83795.D16BDFD9@callmedia.se> (message from Robert Lindgren on Mon, 16 Feb 1998 13:56:53 +0100) Subject: Re: FreeBSD Port: kdebase-2.1b From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Any body who knows when Kde beta 3 is available for FreeBSD? Is * somebody working on it? Um, most af the kde ports appear to already be updated to Beta3 in ports-current. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 06:01:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA01539 for freebsd-ports-outgoing; Mon, 16 Feb 1998 06:01:22 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from temida.rejent.poznan.pl ([150.254.162.150]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01072; Mon, 16 Feb 1998 05:59:38 -0800 (PST) (envelope-from bogusz@temida.rejent.poznan.pl) Received: from localhost (bogusz@localhost) by temida.rejent.poznan.pl (8.7.5/8.7.3) with SMTP id NAA28997; Mon, 16 Feb 1998 13:58:19 +0100 (MET) Date: Mon, 16 Feb 1998 13:58:19 +0100 (MET) From: Bogusz Jelinski To: "Justin M. Seger" cc: jseger@hub.freebsd.org, freebsd-ports@hub.freebsd.org Subject: Re: ports/5699 In-Reply-To: <199802151509.HAA15912@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, 15 Feb 1998, Justin M. Seger wrote: > Synopsis: port of rise2 to freebsd > > State-Changed-From-To: open-closed > State-Changed-By: jseger > State-Changed-When: Sun Feb 15 07:08:47 PST 1998 > State-Changed-Why: > This isn't a port. This is a binary that will run on FreeBSD. > Cool! What is a "port" then? Source? You can download the source from ftp://lib.amu.edu.pl/rise2. Cheers, Bogusz To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 08:20:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA03198 for freebsd-ports-outgoing; Mon, 16 Feb 1998 08:20:04 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA03186; Mon, 16 Feb 1998 08:20:02 -0800 (PST) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA01539; Mon, 16 Feb 1998 08:12:39 -0800 (PST) (envelope-from nobody) Message-Id: <199802161612.IAA01539@hub.freebsd.org> Date: Mon, 16 Feb 1998 08:12:39 -0800 (PST) From: murduth@ludd.luth.se To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5763: pgp5 port is broken. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5763 >Category: ports >Synopsis: pgp5 port is broken. >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Feb 16 08:20:01 PST 1998 >Last-Modified: >Originator: Joakim Henriksson >Organization: University of Lulea >Release: CURRENT as of 980215 >Environment: FreeBSD rmstar.campus.luth.se 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Sun Feb 15 18:03:31 CET 1998 murduth@rmstar.campus.luth.se:/usr/src/sys/compile/RMSTAR i386 >Description: The new port pgp5 seems infact to be 2.6.3is (For europeans). Infact diff between /usr/ports/pgp/Makefile and /usr/ports/pgp5/Makefile gives no difference. Someone probably made a mistake with the port. >How-To-Repeat: cd /usr/ports/pgp5 ; make install >Fix: Mark the port as broken. >Audit-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 16 09:20:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19675 for freebsd-ports-outgoing; Mon, 16 Feb 1998 09:20:08 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19658; Mon, 16 Feb 1998 09:20:06 -0800 (PST) (envelope-from gnats) Date: Mon, 16 Feb 1998 09:20:06 -0800 (PST) Message-Id: <199802161720.JAA19658@hub.freebsd.org> To: freebsd-ports Cc: From: Jerry Hicks Subject: Re: ports/5680: crossm68k-1.4 (new port for MC68xxx cross development) Reply-To: Jerry Hicks Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/5680; it has been noted by GNATS. From: Jerry Hicks To: "Pedro F. Giffuni" Cc: freebsd-gnats-submit@freebsd.org Subject: Re: ports/5680: crossm68k-1.4 (new port for MC68xxx cross development) Date: Mon, 16 Feb 1998 11:50:28 -0500 Pedro F. Giffuni wrote: > > The crossgcc FAQ clearly states that gdb should not be built in the same > tree because some directories will collide adversely. Also the correct > way to avoid softlinks is to edit the one-tree.sh script. > Jerry is aware of this problems and I'm sure he'll provide a fix ASAP, > meanwhile please don't commit. Yes... I was out of the office all last week (no email access :( ) I have Pedro's patches and recommendations and will submit an update this week. Cheers, Jerry Hicks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 09:39:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA24567 for freebsd-ports-outgoing; Mon, 16 Feb 1998 09:39:29 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gw.teledigit.se ([193.14.252.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA24399; Mon, 16 Feb 1998 09:38:55 -0800 (PST) (envelope-from robert@callmedia.se) Received: (from smap@localhost) by gw.teledigit.se (8.7.5/8.7.3) id SAA19221; Mon, 16 Feb 1998 18:20:13 +0100 (MET) X-Authentication-Warning: gw.teledigit.se: smap set sender to using -f Received: from unknown(192.168.16.31) by gw.teledigit.se via smap (V1.3) id sma019218; Mon Feb 16 18:20:04 1998 Message-ID: <34E878EB.C724F2BC@callmedia.se> Date: Mon, 16 Feb 1998 18:35:39 +0100 From: Robert Lindgren X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 3.0-971208-SNAP i386) MIME-Version: 1.0 To: se@FreeBSD.ORG CC: ports@FreeBSD.ORG Subject: FreeBSD Port: kdebase-3.1b Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Why am I getting this error message when i try to compile kde beta3: mal-rl# make >> Checksum OK for kdebase-Beta3-1.src.tar.gz. ===> Extracting for kdebase-3.1b ===> kdebase-3.1b depends on executable: moc - found ===> kdebase-3.1b depends on shared library: qt\.1\.3[1-9] - found ===> kdebase-3.1b depends on shared library: gif\.[23]\. - found ===> kdebase-3.1b depends on shared library: jpeg\.[67]\. - found ===> kdebase-3.1b depends on shared library: kdecore\.0\.9[0-9] - found ===> kdebase-3.1b depends on shared library: kdeui\.0\.9[1-9] - found ===> kdebase-3.1b depends on shared library: jscript\.0\.9[0-9] - found ===> kdebase-3.1b depends on shared library: khtmlw\.0\.9[1-9] - found ===> kdebase-3.1b depends on shared library: kfm\.0\.9[0-9] - found ===> kdebase-3.1b depends on shared library: mediatool\.0\.[6-9] - found ===> Patching for kdebase-3.1b ===> Applying FreeBSD patches for kdebase-3.1b 1 out of 1 hunks failed--saving rejects to kcontrol/Makefile.in.rej *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. In Makefile.in.rej is the following: *************** *** 308,312 **** install-data-local: $(mkinstalldirs) $(kde_bindir) ! $(INSTALL_PROGRAM) kcontrol $(kde_bindir)/kcontrol uninstall-local: --- 308,312 ---- install-data-local: $(mkinstalldirs) $(kde_bindir) ! $(INSTALL_SCRIPT) kcontrol $(kde_bindir)/kcontrol uninstall-local: Any body having some ideas? Thanx Robert To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 09:43:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA25723 for freebsd-ports-outgoing; Mon, 16 Feb 1998 09:43:17 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA25714; Mon, 16 Feb 1998 09:43:08 -0800 (PST) (envelope-from markm@FreeBSD.org) From: Mark Murray Received: (from markm@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA01992; Mon, 16 Feb 1998 09:42:51 -0800 (PST) Date: Mon, 16 Feb 1998 09:42:51 -0800 (PST) Message-Id: <199802161742.JAA01992@freefall.freebsd.org> To: murduth@ludd.luth.se, markm@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, markm@FreeBSD.ORG Subject: Re: ports/5763 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pgp5 port is broken. State-Changed-From-To: open-closed State-Changed-By: markm State-Changed-When: Mon Feb 16 08:56:35 PST 1998 State-Changed-Why: This report came through in the 1/2 an hour between the rand my commit. Please wait for the commit message before using goodies you find in the tree. :-) Responsible-Changed-From-To: freebsd-ports->markm Responsible-Changed-By: markm Responsible-Changed-When: Mon Feb 16 08:56:35 PST 1998 Responsible-Changed-Why: My port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 11:51:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA08545 for freebsd-ports-outgoing; Mon, 16 Feb 1998 11:51:53 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cam.grad.kiev.ua (grad-UTC-28k8.ukrtel.net [195.5.25.54]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA08355; Mon, 16 Feb 1998 11:50:41 -0800 (PST) (envelope-from Ruslan@Shevchenko.kiev.ua) Received: from Shevchenko.kiev.ua (localhost [127.0.0.1]) by cam.grad.kiev.ua (8.8.8/8.8.5) with ESMTP id XAA02296; Sun, 15 Feb 1998 23:46:23 +0200 (EET) Message-ID: <34E76223.AACD7850@Shevchenko.kiev.ua> Date: Sun, 15 Feb 1998 23:46:18 +0200 From: Ruslan Shevchenko Reply-To: rssh@grad.kiev.ua X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.5-STABLE i386) MIME-Version: 1.0 To: Jeffrey Hsu CC: freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: ANNOUNCE: TenDRA C/C++ compiler (fwd) References: <199802150328.TAA24430@idiom.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Jeffrey Hsu wrote: > Anyone feel up to a new compiler port? > Just ported it to SCO Open Server (it's differs from SCO 3 for TenDRA). And hacked libio from egcs-current to run with tcc. All patches, I guess, system-independed. (You can get it from: ftp://cam.grad.kiev.ua/pub/libio.tcc.patched.tar.gz ) Patches itself: ftp://cam.grad.kiev.ua/pub/libio.tcc.diff.gz You must compile it by tcc with -D__TCC__ Note, that make file is incomplete, becouse it is part of general configure of egcs, In principle, porting is not very hard, but few aspects: 1. tcc is POSIX ISO compiler. it mean, that we must modify our includes (i.e. /usr/include/*) to be ISO compliant in case __TCC__, and correct handle some TenDRA specific stuff. or write specific includes for TCC ( which, in generally, very bad) So, if we want to create command for tcc porting, We must have something with commit privelegies. 2. It is not included standart C++ library. (Changed libio (streams stuff) we have, STL we can get form hp, so all ok) One question: Anybody know, where exist libio library itself, without gcc ? I want to join to the team, but I have very limited free time. And as saying, we must have commiters, in team, becouse FreeBSD includes are not ISO C. Thanks . > ------- start of forwarded message ------- > Subject: ANNOUNCE: TenDRA C/C++ compiler > From: Robert Andrews ?rca@rivers.dra.hmg.gb? > Newsgroups: comp.lang.c.moderated,comp.lang.c++.moderated,comp.std.c++,comp.compilers > Date: Fri, 13 Feb 1998 16:10:10 GMT > > TenDRA 4.1.1 Release > -------------------- > > The Open Software Systems Group (OSSG) at the UK's Defence and > Evaluation Research Agency (DERA) is making its ANDF-based TenDRA > compiler available as a free, freely exploitable (i.e. not GPL), > public domain, source code release. (The precise terms are > available on the Web site below.) > > The compiler implementation is based on a language-independent and > processor-independent intermediate form, developed by DERA, but now > standardised as the XANDF preliminary standard by The Open Group. > > The purpose of this release is to maximise the value from the public > funds that paid for the development of this compiler. DERA's mission > permits us to take commercial contracts, and if we have the resources > we will try and respond to requests for maintenance or development > services - indeed we are currently providing such services for the > XANDF code generators to a compiler company that plans to sell an > Ada compiler product that also uses XANDF. If any other company > wishes in the future to provide services in support of the TenDRA > technology we would be delighted to assist them in the setting up > of such services. Anyone wishing to discuss commercial services > should contact me at the address below. > > The release can be downloaded from the TenDRA Web site: > > http://alph.dera.gov.uk/TenDRA/ > > or by FTP from alph.dera.gov.uk, from the directory /pub/TenDRA. > The release consists of two components, TenDRA-4.1.1.tar.gz (~3.9MB), > containing the compiler source, and TenDRA-4.1.1-doc.tar.gz (~0.75MB), > containing the HTML documentation (this documentation is also > accessible directly from the Web site). The list of supported > platforms is given at the Web site, and includes most popular Unix > platforms, including SPARC/Solaris and Intel/Linux. Support for NT > is planned, but is not currently available. > > The release software comprises: > > - compiler front-ends for C and C++ (written to the latest draft > ISO standard); > > - compiler back-ends for the supported platforms; > > - tools for creating, displaying and manipulating the XANDF > binary format; > > - descriptions for a number of common APIs used in the compiler's > API checking facilities; > > - compiler generator tools, including a parser generator, used > in the development of the TenDRA compiler. > > The compiler features include: > > - strict checking for conformance to the ISO C and draft ISO > C++ standards, including references to the standard in error > messages; > > - API conformance checking using the TenDRA API descriptions; > > - configurable extra static program checks; > > - configurable support for C and C++ dialect features. > > The C++ front-end has been developed from the draft ISO C++ standard, > and, with a couple of exceptions, supports the complete language. > The current deficiencies are: > > - the current implementation of exception handling imposes a > small run-time overhead even when not used (it can be > disabled however); > > - the automatic inter-module instantiation of templates is not > yet working properly, and has been disabled; > > - certain topics concerned with the timing of destructors are > not currently in line with the draft standard. > > In addition, this release only contains a minimal run-time support > library giving support for language features such as ?new?, > ?exception? and ?typeinfo?. If support for the complete C++ > standard library is required then one of the available freeware > implementations should be used. > > DERA have some funds for further development of the compiler until > April 1998, and will be addressing these issues. Any suggestions on > priorising this work would be welcomed. > > Acknowledgments: > > The development of this compiler was paid for by both the UK's > Ministry of Defence and the Commision of the European Communities > in a project called DEPLOY within their Esprit Programme. Numerous > companies and individuals have contributed to the TenDRA project > during its lifetime, in particular the Open Software Foundation > (now The Open Group) whose original concept ANDF was. > > ----------------------------------------------------------------------- > > Rob Andrews > Principal Scientist > Email: R.Andrews@eris.dera.gov.uk > -- > comp.lang.c.moderated - clcm@plethora.net > ------- end of forwarded message ------- > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message -- @= //RSSH mailto:Ruslan@Shevchenko.Kiev.UA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 11:52:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA08659 for freebsd-ports-outgoing; Mon, 16 Feb 1998 11:52:22 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from news1.gtn.com (news1.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA08530; Mon, 16 Feb 1998 11:51:46 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by news1.gtn.com (8.8.6/8.8.6) with UUCP id TAA25726; Mon, 16 Feb 1998 19:15:12 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.8.8/8.8.7) id SAA22531; Mon, 16 Feb 1998 18:09:57 +0100 (CET) (envelope-from andreas) Message-ID: <19980216180957.08365@klemm.gtn.com> Date: Mon, 16 Feb 1998 18:09:57 +0100 From: Andreas Klemm To: Satoshi Asami Cc: skynyrd@opus.cts.cwu.edu, freebsd-ports@FreeBSD.ORG, gpalmer@FreeBSD.ORG Subject: Re: Amanda 2.4b6 port References: <19980214180849.43287@klemm.gtn.com> <199802160625.WAA08342@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: <199802160625.WAA08342@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Sun, Feb 15, 1998 at 10:25:19PM -0800 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Feb 15, 1998 at 10:25:19PM -0800, Satoshi Asami wrote: > * Hi Satoshi ! > * > * The new amanda stuff is really cool, we should include it > * but keep the old one for compatibility reasons, if people > * need it to setup backup clients, where the server runs the older > * amanda version. > * > * Time for a repository copy ... ;-) > > Ok, done. Copied everything except for the Attic. :) Thats great ... ;-) Who is the committer for this port ? Me ? ;-) -- Andreas Klemm powered by ,,symmetric multiprocessor FreeBSD'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 14:06:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA14604 for freebsd-ports-outgoing; Mon, 16 Feb 1998 14:06:27 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from eac.iafrica.com (196-31-98-118.iafrica.com [196.31.98.118]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA14383; Mon, 16 Feb 1998 14:05:24 -0800 (PST) (envelope-from rnordier@iafrica.com) Received: (from rnordier@localhost) by eac.iafrica.com (8.8.7/8.6.12) id AAA04038; Tue, 17 Feb 1998 00:04:24 +0200 (SAT) From: Robert Nordier Message-Id: <199802162204.AAA04038@eac.iafrica.com> Subject: Re: ANNOUNCE: TenDRA C/C++ compiler (fwd) In-Reply-To: <34E76223.AACD7850@Shevchenko.kiev.ua> from Ruslan Shevchenko at "Feb 15, 98 11:46:18 pm" To: rssh@grad.kiev.ua Date: Tue, 17 Feb 1998 00:04:21 +0200 (SAT) Cc: hsu@idiom.com, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG, rnordier@iafrica.com X-Mailer: ELM [version 2.4ME+ PL31 (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 Ruslan Shevchenko wrote: > Jeffrey Hsu wrote: > > > Anyone feel up to a new compiler port? > > > > Just ported it to SCO Open Server (it's differs from SCO 3 for TenDRA). > > [ ...] I have been using it on a FreeBSD 2.2.5-RELEASE box here for the last two days. I haven't checked the C++ side of things, but as a C compiler it's impressive. > In principle, porting is not very hard, but few aspects: > 1. tcc is POSIX ISO compiler. > it mean, that we must modify our includes (i.e. /usr/include/*) > to be ISO compliant in case __TCC__, and correct handle some > TenDRA specific stuff. > or write specific includes for TCC ( which, in generally, very bad) > So, if we want to create command for tcc porting, We must have something > with commit privelegies. Actually, no. One of the main design features of TenDRA is that you *don't* have to modify system headers (you modify API definitions instead). This means you can write (say) SVID3 programs, even if your libraries aren't particularly SVID compatible. (I just compiled a whole bunch of UNIX95 API programs, even though FreeBSD's UNIX95 API support is rather limited.) My impression is that the TenDRA compiler is a really important addition to free software, and deserves a lot of attention from anyone interested in portability across UNIX systems, or in the various ANSI/ISO, POSIX, XPG standards ... or just in a very solid, non-GPLed compiler. -- Robert Nordier To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 14:19:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA17459 for freebsd-ports-outgoing; Mon, 16 Feb 1998 14:19:14 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA17374; Mon, 16 Feb 1998 14:18:45 -0800 (PST) (envelope-from se@dialup124.zpr.uni-koeln.de) Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE (8.8.7/8.8.7) with ESMTP id XAA06776; Mon, 16 Feb 1998 23:18:34 +0100 (MET) Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.8.8/8.6.9) id XAA01478; Mon, 16 Feb 1998 23:18:31 +0100 (CET) X-Face: " Date: Mon, 16 Feb 1998 23:18:30 +0100 From: Stefan Esser To: Robert Lindgren Cc: ports@FreeBSD.ORG, Stefan Esser Subject: Re: FreeBSD Port: kdebase-2.1b References: <34E83795.D16BDFD9@callmedia.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: <34E83795.D16BDFD9@callmedia.se>; from Robert Lindgren on Mon, Feb 16, 1998 at 01:56:53PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 1998-02-16 13:56 +0100, Robert Lindgren wrote: > Any body who knows when Kde beta 3 is available for FreeBSD? Is > somebody working on it? I have already commited Beta3 ports of - kdelibs - kdebase - kdeutils - kdegames There is a problem with private members being accessed in NNTP.cpp when building krn, and this is the single problem holding back kdenetwork. Next I'll try to update kdegraphics and multimedia. Regards, STefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 14:26:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA19158 for freebsd-ports-outgoing; Mon, 16 Feb 1998 14:26:22 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA19014; Mon, 16 Feb 1998 14:25:32 -0800 (PST) (envelope-from se@dialup124.zpr.uni-koeln.de) Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE (8.8.7/8.8.7) with ESMTP id XAA06918; Mon, 16 Feb 1998 23:25:23 +0100 (MET) Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.8.8/8.6.9) id XAA01511; Mon, 16 Feb 1998 23:25:27 +0100 (CET) X-Face: " Date: Mon, 16 Feb 1998 23:25:26 +0100 From: Stefan Esser To: Robert Lindgren Cc: ports@FreeBSD.ORG, Stefan Esser Subject: Re: FreeBSD Port: kdebase-3.1b References: <34E878EB.C724F2BC@callmedia.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: <34E878EB.C724F2BC@callmedia.se>; from Robert Lindgren on Mon, Feb 16, 1998 at 06:35:39PM +0100 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 1998-02-16 18:35 +0100, Robert Lindgren wrote: > Why am I getting this error message when i try to compile kde beta3: > ===> Patching for kdebase-3.1b > ===> Applying FreeBSD patches for kdebase-3.1b > 1 out of 1 hunks failed--saving rejects to kcontrol/Makefile.in.rej > In Makefile.in.rej is the following: > > *************** > *** 308,312 **** > install-data-local: > $(mkinstalldirs) $(kde_bindir) > ! $(INSTALL_PROGRAM) kcontrol $(kde_bindir)/kcontrol > > uninstall-local: > --- 308,312 ---- > install-data-local: > $(mkinstalldirs) $(kde_bindir) > ! $(INSTALL_SCRIPT) kcontrol $(kde_bindir)/kcontrol > > uninstall-local: What patches are present on your system ? There only should be patch-a0 and patch-ag, all the other ones have been incorporated into Beta3 ... Regards, STefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Feb 16 14:59:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27237 for freebsd-ports-outgoing; Mon, 16 Feb 1998 14:59:26 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from opus.cts.cwu.edu (skynyrd@opus.cts.cwu.edu [198.104.92.71]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA27160; Mon, 16 Feb 1998 14:59:06 -0800 (PST) (envelope-from skynyrd@opus.cts.cwu.edu) Received: from localhost (skynyrd@localhost) by opus.cts.cwu.edu (8.8.8/8.8.8) with SMTP id OAA04451; Mon, 16 Feb 1998 14:58:49 -0800 (PST) (envelope-from skynyrd@opus.cts.cwu.edu) Date: Mon, 16 Feb 1998 14:58:49 -0800 (PST) From: Chris Timmons To: Andreas Klemm cc: Satoshi Asami , freebsd-ports@FreeBSD.ORG, gpalmer@FreeBSD.ORG Subject: Re: Amanda 2.4b6 port In-Reply-To: <19980216180957.08365@klemm.gtn.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org If you get to it before I do in the next couple of days, good enough! -Chris On Mon, 16 Feb 1998, Andreas Klemm wrote: > On Sun, Feb 15, 1998 at 10:25:19PM -0800, Satoshi Asami wrote: > > * Hi Satoshi ! > > * > > * The new amanda stuff is really cool, we should include it > > * but keep the old one for compatibility reasons, if people > > * need it to setup backup clients, where the server runs the older > > * amanda version. > > * > > * Time for a repository copy ... ;-) > > > > Ok, done. Copied everything except for the Attic. :) > > Thats great ... ;-) Who is the committer for this port ? > Me ? ;-) > > -- > Andreas Klemm > powered by ,,symmetric multiprocessor FreeBSD'' > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 00:48:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA07640 for freebsd-ports-outgoing; Tue, 17 Feb 1998 00:48:08 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cam.grad.kiev.ua (grad-UTC-28k8.ukrtel.net [195.5.25.54]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA07590; Tue, 17 Feb 1998 00:47:58 -0800 (PST) (envelope-from Ruslan@Shevchenko.kiev.ua) Received: from Shevchenko.kiev.ua (localhost [127.0.0.1]) by cam.grad.kiev.ua (8.8.8/8.8.5) with ESMTP id MAA03137; Mon, 16 Feb 1998 12:43:14 +0200 (EET) Message-ID: <34E81835.575C6296@Shevchenko.kiev.ua> Date: Mon, 16 Feb 1998 12:43:06 +0200 From: Ruslan Shevchenko Reply-To: rssh@grad.kiev.ua X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.5-STABLE i386) MIME-Version: 1.0 To: Robert Nordier CC: rssh@grad.kiev.ua, hsu@idiom.com, freebsd-ports@FreeBSD.ORG, freebsd-hackers@FreeBSD.ORG Subject: Re: ANNOUNCE: TenDRA C/C++ compiler (fwd) References: <199802162204.AAA04038@eac.iafrica.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Robert Nordier wrote: > Ruslan Shevchenko wrote: > > ? Jeffrey Hsu wrote: > ? > ? ? Anyone feel up to a new compiler port? > ? ? > ? > ? Just ported it to SCO Open Server (it's differs from SCO 3 for TenDRA). > ? > ? [ ...] > > I have been using it on a FreeBSD 2.2.5-RELEASE box here for the last two > days. I haven't checked the C++ side of things, but as a C compiler it's > impressive. > > ? In principle, porting is not very hard, but few aspects: > ? 1. tcc is POSIX ISO compiler. > ? it mean, that we must modify our includes (i.e. /usr/include/*) > ? to be ISO compliant in case __TCC__, and correct handle some > ? TenDRA specific stuff. > ? or write specific includes for TCC ( which, in generally, very bad) > ? So, if we want to create command for tcc porting, We must have something > ? with commit privelegies. > > Actually, no. One of the main design features of TenDRA is that you > *don't* have to modify system headers (you modify API definitions > instead). This means you can write (say) SVID3 programs, even if your > libraries aren't particularly SVID compatible. (I just compiled a > whole bunch of UNIX95 API programs, even though FreeBSD's UNIX95 API > support is rather limited.) > Problem not in API, but in language: 1. wchar_t must not be defined when we use headers in __cplusplus mode by TenDRA. (on SCO_SV it was the main problem) 2. The same with bool 3. all variables must have linked type. 4. empty blocks in C++ {}; now is illegal, I'm not shure, is our _BEGIN_DECL and _END_DECL do the correct things. > My impression is that the TenDRA compiler is a really important addition > to free software, and deserves a lot of attention from anyone interested > in portability across UNIX systems, or in the various ANSI/ISO, POSIX, > XPG standards ... or just in a very solid, non-GPLed compiler. > Yes. > -- > Robert Nordier > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hackers" in the body of the message -- @= //RSSH mailto:Ruslan@Shevchenko.Kiev.UA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 01:40:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA15617 for freebsd-ports-outgoing; Tue, 17 Feb 1998 01:40:04 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA15611; Tue, 17 Feb 1998 01:40:02 -0800 (PST) (envelope-from gnats) Received: from dogbert.informatik.uni-konstanz.de (teggy@dogbert.informatik.uni-konstanz.de [134.34.57.96]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA15428 for ; Tue, 17 Feb 1998 01:37:29 -0800 (PST) (envelope-from teggy@dogbert.informatik.uni-konstanz.de) Received: (from teggy@localhost) by dogbert.informatik.uni-konstanz.de (8.8.5/8.8.5) id KAA00366; Tue, 17 Feb 1998 10:37:13 +0100 (CET) Message-Id: <199802170937.KAA00366@dogbert.informatik.uni-konstanz.de> Date: Tue, 17 Feb 1998 10:37:13 +0100 (CET) From: Torsten.Grust@uni-konstanz.de Reply-To: Torsten.Grust@uni-konstanz.de To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: Torsten.Grust@uni-konstanz.de X-Send-Pr-Version: 3.2 Subject: ports/5769: Update for port hugs-1.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5769 >Category: ports >Synopsis: Update for port hugs-1.4 >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 17 01:40:00 PST 1998 >Last-Modified: >Originator: Torsten "Teg" Grust >Organization: University of Konstanz, Database Research Group >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: >Description: Greetings. Update of the FreeBSD port for hugs-1.4 (port has been renamed on MASTER_SITE as well as updated). Output of `diff -uNr hugs-1.4-old hugs-1.4' included below. The files patches/ patches/patch-aa patches/patch-ab turned out to be obsolete now and have been removed. Additionally, I uploaded the new port to ftp://ftp.freebsd.org/pub/FreeBSD/incoming/hugs-1.4.tar.gz Cheers, --Teggy begin 644 diff-uNr-old-new M9&EF9B`M=4YR(&AU9W,M,2XT+6]L9"]-86ME9FEL92!H=6=S+3$N-"]-86ME M9FEL90HM+2T@:'5GBYD92D*(",*0$`@+3@L,34@*S@L,34@0$`*(`H@1$E35$Y!344]"6AU M9W,M,2XT"B!#051%1T]22453/0EL86YG"BU-05-415)?4TE415,]"69T<#HO M+VAAU=22U-20WTO36M);G-T86PN:6XN;W)I9PHM"21[4T5$?2`M92`BTE.4U1!3$Q?4%)/1U)!37TC(B!<"BT@ M("`@("`@("`@("`@("`M92`GTE.4U1!3$Q? M1$E2?2,G(%P*+0D@("`@("`@/"`D>U=22U-20WTO36M);G-T86PN:6XN;W)I M9R`^("1[5U)+4U)#?2]-:TENTA51U-?1$]#?2]H=6=S+C$N M;W)I9PHM"21[4T5$?2`M92`B7"YD7"YDU!2149)6'TO8FEN(R(@7`HM"2`@("`@("`M92`B MTA51U-?1$]#?2]H=6=S+C$*+0DD M>TE.4U1!3$Q?34%.?2`D>TA51U-?1$]#?2]H=6=S+C$@)'M04D5&25A]+VUA M;B]M86XQ"0HK("`@("`@("`@("`@("`@/"`D>TA51U-?1$]#?2]H=6=S+C$@ M/B`D>TA51U-?1$]#?2]H=6=S+C$N9FEX"BL))'M)3E-404Q,7TU!3GT@)'M( M54=37T1/0WTO:'5G"`D>U!2149)6'TO;6%N+VUA;C$O)'M-04XQ M?0HK"21[4DU]("1[2%5'4U]$3T-]+VAU9W,N,2YF:7@**PDC(&9I>"!O=VYE MTE.4U1!3$Q?1$E2?2`D>U!2149)6'TOTE.4U1!3$Q?1$%407T@)'M(54=37T1/0WTO4D5!1$U%("1[4%)% M1DE8?2]S:&%R92]D;V,O:'5GTA51U-? M1$]#?2\J+FAT;6P@)'M04D5&25A]+W-H87)E+V1O8R]H=6=S"BTN9F]R($1/ M0R!I;B!H87-K96QL+7)E<&]R="TQ+C0@:&%S:V5L;"UL:6)R87)Y+3$N-"!M M86YU86P@='5T;W)I86PM,2XT"BT))'M)3E-404Q,7T1)4GT@)'M04D5&25A] M+W-H87)E+V1O8R]H=6=S+R1[1$]#?2UH=&UL"BT))'M)3E-404Q,7T1!5$%] M("1[2%5'4U]$3T-]+R1[1$]#?2UH=&UL+RH@)'M04D5&25A]+W-H87)E+V1O M8R]H=6=S+R1[1$]#?2UH=&UL(`HM+F5N9&9O<@HK"21[0U!]("U2("1[2%5' M4U]$3T-]+RH@)'M04D5&25A]+W-H87)E+V1O8R]H=6=S(`HK"2,@9FEX(&]W M;F5R+W!EU!2149)6'TO7!E(&8@?"!X87)GU-(05)% M34]$17T**PEF:6YD("1[4%)%1DE8?2]S:&%R92]D;V,O:'5G&%R9W,@8VAO=VX@)'M32$%214]73GTN)'M32$%214=24'T*("YE;F1I M9@D*(`H@+FEN8VQU9&4@/&)S9"YP;W)T+FUK/@ID:69F("UU3G(@:'5G3$Y.3@M MBD@/2`V-S0T,#6UB;VP@ M*B\*+2`@4W1R:6YG(&1L;#L*+2`@4W1R:6YG('-Y;6)O;#L@>PID:69F("UU M3G(@:'5G"]C;VYF:6=U"]C;VYF:6=U@HM M"YH=&UL"BUS:&%R92]D;V,O M:'5G'!S M+FAT;6P*+7-H87)E+V1O8R]H=6=S+VAA6YT87@M:7-O+FAT;6P*+7-H M87)E+V1O8R]H=6=S+VAA2TQ+C0M M:'1M;"]C:&%R+FAT;6P*+7-H87)E+V1O8R]H=6=S+VAA2TQ+C0M:'1M;"]C;VUP;&5X+FAT;6P*+7-H87)E+V1O8R]H=6=S+VAA2TQ+C0M:'1M;"]C<'5T:6UE+FAT;6P*+7-H87)E+V1O8R]H M=6=S+VAA2TQ+C0M:'1M;"]D:7)E8W1O2TQ+C0M:'1M M;"]I;G1R;V1U8W1I;VXN:'1M;`HM2TQ+C0M:'1M;"]I>"YH=&UL"BUS:&%R92]D;V,O:'5G2TQ+C0M:'1M;"]N=6UE2TQ+C0M:'1M;"]R86YD;VTN:'1M;`HM2TQ+C0M:'1M;"]S>7-T M96TN:'1M;`HM"YH2YL:',**W-H87)E+VAU9W,O;&EB M+VAU9W,O4&%R'1S M+U-A;7!L959A'1S+U-4+FAS"BMS:&%R92]H=6=S+VQI8B]E M>'1S+TQA>GE35"YH'1S+T-O;F-U'1S+T-O;F-" M87-E+FAS"BMS:&%R92]H=6=S+VQI8B]E>'1S+T-H86YN96Q687(N;&AS"BMS M:&%R92]H=6=S+VQI8B]E>'1S+T-H86YN96PN;&AS"BMS:&%R92]H=6=S+VQI M8B]E>'1S+T)I=',N:',**W-H87)E+VAU9W,O;&EB+V5X=',O5V]R9"YH"YH=&UL"BMS:&%R M92]H=6=S+VQI8B](87-K;W)E+V1O8W,O=&5S=&AA'0**W-H87)E+VAU9W,O9&5M;W,O<')O;&]G M+U!R;VQO9RYH'0* M*W-H87)E+VAU9W,O9&5M;W,O8V=I+V=R965T:6YG4A434PN:',**W-H87)E+VAU9W,O9&5M;W,O8V=I+U!R971T M>2YHF%R9"YHF$N:',**W-H87)E+VAU9W,O9&5M M;W,O1&5M;W,N:',**W-H87)E+VAU9W,O9&5M;W,O0V]M;6%);G0N;&AS"BMS M:&%R92]H=6=S+V1E;6]S+T-A;&5N9&%R+FAS"BMS:&%R92]H=6=S+V1E;6]S M+T%R2]L:6)I;F1E>"YH=&UL"BMS M:&%R92]D;V,O:'5G2]C M;VUP;&5X+FAT;6P**W-H87)E+V1O8R]H=6=S+VQI8G)A2]L:7-T+FAT;6P**W-H87)E+V1O8R]H=6=S+VQI8G)A2]C:&%R+FAT;6P**W-H87)E M+V1O8R]H=6=S+VQI8G)A2]I;RYH=&UL"BMS:&%R92]D;V,O:'5G2YH=&UL"BMS:&%R92]D;V,O:'5G2]L;V-A;&4N:'1M;`HK2]C<'5T:6UE+FAT;6P**W-H87)E+V1O8R]H=6=S+VQI8G)A"YH=&UL"BMS:&%R92]D;V,O M:'5G7!E6YT87@M:7-O+FAT M;6P**W-H87)E+V1O8R]H=6=S+W)E<&]R="]L:71E7!E"YH"YH2YL:',*+7-H87)E+VAU9W,O;&EB+V=L845X=',O1F]R96EG M;BYL:',*+7-H87)E+VAU9W,O;&EB+V=L845X=',O1VQA17AT'1S+TUU=%9A'0*+7-H87)E+VAU M9W,O;&EB+TAA'0*+7-H87)E+VAU9W,O M9&5M;W,O<')O;&]G+T%N9&]R4A434PN:',*+7-H87)E+VAU9W,O9&5M;W,O8V=I M+U1E>'10;&%I;BYH'0*+7-H M87)E+VAU9W,O9&5M;W,O8V=I+VAE;&QO7TA434PN8V=I"BUS:&%R92]H=6=S M+V1E;6]S+V-G:2]H96QL;U]P;&%I;BYC9VD*+7-H87)E+VAU9W,O9&5M;W,O M8V=I+U)%041-10HM45X+FAS"BUS:&%R92]H=6=S+V1E;6]S+T-A M;&5N9&%R+FAS"BUS:&%R92]H=6=S+V1E;6]S+T-O;6UA26YT+FQH`HK MHow-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 02:25:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA20630 for freebsd-ports-outgoing; Tue, 17 Feb 1998 02:25:14 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from eac.iafrica.com (196-31-98-88.iafrica.com [196.31.98.88]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA20564 for ; Tue, 17 Feb 1998 02:24:59 -0800 (PST) (envelope-from rnordier@iafrica.com) Received: (from rnordier@localhost) by eac.iafrica.com (8.8.7/8.6.12) id MAA14957; Tue, 17 Feb 1998 12:18:26 +0200 (SAT) From: Robert Nordier Message-Id: <199802171018.MAA14957@eac.iafrica.com> Subject: Re: ANNOUNCE: TenDRA C/C++ compiler (fwd) In-Reply-To: <34E81835.575C6296@Shevchenko.kiev.ua> from Ruslan Shevchenko at "Feb 16, 98 12:43:06 pm" To: rssh@grad.kiev.ua Date: Tue, 17 Feb 1998 12:18:24 +0200 (SAT) Cc: freebsd-ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL31 (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 [Cc list trimmed] Ruslan Shevchenko wrote: > Robert Nordier wrote: > > Actually, no. One of the main design features of TenDRA is that you > > *don't* have to modify system headers (you modify API definitions > > instead). This means you can write (say) SVID3 programs, even if your > > libraries aren't particularly SVID compatible. (I just compiled a > > whole bunch of UNIX95 API programs, even though FreeBSD's UNIX95 API > > support is rather limited.) > > > > Problem not in API, but in language: 1. wchar_t must not be defined when we > use headers in __cplusplus mode by > TenDRA. > (on SCO_SV it was the main problem) > 2. The same with bool > 3. all variables must have linked type. > 4. empty blocks in C++ {}; now is illegal, I'm not shure, > is our _BEGIN_DECL and _END_DECL do the correct things. You may be right regarding C++ problems (I'm using the compiler for portability-checking some C work, so that's all my experience for now). For the C APIs, you can actually rm -fr /usr/include completely, and this won't affect anything: you just have to add stuff like #define __WRONG_XPG3_FTW_H to the library startup definitions during porting, if you don't have a correct (or parseable, or any) ftw.h file. Being able to ignore system headers can be particularly useful, as most OS vendors tend to support multiple APIs very badly. -- Robert Nordier To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 03:02:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27215 for freebsd-ports-outgoing; Tue, 17 Feb 1998 03:02:23 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA27178 for ; Tue, 17 Feb 1998 03:02:20 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id DAA08480; Tue, 17 Feb 1998 03:00:36 -0800 (PST) To: Blaz Zupan cc: freebsd-ports@FreeBSD.ORG Subject: Re: imap-uw (was Re: Cyrus and TCL) In-reply-to: Your message of "Sun, 15 Feb 1998 14:21:57 +0100." Date: Tue, 17 Feb 1998 03:00:35 -0800 Message-ID: <8476.887713235@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Jordan, while you are already at fixing ports, you may want to recalculate > the md5 checksum for the imap-uw port (mail/imap-uw). It seems like the > distfile changed. You also have to remove patch-aa and replace Not me! I just did that one and now I'm diving back under the safety of my rock. :-) 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 17 03:40:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA05693 for freebsd-ports-outgoing; Tue, 17 Feb 1998 03:40:22 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA05630; Tue, 17 Feb 1998 03:40:12 -0800 (PST) (envelope-from gnats) Date: Tue, 17 Feb 1998 03:40:12 -0800 (PST) Message-Id: <199802171140.DAA05630@hub.freebsd.org> To: freebsd-ports Cc: From: Kris Kennaway Subject: Re: ports/5743: kdelib port not building Reply-To: Kris Kennaway Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/5743; it has been noted by GNATS. From: Kris Kennaway To: Stefan Esser Cc: freebsd-gnats-submit@freebsd.org, Stefan Esser Subject: Re: ports/5743: kdelib port not building Date: Tue, 17 Feb 1998 21:55:23 +1030 (CST) On Sun, 15 Feb 1998, Stefan Esser wrote: > Sorry, but I can't reproduce this problem: > > checking for X... libraries /usr/X11R6/lib -L/usr/local/lib, headers /usr/X11R6/include -I/usr/local/include > checking for QT... libraries /usr/X11R6/lib, headers /usr/X11R6/include/X11/qt > checking if Qt compiles without flags... yes > > > cd /usr/ports/x11/kdelibs && make > > Please send output from "nohup make clean all &", > and I'll check what's going on. Bonus points for > sending "config.cache" created in work/kdelibs by > configure. Okay - when I went back to do this (in the same xterm as last time when it refused to compile, although I probably su'ed once or twice in the meantime) - it worked: got past this stage, anyway. I /was/ playing around with some things on my path a bit, but I was doing a 'source ~/.cshrc' and 'rehash' afterwards which I assumed would have synced things (the qt includes are not, and have never been, on my path ,though). So I dunno what was happening there - however I'm now getting this: [morden|root] 21:52 /usr/ports/x11/kdelibs nohup make clean all ===> Cleaning for giflib-3.0 ===> Cleaning for jpeg-6a ===> Cleaning for qt-1.31 ===> Cleaning for gmake-3.76.1 ===> Cleaning for kdelibs-3.1b >> Checksum OK for kdelibs-Beta3-1.src.tar.gz. ===> Extracting for kdelibs-3.1b ===> kdelibs-3.1b depends on executable: moc - found ===> kdelibs-3.1b depends on shared library: qt\.1\.3[0-9] - found ===> kdelibs-3.1b depends on shared library: gif\.[23]\. - found ===> kdelibs-3.1b depends on shared library: jpeg\.[67]\. - found ===> Patching for kdelibs-3.1b ===> Applying FreeBSD patches for kdelibs-3.1b ===> Configuring for kdelibs-3.1b creating cache ./config.cache checking host system type... i386-unknown-freebsd3.0 checking target system type... i386-unknown-freebsd3.0 checking build system type... i386-unknown-freebsd3.0 checking for a BSD compatible install... /usr/bin/install -c -o bin -g bin checking whether build environment is sane... yes checking whether make sets ${MAKE}... yes checking for working aclocal... missing checking for working autoconf... missing checking for working automake... missing checking for working autoheader... missing checking for working makeinfo... found checking for a BSD compatible install... /usr/bin/install -c -o bin -g bin checking for a C-Compiler... cc checking whether the C compiler (cc -O2 -pipe -m486 ) works... yes checking whether the C compiler (cc -O2 -pipe -m486 ) 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... checking for g++... g++ checking whether the C++ compiler (g++ -O2 -pipe -m486 -s) works... yes checking whether the C++ compiler (g++ -O2 -pipe -m486 -s) is a cross-compiler.. . no checking whether we are using GNU C++... yes checking for ranlib... ranlib checking for ld used by GCC... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... no checking for BSD-compatible nm... /usr/bin/nm -p checking whether ln -s works... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... -static checking if the linker (/usr/bin/ld) is GNU ld... no checking whether the linker (/usr/bin/ld) supports shared libraries... yes checking command to parse /usr/bin/nm -p output... no checking how to hardcode library paths into programs... immediate checking for /usr/bin/ld option to reload object files... -r checking dynamic linker characteristics... freebsd3.0 ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for objdir... .libs creating libtool checking for AIX... no checking for minix/config.h... no checking whether NLS is requested... yes checking for msgfmt... msgfmt checking for gmsgfmt... msgfmt checking for xgettext... : checking how to run the C++ preprocessor... g++ -E checking for ANSI C header files... yes checking for inline... inline checking for off_t... yes checking for size_t... yes checking for working alloca.h... no checking for alloca... yes checking for unistd.h... yes checking for getpagesize... yes checking for working mmap... yes checking for argz.h... no checking for limits.h... yes checking for locale.h... yes checking for nl_types.h... yes checking for malloc.h... no checking for string.h... yes checking for unistd.h... (cached) yes checking for values.h... no checking for alloca.h... (cached) no checking for getcwd... yes checking for munmap... yes checking for putenv... yes checking for setenv... yes checking for setlocale... yes checking for strchr... yes checking for strcasecmp... yes checking for __argz_count... no checking for __argz_stringify... no checking for __argz_next... no checking for stpcpy... no checking for LC_MESSAGES... no checking for dirent.h that defines DIR... yes checking for opendir in -ldir... no checking for ANSI C header files... (cached) yes checking for fcntl.h... yes checking for sys/time.h... yes checking for unistd.h... (cached) yes checking for sys/cdefs.h... yes checking for fnmatch.h... yes checking for sysent.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/select.h... yes checking for socket in -lsocket... no checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking for QT... libraries /usr/X11R6/lib, headers /usr/X11R6/include/X11/qt checking if Qt compiles without flags... yes checking for moc... /usr/X11/bin/moc checking for KDE... will be installed in /usr/local checking for extra includes... no checking for extra libs... no checking for rpath... yes checking for bool... yes checking for KDE paths... defaults checking for main in -lcompat... yes checking for giflib... *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. With: configure: error: You need giflib23. Please install the kdesupport package sent to stderr Reinstalling the giflib30 port has no effect. my work/kdelibs/config.cache is empty. STefan > Thanks, Kris WOWBO /\ . Through the darkness of future past, /\ . BWOWB OBWOW /##\/#\ The Magician longs to see. /##\/#\ BOBWO WBOBW / \ One chance out between two worlds, / \ OWBOB WOWBO / \ Fire, Walk with me! / \ BWOWB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 03:50:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07950 for freebsd-ports-outgoing; Tue, 17 Feb 1998 03:50:05 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA07941; Tue, 17 Feb 1998 03:50:02 -0800 (PST) (envelope-from gnats) Date: Tue, 17 Feb 1998 03:50:02 -0800 (PST) Message-Id: <199802171150.DAA07941@hub.freebsd.org> To: freebsd-ports Cc: From: Kris Kennaway Subject: Re: ports/5743: kdelib port not building Reply-To: Kris Kennaway Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/5743; it has been noted by GNATS. From: Kris Kennaway To: Stefan Esser Cc: freebsd-gnats-submit@freebsd.org, asami@freebsd.org, Stefan Esser Subject: Re: ports/5743: kdelib port not building Date: Tue, 17 Feb 1998 22:16:49 +1030 (CST) And not one minute after replying to that mail, I find this in freebsd-current: ----- * I'm trying to buid the port for kde but * the configuration script allways dies trying to find libgif. You have egcs installed. Delete it (or at least move libstdc++.a out of /usr/local/lib) and everything will be fine. Satoshi (who is learning way too much about these stuff for his own good..) ----- [morden|root] 22:06 /usr/ports/x11/kdelibs pkg_delete egcs-980205 [morden|root] 22:06 /usr/ports/x11/kdelibs make clean all ... Bitchin' :-) Thanks, Satoshi! PR Closed. Kris WOWBO /\ . Through the darkness of future past, /\ . BWOWB OBWOW /##\/#\ The Magician longs to see. /##\/#\ BOBWO WBOBW / \ One chance out between two worlds, / \ OWBOB WOWBO / \ Fire, Walk with me! / \ BWOWB To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 05:40:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA24181 for freebsd-ports-outgoing; Tue, 17 Feb 1998 05:40:04 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA24154; Tue, 17 Feb 1998 05:40:02 -0800 (PST) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA23856; Tue, 17 Feb 1998 05:39:25 -0800 (PST) (envelope-from nobody) Message-Id: <199802171339.FAA23856@hub.freebsd.org> Date: Tue, 17 Feb 1998 05:39:25 -0800 (PST) From: taguchi@tohoku.iij.ad.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5770: PKG_NAME on ports japanese/expect is *NOT* correct Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5770 >Category: ports >Synopsis: PKG_NAME on ports japanese/expect is *NOT* correct >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 17 05:40:01 PST 1998 >Last-Modified: >Originator: Taguchi Takeshi >Organization: IIJ TOHOKU branch >Release: 2.2.5-stable >Environment: FreeBSD hirose.tohoku.iij.ad.jp 2.2.5-STABLE FreeBSD 2.2.5-STABLE #0: Thu Dec 18 10:48:37 JST 1997 root@hirose.tohoku.iij.ad.jp:/usr/src/sys/compile/MEGURA i386 >Description: PKG_NAME ja-expect-5.25 was NOT set. Because its Makefile is buggy. >How-To-Repeat: >Fix: Please apply this patch to ${PORTSDIR}/japanese/expect. # diff -u Makefile.orig Makefile --- Makefile.orig Tue Feb 17 22:27:36 1998 +++ Makefile Tue Feb 17 22:28:48 1998 @@ -6,12 +6,12 @@ # $Id: Makefile,v 1.4 1997/10/17 05:58:02 asami Exp $ # +PKG_NAME= ja-expect-5.25 FILESDIR= ${.CURDIR}/../../lang/expect/files NO_MAN_INSTALL= yes .include "${.CURDIR}/../../lang/expect/Makefile" -PKGNAME= ja-expect-5.25 CATEGORIES= japanese lang MAINTAINER= taguchi@tohoku.iij.ad.jp >Audit-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 17 06:15:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA27711 for freebsd-ports-outgoing; Tue, 17 Feb 1998 06:15:47 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cam.grad.kiev.ua (grad-UTC-28k8.ukrtel.net [195.5.25.54]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA27703 for ; Tue, 17 Feb 1998 06:15:42 -0800 (PST) (envelope-from Ruslan@Shevchenko.kiev.ua) Received: from Shevchenko.kiev.ua (localhost [127.0.0.1]) by cam.grad.kiev.ua (8.8.8/8.8.5) with ESMTP id SAA03410; Mon, 16 Feb 1998 18:11:04 +0200 (EET) Message-ID: <34E8650F.7EF4DED1@Shevchenko.kiev.ua> Date: Mon, 16 Feb 1998 18:10:57 +0200 From: Ruslan Shevchenko Reply-To: rssh@grad.kiev.ua X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.5-STABLE i386) MIME-Version: 1.0 To: Robert Nordier CC: rssh@grad.kiev.ua, freebsd-ports@FreeBSD.ORG Subject: Re: ANNOUNCE: TenDRA C/C++ compiler (fwd) References: <199802171018.MAA14957@eac.iafrica.com> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ok. let start work. Can you publish/post you changes to tname and FreeBSD API ? Thanks. -- @= //RSSH mailto:Ruslan@Shevchenko.Kiev.UA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 07:09:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06681 for freebsd-ports-outgoing; Tue, 17 Feb 1998 07:09:34 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06641; Tue, 17 Feb 1998 07:09:27 -0800 (PST) (envelope-from steve) Date: Tue, 17 Feb 1998 07:09:27 -0800 (PST) From: Steve Price Message-Id: <199802171509.HAA06641@hub.freebsd.org> To: kkennawa@physics.adelaide.edu.au, steve, freebsd-ports Subject: Re: ports/5743 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: kdelib port not building State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Tue Feb 17 07:07:55 PST 1998 State-Changed-Why: Satoshi's suggestion of 'pkg_delete egcs-980205' cured the problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 07:14:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07722 for freebsd-ports-outgoing; Tue, 17 Feb 1998 07:14:15 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07697; Tue, 17 Feb 1998 07:14:10 -0800 (PST) (envelope-from steve) Date: Tue, 17 Feb 1998 07:14:10 -0800 (PST) From: Steve Price Message-Id: <199802171514.HAA07697@hub.freebsd.org> To: taguchi@tohoku.iij.ad.jp, steve, freebsd-ports Subject: Re: ports/5770 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: PKG_NAME on ports japanese/expect is *NOT* correct State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Tue Feb 17 07:13:28 PST 1998 State-Changed-Why: Suggested patch applied with a few more portlint nits. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 07:16:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA08192 for freebsd-ports-outgoing; Tue, 17 Feb 1998 07:16:31 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from eac.iafrica.com (196-31-98-231.iafrica.com [196.31.98.231]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA08178 for ; Tue, 17 Feb 1998 07:16:25 -0800 (PST) (envelope-from rnordier@iafrica.com) Received: (from rnordier@localhost) by eac.iafrica.com (8.8.7/8.6.12) id RAA17126; Tue, 17 Feb 1998 17:15:36 +0200 (SAT) From: Robert Nordier Message-Id: <199802171515.RAA17126@eac.iafrica.com> Subject: Re: ANNOUNCE: TenDRA C/C++ compiler (fwd) In-Reply-To: <34E8650F.7EF4DED1@Shevchenko.kiev.ua> from Ruslan Shevchenko at "Feb 16, 98 06:10:57 pm" To: rssh@grad.kiev.ua Date: Tue, 17 Feb 1998 17:15:34 +0200 (SAT) Cc: rnordier@iafrica.com, rssh@grad.kiev.ua, freebsd-ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL31 (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 Ruslan Shevchenko wrote: > Ok. let start work. > > Can you publish/post you changes to tname and FreeBSD API ? > > Thanks. I've put up the files TenDRA-4.1.1-FreeBSD.README TenDRA-4.1.1-FreeBSD.tar.gz at http://users.iafrica.com/r/rn/rnordier/programs/FreeBSD/ though anyone please note that this is just an assist kit for playing with the compiler, not a FreeBSD-style port. (I'm still looking at various things myself.) Anything that doesn't work is almost certainly due to me, and NOT to TenDRA. A proper port will probably be available fairly soon. This is just a proof-of-concept thing for those who can't wait. -- Robert Nordier To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 07:42:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA14091 for freebsd-ports-outgoing; Tue, 17 Feb 1998 07:42:05 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from consys.com (consys.com [209.60.202.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA14047 for ; Tue, 17 Feb 1998 07:41:49 -0800 (PST) (envelope-from rcarter@consys.com) Received: from dnstoo.consys.com (dnstoo.ConSys.COM [209.60.202.195]) by consys.com (8.8.6/8.8.6) with ESMTP id IAA13654 for ; Tue, 17 Feb 1998 08:41:36 -0700 (MST) Received: from dnstoo.ConSys.COM (localhost [127.0.0.1]) by dnstoo.consys.com (8.8.8/8.8.6) with ESMTP id IAA23081 for ; Tue, 17 Feb 1998 08:41:36 -0700 (MST) Message-Id: <199802171541.IAA23081@dnstoo.consys.com> X-Mailer: exmh version 2.0.1 12/23/97 To: ports@FreeBSD.ORG Subject: Fortify (128bit Netscape crypto) Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Feb 1998 08:41:36 -0700 From: "Russell L. Carter" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I was pleased to verify that Fortify (www.fortify.net) works happily on my Navigator V4.04 [en]-97308 browser. It fails however on Communicator 4.04, which may be the "4.04.1" variety. Russell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 08:00:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA16346 for freebsd-ports-outgoing; Tue, 17 Feb 1998 08:00:07 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA16325; Tue, 17 Feb 1998 08:00:05 -0800 (PST) (envelope-from gnats) Received: from shale.csir.co.za (shale.csir.co.za [146.64.46.5]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA16197 for ; Tue, 17 Feb 1998 07:59:15 -0800 (PST) (envelope-from reg@shale.csir.co.za) Received: (from reg@localhost) by shale.csir.co.za (8.8.8/8.8.8) id RAA03797; Tue, 17 Feb 1998 17:58:36 +0200 (SAT) (envelope-from reg) Message-Id: <199802171558.RAA03797@shale.csir.co.za> Date: Tue, 17 Feb 1998 17:58:36 +0200 (SAT) From: reg@shale.csir.co.za Reply-To: reg@shale.csir.co.za To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5771: New port: Stuttgart Neural Network Simulator Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5771 >Category: ports >Synopsis: New port: Stuttgart Neural Network Simulator >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 17 08:00:01 PST 1998 >Last-Modified: >Originator: Jeremy Lea >Organization: Arb's Inc. >Release: FreeBSD 3.0-CURRENT i386 >Environment: How about a new ports category: ai? >Description: Stuttgart Neural Network Simulator v4.1. A fully featured neural network environment, with many different kinds of networks and a 2D and 3D display of the network. >How-To-Repeat: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # . # ./Makefile # ./files # ./files/md5 # ./files/snns # ./scripts # ./scripts/configure # ./pkg # ./pkg/COMMENT # ./pkg/DESCR # ./pkg/PLIST # ./pkg/MESSAGE # ./patches # ./patches/patch-00 # echo c - . mkdir -p . > /dev/null 2>&1 echo x - ./Makefile sed 's/^X//' >./Makefile << 'END-of-./Makefile' X# New ports collection makefile for: snns X# Version required: 4.1 X# Date created: 2 Febuary 1997 X# Whom: reg@shale.csir.co.za X# X# $Id$ X# X XDISTNAME= SNNSv4.1 XPKGNAME= snns-4.1 XCATEGORIES= ai math XMASTER_SITES= ftp://ftp.informatik.uni-stuttgart.de/pub/SNNS/ XEXTRACT_SUFX= .tar.Z X XMAINTAINER= reg@shale.csir.co.za X Xpost-configure: X @(cd ${WRKSRC} && ./configure < options.FreeBSD) X @(sed -e "s#%prefix%#${PREFIX}#g" < ${FILESDIR}/snns > ${WRKSRC}/snns) X Xdo-build: X @(cd ${WRKSRC} && ./build all) X Xdo-install: X @if [ ! -d ${PREFIX}/snns ]; then \ X ${MKDIR} ${PREFIX}/snns; \ X fi X @if [ ! -d ${PREFIX}/snns/bin ]; then \ X ${MKDIR} ${PREFIX}/snns/bin; \ X fi X @if [ ! -d ${PREFIX}/snns/examples ]; then \ X ${MKDIR} ${PREFIX}/snns/examples; \ X fi X ${INSTALL_PROGRAM} ${WRKSRC}/xgui/bin/other/xgui ${PREFIX}/snns/bin X ${INSTALL_PROGRAM} ${WRKSRC}/tools/bin/other/* ${PREFIX}/snns/bin X ${INSTALL_DATA} ${WRKSRC}/examples/* ${PREFIX}/snns/examples X ${INSTALL_DATA} ${WRKSRC}/Readme ${PREFIX}/snns X ${INSTALL_DATA} ${WRKSRC}/Readme.license ${PREFIX}/snns X ${INSTALL_DATA} ${WRKSRC}/default.cfg ${PREFIX}/snns X ${INSTALL_DATA} ${WRKSRC}/help.hdoc ${PREFIX}/snns X ${INSTALL_SCRIPT} ${WRKSRC}/snns ${PREFIX}/bin X @${CAT} ${PKGDIR}/MESSAGE X X.include END-of-./Makefile echo c - ./files mkdir -p ./files > /dev/null 2>&1 echo x - ./files/md5 sed 's/^X//' >./files/md5 << 'END-of-./files/md5' XMD5 (SNNSv4.1.tar.Z) = 61f27335ea88b66c48adc9b321f3ac1d END-of-./files/md5 echo x - ./files/snns sed 's/^X//' >./files/snns << 'END-of-./files/snns' X#! /bin/sh X XXGUILOADPATH=%prefix%/snns Xexport XGUILOADPATH XPATH=${PATH}:%prefix%/snns/bin Xexport PATH X X%prefix%/snns/bin/xgui END-of-./files/snns echo c - ./scripts mkdir -p ./scripts > /dev/null 2>&1 echo x - ./scripts/configure sed 's/^X//' >./scripts/configure << 'END-of-./scripts/configure' X#!/bin/sh X# Make a fake options file to drive the setup script X X#recreate Makefiles? Xecho "y" > ${WRKSRC}/options.FreeBSD X#Correct source path? Xecho "y" >> ${WRKSRC}/options.FreeBSD X#Change install path? Xecho "n" >> ${WRKSRC}/options.FreeBSD X#X version Xecho "2" >> ${WRKSRC}/options.FreeBSD X#Machine type Xecho "0" >> ${WRKSRC}/options.FreeBSD X#Use gcc? Xecho "y" >> ${WRKSRC}/options.FreeBSD X X#Paths for X11R6 Xecho "${X11BASE}/lib" >> ${WRKSRC}/options.FreeBSD Xecho "${X11BASE}/include" >> ${WRKSRC}/options.FreeBSD X X#All OK? Xecho "y" >> ${WRKSRC}/options.FreeBSD END-of-./scripts/configure echo c - ./pkg mkdir -p ./pkg > /dev/null 2>&1 echo x - ./pkg/COMMENT sed 's/^X//' >./pkg/COMMENT << 'END-of-./pkg/COMMENT' XFully featured neural network simulator END-of-./pkg/COMMENT echo x - ./pkg/DESCR sed 's/^X//' >./pkg/DESCR << 'END-of-./pkg/DESCR' XSNNS (Stuttgart Neural Network Simulator) is a software simulator for neural Xnetworks on Unix workstations developed at the Institute for Parallel and XDistributed High Performance Systems (IPVR) at the University of Stuttgart. XThe goal of the SNNS project is to create an efficient and flexible Xsimulation environment for research on and application of neural nets. X XThe SNNS simulator consists of two main components: X X1) simultor kernel written in C X2) graphical user interface under X X XThe simulator kernel operates on the internal network data structures of the Xneural nets and performs all operations of learning and recall. It can also Xbe used without the other parts as a C program embedded in custom Xapplications. It supports arbitrary network topologies and the concept of Xsites. SNNS can be extended by the user with user defined activation Xfunctions, output functions, site functions and learning procedures, which Xare written as simple C programs and linked to the simulator kernel. X XThe graphical user interface XGUI (X Graphical User Interface), built on top Xof the kernel, gives a 2D and a 3D graphical representation of the neural Xnetworks and controls the kernel during the simulation run. In addition, the X2D user interface has an integrated network editor which can be used to Xdirectly create, manipulate and visualize neural nets in various ways. END-of-./pkg/DESCR echo x - ./pkg/PLIST sed 's/^X//' >./pkg/PLIST << 'END-of-./pkg/PLIST' Xbin/snns Xsnns/Readme Xsnns/Readme.license Xsnns/default.cfg Xsnns/help.hdoc Xsnns/bin/analyze Xsnns/bin/batchman Xsnns/bin/bignet Xsnns/bin/convert2snns Xsnns/bin/feedback-gennet Xsnns/bin/isnns Xsnns/bin/mkhead Xsnns/bin/mkout Xsnns/bin/mkpat Xsnns/bin/netlearn Xsnns/bin/netperf Xsnns/bin/pat_sel Xsnns/bin/snns2c Xsnns/bin/snnsbat Xsnns/bin/xgui Xsnns/examples/README.all Xsnns/examples/art1_letters.README Xsnns/examples/art1_letters.cfg Xsnns/examples/art1_letters.net Xsnns/examples/art1_letters.pat Xsnns/examples/art1_letters3D.cfg Xsnns/examples/art2_tetra.README Xsnns/examples/art2_tetra.cfg Xsnns/examples/art2_tetra.net Xsnns/examples/art2_tetra.pat Xsnns/examples/art2_tetra_high.pat Xsnns/examples/art2_tetra_low.pat Xsnns/examples/art2_tetra_med.pat Xsnns/examples/artmap.README Xsnns/examples/artmap.cfg Xsnns/examples/artmap.net Xsnns/examples/artmap_test.pat Xsnns/examples/artmap_train.pat Xsnns/examples/bdg_TDNN.README Xsnns/examples/bdg_TDNN.cfg Xsnns/examples/bdg_TDNN.chk Xsnns/examples/bdg_TDNN.net Xsnns/examples/bdg_TDNN.pat Xsnns/examples/bdg_TDNN_untrained.net Xsnns/examples/bdg_variable.pat Xsnns/examples/default.cfg Xsnns/examples/dlvq_ziff.README Xsnns/examples/dlvq_ziff.cfg Xsnns/examples/dlvq_ziff.chk Xsnns/examples/dlvq_ziff.net Xsnns/examples/dlvq_ziff_100.pat Xsnns/examples/dlvq_ziff_trained.net Xsnns/examples/dlvq_ziff_untrained.net Xsnns/examples/eight_016.pat Xsnns/examples/eight_160.pat Xsnns/examples/eight_elman.README Xsnns/examples/eight_elman.cfg Xsnns/examples/eight_elman.chk Xsnns/examples/eight_elman.net Xsnns/examples/eight_elman_untrained.net Xsnns/examples/eight_jordan.README Xsnns/examples/eight_jordan.cfg Xsnns/examples/eight_jordan.chk Xsnns/examples/eight_jordan.net Xsnns/examples/eight_jordan_untrained.net Xsnns/examples/encoder.README Xsnns/examples/encoder.cfg Xsnns/examples/encoder.chk Xsnns/examples/encoder.net Xsnns/examples/encoder.pat Xsnns/examples/encoder_untrained.net Xsnns/examples/font.README Xsnns/examples/font.cfg Xsnns/examples/font.chk Xsnns/examples/font.net Xsnns/examples/font.pat Xsnns/examples/font_untrained.net Xsnns/examples/laser.README Xsnns/examples/laser.cfg Xsnns/examples/laser.chk Xsnns/examples/laser.net Xsnns/examples/laser_1000.pat Xsnns/examples/laser_999.pat Xsnns/examples/laser_untrained.net Xsnns/examples/letseq.README Xsnns/examples/letseq.chk Xsnns/examples/letseq_elman.cfg Xsnns/examples/letseq_elman.net Xsnns/examples/letseq_elman_untrained.net Xsnns/examples/letseq_h_elm.cfg Xsnns/examples/letseq_h_elm.net Xsnns/examples/letseq_test.pat Xsnns/examples/letseq_train.pat Xsnns/examples/letters.README Xsnns/examples/letters.cfg Xsnns/examples/letters.chk Xsnns/examples/letters.net Xsnns/examples/letters.pat Xsnns/examples/letters.res Xsnns/examples/letters3D.cfg Xsnns/examples/letters3D.net Xsnns/examples/letters_test.net Xsnns/examples/letters_untrained.net Xsnns/examples/nettalk.README Xsnns/examples/nettalk.cfg Xsnns/examples/nettalk.net Xsnns/examples/nettalk.pat Xsnns/examples/patmat.README Xsnns/examples/patmat.cfg Xsnns/examples/patmat.chk Xsnns/examples/patmat.net Xsnns/examples/patmat.pat Xsnns/examples/patmat_untrained.net Xsnns/examples/snnsbat1.cfb Xsnns/examples/snnsbat2.cfb Xsnns/examples/som_cube.README Xsnns/examples/som_cube.cfg Xsnns/examples/som_cube.cont Xsnns/examples/som_cube.net Xsnns/examples/som_cube.pat Xsnns/examples/som_cube_norm.pat Xsnns/examples/spirals.pat Xsnns/examples/spirals_dda.README Xsnns/examples/spirals_dda.cfg Xsnns/examples/spirals_dda.net Xsnns/examples/watch.README Xsnns/examples/watch.cfg Xsnns/examples/watch.net Xsnns/examples/watch.pat Xsnns/examples/watch_2out.README Xsnns/examples/watch_2out.cfg Xsnns/examples/watch_2out.net Xsnns/examples/watch_2out.pat Xsnns/examples/watch_edge.pgm Xsnns/examples/watch_edge_invert.pgm Xsnns/examples/watch_orig.pgm Xsnns/examples/xor.README Xsnns/examples/xor.chk Xsnns/examples/xor.net Xsnns/examples/xor.pat Xsnns/examples/xor_rec.cfg Xsnns/examples/xor_rec.net Xsnns/examples/xor_rec1.pat Xsnns/examples/xor_rec2.pat Xsnns/examples/xor_untrained.net X@dirrm snns/bin X@dirrm snns/examples X@dirrm snns END-of-./pkg/PLIST echo x - ./pkg/MESSAGE sed 's/^X//' >./pkg/MESSAGE << 'END-of-./pkg/MESSAGE' X X ************************************************ X Please read the licensing terms described in the X Readme.license file. In particular, please note X that this software is not public domain and that X it comes with NO WARRANTY OF ANY KIND. X ************************************************ X END-of-./pkg/MESSAGE echo c - ./patches mkdir -p ./patches > /dev/null 2>&1 echo x - ./patches/patch-00 sed 's/^X//' >./patches/patch-00 << 'END-of-./patches/patch-00' X*** configure.old Sat Feb 7 17:12:06 1998 X--- configure Sat Feb 7 17:12:24 1998 X*************** X*** 1,4 **** X! #!/bin/tcsh X X # **************************************************************************** X # FILE : configure X--- 1,4 ---- X! #!/bin/csh X X # **************************************************************************** X # FILE : configure END-of-./patches/patch-00 exit >Fix: This is my first port, please be gentle :) Please tell me if I have done anything wrong. I have tried to e-mail the contact, but got no response, so I hope I have fulfilled the lincense terms. Should I have included x11 in the categories if it needs X? >Audit-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 17 13:34:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA26445 for freebsd-ports-outgoing; Tue, 17 Feb 1998 13:34:34 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA26326; Tue, 17 Feb 1998 13:34:02 -0800 (PST) (envelope-from steve) Date: Tue, 17 Feb 1998 13:34:02 -0800 (PST) From: Steve Price Message-Id: <199802172134.NAA26326@hub.freebsd.org> To: Torsten.Grust@uni-konstanz.de, steve, freebsd-ports Subject: Re: ports/5769 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update for port hugs-1.4 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Tue Feb 17 13:33:30 PST 1998 State-Changed-Why: Port updated as requested. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 15:10:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA14387 for freebsd-ports-outgoing; Tue, 17 Feb 1998 15:10:01 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dfw-ix7.ix.netcom.com (dfw-ix7.ix.netcom.com [206.214.98.7]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA14321 for ; Tue, 17 Feb 1998 15:09:47 -0800 (PST) (envelope-from dphi@ix.netcom.com) Received: (from smap@localhost) by dfw-ix7.ix.netcom.com (8.8.4/8.8.4) id RAA18557; Tue, 17 Feb 1998 17:08:34 -0600 (CST) Received: from liv-proxy.fosterfarms.com(208.1.117.20) by dfw-ix7.ix.netcom.com via smap (V1.3) id rma018503; Tue Feb 17 17:08:18 1998 Message-ID: <34EA17D8.2D75@ix.netcom.com> Date: Tue, 17 Feb 1998 15:06:00 -0800 From: Dale Phillips Reply-To: dphi@ix.netcom.com X-Mailer: Mozilla 3.02Gold (WinNT; I) MIME-Version: 1.0 To: itojun@itojun.org CC: ports@FreeBSD.ORG Subject: FreeBSD Port: nvi-m17n-1.79-970820 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 was wondering if you could build nvi with the lines for "configure --program-prefix=p --enable-perlinterp " for the next release of FreeBSD? as I am having a hard time getting it to work.... and I would really like to us perl from inside vi Thanks. -- ------------------------ Dale Phillips dphi@ix.netcom.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 17 15:15:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA15977 for freebsd-ports-outgoing; Tue, 17 Feb 1998 15:15:15 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from coconut.itojun.org (root@coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA15874 for ; Tue, 17 Feb 1998 15:14:54 -0800 (PST) (envelope-from itojun@itojun.org) Received: from localhost (itojun@localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.8.8+3.0Wbeta11/3.6W) with ESMTP id IAA18217; Wed, 18 Feb 1998 08:14:10 +0900 (JST) To: dphi@ix.netcom.com cc: ports@FreeBSD.ORG In-reply-to: dphi's message of Tue, 17 Feb 1998 15:06:00 PST. <34EA17D8.2D75@ix.netcom.com> X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: FreeBSD Port: nvi-m17n-1.79-970820 From: Jun-ichiro itojun Itoh Date: Wed, 18 Feb 1998 08:14:10 +0900 Message-ID: <18213.887757250@coconut.itojun.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >I was wondering if you could build nvi with the lines for >"configure --program-prefix=p --enable-perlinterp " >for the next release of FreeBSD? as I am having a hard >time getting it to work.... and I would really like to >us perl from inside vi If you are taking about the change to editors/nvi, I can't enable perl interpreter for it. editors/nvi includes multilingual enhancement, and does not work with perl interpreter. build-in perl interpreter will see the strangely encoded text, which is used internally by multilingual-nvi. Maybe I can add a new port, say, editors/nvi-perl, which is plain nvi with perl? itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 15:20:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA17670 for freebsd-ports-outgoing; Tue, 17 Feb 1998 15:20:36 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA17596; Tue, 17 Feb 1998 15:20:17 -0800 (PST) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA15738; Tue, 17 Feb 1998 15:14:29 -0800 (PST) (envelope-from nobody) Message-Id: <199802172314.PAA15738@hub.freebsd.org> Date: Tue, 17 Feb 1998 15:14:29 -0800 (PST) From: giffunip@asme.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5775: New graphics port: ppm2fli Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5775 >Category: ports >Synopsis: New graphics port: ppm2fli >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 17 15:20:03 PST 1998 >Last-Modified: >Originator: Pedro F. Giffuni >Organization: U. Nacional de Colombia >Release: 2.2.5-Release >Environment: >Description: This program will procude fli animated format from ppm flies. "unflick" can return the original ppms. >How-To-Repeat: uuencoded port follows >Fix: begin 644 ppm2fli.tar.gz M'XL(`(48ZC0``^T9:W/:1M!?T:_8CCW3Q#5"$@ABINZ$8/`0`V80;CS]XIZD M$]Q8K]Q)=F@F_[U[0B*.$X>D#:29:L?RH=N]V_>>M(KCP/!\5MO;(D!#:YDF M[`'H+5._/Q:@`30;+:.A-W2]@6A=:S;VP-RF4`6D(B$<8"^F+H\^0[<)_X-" MG/M_1&ZHQWRZ#1ZZANYL/.I_76\5_M<:=:V),T;3,/9`VX8P#^%_[O]]&-,[ MB".>"'`BWZ=.PJ(0@CP21D?.]7O&8G)]ER$*X=6;KJ3[6!MKZ50=TA!'YT;5%3>JLA`# MS??;2N7@[6!LS3K#X?5D>G$V[8S>P<';5]-S:]I]5\M7X\QDVNL/KM[5;!9N M6)/S>7P-"O8)'FJ`'GJ_!N_DI:_1^F>V*%1[9(OWFBLJ"QT_=2G\:@M7E8&F M!C>_*=\[[DM805'_9;*++3T%?.GYK[6:>JO9DO7?T%KE^;\+^-#_@;L-FV\X M_P%:YD/_-\UF>?[O`D:G)CSYX)Q='7A/X00,\]AY9I)CS=,-:M3KAF,V'8*I MW-1LSW:-LHC_^%#D?TP29[&E$^`KZK]A&J;,?QS*^K\+>.C_;*P2\BUY;*K_ M6%`>^+]AZ'I9_W'4+S[XUL,FU?ZG$&?VJ#70=/;NMENF*OWN&JUNB9] M2-5L:\:*ZO!#D/=P?*2;D-T![,L+NIY/YB*[_0FZ_6'GS#JI7AA0?87O2!E% M]5\#;H-_JJ-&[4SV3(H<\:@4OVQ5C._M[8]AG?\W\ZWU`+^\_Z=A^M=E1ZAI MZF7]WP7<]_]IS^I.M\!C4_^OU5C['QV?]?_,>OG\OQ.83$9&?S@`A\BF'G'! M99PZB;\$Q!Q-SO!Z,0(2NM#',7M+5&'@04@=*@3A2V")$E/N13P00.!U2L*$ M_96UTU28+:A[,E$L%PH!G_`YA3`-;"1$/`L0(1N9`9%-SM7^ M"^3K4U=5E,LQZM\]ASO.$BI6U#B$T@`0\97>V6(5%&40@A.%"2V4^2XHA^NJ6,)_8>.PK?432-R2( M?8J.L0JB7)I5>Q39I8*%M)#SLIYR@3W.;-82:7^C[\:=.$ M_(Q;.`0U0KD"BJ:1G6;"*5K&QRA!?4)ZITA;H/AH)=DD70)Z`CEBI$%`7)K= M8@2%8%V.0>`>3A735EI!P)-;PEF4BH*]4%!SI*M>6$^/Y)I)%W@:AE+VX6!\ M>949/@U=--7(.KVP+,1#$ MF`L8B!BCTETJ7-[;<9#'+P21RSQ&7:5HJ*O0"9=W9'DD(RRS"`UO&8]"Z56T M&\9E'GZ2U;H-+PVV3CDT.S[.G/MH5>@MT/0>1Q;PY$;./*>RL:VZ/E==^G3C M$\?]^M^]&(UZX]DWKS&;^S_-HOX;6EV>_T;+:)7U?Q=PF3`?RY8,[0@KBZR< MLNYEA1ZC$"?7Z5_4+!N+SAWAKE#_@\^S)7P=W,__R7!@??OL_ZK\SY__#;/, J_]V`S<+B@Y\B?^=?[I1/?`W\Q->][RU]"2644$()_Q3^!F,WI6@`*``` ` end >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 15:30:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA20269 for freebsd-ports-outgoing; Tue, 17 Feb 1998 15:30:25 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA20217; Tue, 17 Feb 1998 15:30:15 -0800 (PST) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA18538; Tue, 17 Feb 1998 15:23:29 -0800 (PST) (envelope-from nobody) Message-Id: <199802172323.PAA18538@hub.freebsd.org> Date: Tue, 17 Feb 1998 15:23:29 -0800 (PST) From: giffunip@asme.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5776: New compression port: lzo Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5776 >Category: ports >Synopsis: New compression port: lzo >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 17 15:30:08 PST 1998 >Last-Modified: >Originator: Pedro F. Giffuni >Organization: U. Nacional de Colombia >Release: 2.2.5-Release >Environment: >Description: A compression library for real time applications. Shared libraries were not generated because libtools had problems identifying FreeBSD. Non-shared versions work. >How-To-Repeat: uuencoded port follows >Fix: begin 644 lzo.tar.gz M'XL(`$L&ZC0``^T8?V_:1C3_XD_QJE9:FPEC&S`T6J92((@U0`9TK:I)Z+#/ M^!;;QWSG$%+EN^^=#0G0T%1:R;3-3T+X[MY[]W[[/0"Q4;:L(Z@>6C`%B9`D!CB:4S?F7\%[[/Q?"@'Z MWV,!%0>,@F_TOVU95MFLX;-I5BPC]_]3P+W_0_=0]C8-P\:TWN__FKGC?\NP MRT=@'$B>+?B?^[_7JL)+#(*BJ1ME'4VASVY>P2FXKZGAE0UBEJDW+=O$X!OK?]6RC'+9KJKZ;QKY^_])8.W_ M5GO4'![H#JS_7_._5;:MN_ZOIIY-LU:KY/7_*2#UP/FG`3`!!%PB"3@\G,=4 M",8C"-@T)O$2%CYS?(4C$B;)-*#@\3A%UU(.+BV6-NE8!#$E05&RD.HP]I$R MI"02P"1XY(HG,;*:4^H"OZ)QQF.3/B:2<3W;[T)$0L1$4B4H^BMR631+)3BG MX9P&Q4_LJCB8TMA/0AKKFG:O53@/:$@CJ;2+DA!Q@'M`@AF/F?1#`0O\`^DK MA8*`+U+&E,@$)3G1UO7I1VC1+?50^I0UH"QPC"HLCU$O(?4-DB'],V%(`1%' MY4..9DR-MLEI$[^Y?0$^2[G@.3@,A)`,@=Z M+>-M;Q.)5LK,[EW$8^54NG:AEQKP7C&4A"FU)0:!FSC4W12F M&SE!XJ("6W%&KV@@4AUF-*+*_>@(/"ZNL?">^W!+(8M)XO@,B5%PM(ND*5->=B[.7\%G((F'49Q(@3K=ZC":4T<%0I#ABG7\8`*E^RJP M.?)?*4OF<\14-L0D)F@X,KFS17;6TYVUL[/V M=M;7.^OESOIF>VWMW(=MAN*(Y:B$/]S0R>8B()KPL3_->PR/Y;UK9^S^=_ZMF-?O^:^;Y_Q3P'/ITD?8`:B`+`NJH M%A\;\"PDU%1P4L`@T9[#;S3.)JEL`G5/"NJ;,1ZTB)J[<,:1:K-@F7!&IV"^ M?EW'PP\^#W&S,&.>ARW\_`T1(=5Y/-.>X^F+KGL"+_!1:^'[I]_HM4]74;'^ M)JTU&^-V9S#LMD>G!5?-95JO,1JWAY-1%[-1H7O9`,`"5Y!$9^[5SJQ0FB?3 M4NA=IPE5^%TK%#(**:Z+IJF'6.9P3$VQD`@'!<&3V*%"U161$;SXO''I9/2^ MK_YOM>W-MZWN\#2EV6B>-$3J]L?X:P\SW5)COSF+*7T[:NF#84?3<(:;-`?] MLV[G_;!]6EA2@;89J4+@KIHO1M.Q*_I!PH+'EVK2>O8,D>ZH)HUA!ZU1+-)( M=7/%M(RXIXJ5-L=AOL@BC/0@.-%TYL$S%]T;4?=E?W`Q&(Y;@^;HE::T?(5>.M9T&KG,TU#$K.C#3U/AZLI@>GCY<]Y_YI!##CGDD$,..?Q]^`LW 'IGMO`"@``-9T ` end >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 15:34:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA21086 for freebsd-ports-outgoing; Tue, 17 Feb 1998 15:34:41 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mailhost.Ipsilon.COM (mailhost.ipsilon.com [205.226.5.12]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id PAA21001 for ; Tue, 17 Feb 1998 15:34:20 -0800 (PST) (envelope-from mitzel@Ipsilon.COM) Received: from mustang.ipsilon.com (mustang.Ipsilon.COM [205.226.1.196]) by mailhost.Ipsilon.COM (8.6.11/8.6.10) with ESMTP id PAA14007 for ; Tue, 17 Feb 1998 15:33:46 -0800 Message-Id: <199802172333.PAA14007@mailhost.Ipsilon.COM> To: freebsd-ports@FreeBSD.ORG Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 17 Feb 1998 15:33:32 -0800 From: "Danny J. Mitzel" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org unsubscribe freebsd-ports To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 17:54:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA18606 for freebsd-ports-outgoing; Tue, 17 Feb 1998 17:54:26 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA18564; Tue, 17 Feb 1998 17:54:10 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA04560; Tue, 17 Feb 1998 16:51:39 -0800 (PST) Date: Tue, 17 Feb 1998 16:51:39 -0800 (PST) Message-Id: <199802180051.QAA04560@freefall.freebsd.org> To: taguchi@tohoku.iij.ad.jp, asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5770 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: PKG_NAME on ports japanese/expect is *NOT* correct State-Changed-From-To: closed-open State-Changed-By: asami State-Changed-When: Tue Feb 17 16:49:47 PST 1998 State-Changed-Why: Sorry, but did you actually try it? There are lots of dragons lurking in there. The ordering of variables have to be carefully examined for wholescale Makefile inclusions like this (and some of the "="s have to be changed to "?=" in lang/expect/Makefile for these to take effect too). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 17:56:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19054 for freebsd-ports-outgoing; Tue, 17 Feb 1998 17:56:06 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA18940; Tue, 17 Feb 1998 17:55:53 -0800 (PST) (envelope-from steve) Date: Tue, 17 Feb 1998 17:55:53 -0800 (PST) From: Steve Price Message-Id: <199802180155.RAA18940@hub.freebsd.org> To: steve, freebsd-bugs, freebsd-ports Subject: Re: bin/5774 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New graphics port: fbm-1.2 Responsible-Changed-From-To: freebsd-bugs->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Tue Feb 17 17:55:01 PST 1998 Responsible-Changed-Why: Misfiled PR. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 18:18:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA22997 for freebsd-ports-outgoing; Tue, 17 Feb 1998 18:18:15 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from megaweapon.zigg.com (tcgr1-40.dialup.alliance.net [207.74.43.40]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA22805; Tue, 17 Feb 1998 18:17:23 -0800 (PST) (envelope-from matt@zigg.com) Received: from localhost (matt@localhost) by megaweapon.zigg.com (8.8.8/8.8.8) with SMTP id VAA12210; Tue, 17 Feb 1998 21:17:39 -0500 (EST) (envelope-from matt@megaweapon.zigg.com) Date: Tue, 17 Feb 1998 21:17:39 -0500 (EST) From: Matt Behrens To: pst@FreeBSD.ORG, ports@FreeBSD.ORG Subject: mail/imap-uw 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 someone going to fix mail/imap-uw soon? It's been pretty much dead for some time... the patches fail... TIA :) Matt Behrens | "Separation of church and state is http://www.zigg.com/ | absolutely essential," they say. Chanop Script Coordinator | Why, then, do they make America's World-Wide FreeNet IRC Network | state religion atheism? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 18:23:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA23979 for freebsd-ports-outgoing; Tue, 17 Feb 1998 18:23:20 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA23873; Tue, 17 Feb 1998 18:22:43 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id SAA21386; Tue, 17 Feb 1998 18:22:05 -0800 (PST) To: Matt Behrens cc: pst@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: mail/imap-uw In-reply-to: Your message of "Tue, 17 Feb 1998 21:17:39 EST." Date: Tue, 17 Feb 1998 18:22:04 -0800 Message-ID: <21382.887768524@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Is someone going to fix mail/imap-uw soon? It's been pretty much dead for > some time... the patches fail... Such fixing goes a lot faster when new patches accompany such messages. :-) 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 17 19:44:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA05952 for freebsd-ports-outgoing; Tue, 17 Feb 1998 19:44:54 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA05736; Tue, 17 Feb 1998 19:42:50 -0800 (PST) (envelope-from gnats) Received: from rigel.opt.phys.waseda.ac.jp (root@rigel.opt.phys.waseda.ac.jp [133.9.185.167]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA04658 for ; Tue, 17 Feb 1998 19:35:02 -0800 (PST) (envelope-from junk@earth.opt.phys.waseda.ac.jp) Received: from moon.opt.phys.waseda.ac.jp (pc023179.ppp.waseda.ac.jp [133.9.23.179]) by rigel.opt.phys.waseda.ac.jp (8.8.8/3.6W/rigel-0.3) with ESMTP id JAA23976; Tue, 17 Feb 1998 09:39:46 +0900 (JST) Received: (from junk@localhost) by moon.opt.phys.waseda.ac.jp (8.8.5/3.5Wpl4/moon-0.7) id AAA04007; Tue, 17 Feb 1998 00:13:37 +0900 (JST) Message-Id: <199802161513.AAA04007@moon.opt.phys.waseda.ac.jp> Date: Tue, 17 Feb 1998 00:13:37 +0900 (JST) From: kuriyama@opt.phys.waseda.ac.jp Reply-To: kuriyama@opt.phys.waseda.ac.jp To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: kuriyama@opt.phys.waseda.ac.jp X-Send-Pr-Version: 3.2 Subject: ports/5777: update ports/news/suck Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5777 >Category: ports >Synopsis: update ports/news/suck >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 17 19:41:09 PST 1998 >Last-Modified: >Originator: Jun Kuriyama >Organization: Waseda Univ., Japan >Release: FreeBSD 2.2.2-RELEASE i386 >Environment: FreeBSD moon.opt.phys.waseda.ac.jp 2.2.2-RELEASE FreeBSD 2.2.2-RELEASE #5: Sat Nov 29 14:35:53 JST 1997 junk@moon.opt.phys.waseda.ac.jp:/usr/src/sys/compile/MOON i386 >Description: 1) upgrade 3.9.0 -> 3.9.1 2) change news history path from /usr/local/news/history to /usr/local/news/lib/history to fit other news program such as ports/news/inn. I put patch in "Fix:" section. >How-To-Repeat: >Fix: Index: suck/Makefile =================================================================== RCS file: /home/ncvs/ports/news/suck/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- Makefile 1998/02/08 13:13:52 1.9 +++ Makefile 1998/02/16 15:03:49 @@ -1,12 +1,12 @@ # New ports collection makefile for: suck -# Version required: 3.9.0 +# Version required: 3.9.1 # Date created: 30 Mar 1996 # Whom: graphite@taurus.bekkoame.or.jp # # $Id: Makefile,v 1.9 1998/02/08 13:13:52 jseger Exp $ # -DISTNAME= suck-3.9.0 +DISTNAME= suck-3.9.1 CATEGORIES= news MASTER_SITES= http://www.pixi.com/~boby/ Index: suck/files/md5 =================================================================== RCS file: /home/ncvs/ports/news/suck/files/md5,v retrieving revision 1.7 diff -u -r1.7 md5 --- md5 1998/02/08 13:14:10 1.7 +++ md5 1998/02/13 13:48:39 @@ -1 +1 @@ -MD5 (suck-3.9.0.tar.gz) = c2e0a53d085d87cfe8ecd1d2aa9f2b53 +MD5 (suck-3.9.1.tar.gz) = 14e06d1f92f7af276e23eed9628b2f25 Index: suck/patches/patch-aa =================================================================== RCS file: /home/ncvs/ports/news/suck/patches/patch-aa,v retrieving revision 1.6 diff -u -r1.6 patch-aa --- patch-aa 1997/10/29 23:10:10 1.6 +++ patch-aa 1998/02/14 02:11:07 @@ -5,7 +5,7 @@ # Step1: Define the location of the History file(s) #HISTORYF=/var/news/etc/history -HISTORYF=/usr/lib/news/history -+HISTORYF=/usr/local/news/history ++HISTORYF=/usr/local/news/lib/history # Step 2: Define ONE of the CHKHISTORY CHKHISTORY=chkhistory.o # use flat file history routine begin 644 suck.dif.gz M'XL("&!5Z#0"`W-U8VLN9&EF`+U42V^;0!`^PZ\8*3FD(K#L8L`@67(4NXU5 M.9%LJU5/U1H&F_@!718[Z:&_O;O8L>,T/E4*0JQFYYN9;UX,UBD^Q5#5R8(, M^0*S?(EFY_\?@9" M'55>K($ZD9GF609V#;90$APHVK9]$`P:16WB,N*V@7JQ>GUF:%O+LOX%T0"H M'[M>W(K,;A=L>DT96,VWVS7A`NYQ"PU12(KE$A.IJ:SV;B`K1&QH\J9]`=]0 M-$0%_JIS@6EL>$[DN*9U3D5U@!Z7"(E`=:AKPW,520&*7Z"UWU6YU*TQ$[R< MYQ*[DM>BKIPI+A8%7Z%3".>Q5$@-OARD,1RKJ"L&[U0#'BNC"?]T<_Q8*+OYE*6 M,2';[=8I\Z?<28H5^3,MIL]$11J\&C%-LR*KU/^X&3N$/#MDXNII?:L=>_NI4B.EY\D>]GRX.E;8D5PXL]^?H`,)0Y?[ M7NJV_;0=)AFV,4EIRCB/,C;U/=,ZM:6O;&D+W2"E6<2RD&LO5ZHPEEC2&GEJ=-8*<(RR+A#?+7F2- M?)=7LA#/39I7U2=M=:?6XV'TXW.';+C8)8HR(?,=T@3["*@K09;Y=`=Z`=C6 M&X`*N3R%6.Audit-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 17 20:11:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA10543 for freebsd-ports-outgoing; Tue, 17 Feb 1998 20:11:16 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-51.ix.netcom.com [207.93.143.179]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA10516 for ; Tue, 17 Feb 1998 20:11:05 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id UAA08803; Tue, 17 Feb 1998 20:11:00 -0800 (PST) Date: Tue, 17 Feb 1998 20:11:00 -0800 (PST) Message-Id: <199802180411.UAA08803@silvia.HIP.Berkeley.EDU> To: ports@FreeBSD.ORG Subject: new category: "compress" From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org We already have bzip, bzip2, freeze and p5-Compress-Zlib in archivers, even though none of the above (as far as I can tell from reading the docs) actually work as archivers. What do people think about a new category "compress" for the above plus the newly submitted lzo? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 20:15:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA11222 for freebsd-ports-outgoing; Tue, 17 Feb 1998 20:15:35 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA11155; Tue, 17 Feb 1998 20:15:06 -0800 (PST) (envelope-from grog@lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.8.7/8.8.5) with ESMTP id OAA28681; Wed, 18 Feb 1998 14:44:50 +1030 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.8.8/8.8.7) id OAA21904; Wed, 18 Feb 1998 14:44:49 +1030 (CST) (envelope-from grog) Message-ID: <19980218144449.42585@freebie.lemis.com> Date: Wed, 18 Feb 1998 14:44:49 +1030 From: Greg Lehey To: Satoshi Asami , ports@FreeBSD.ORG Subject: Re: new category: "compress" References: <199802180411.UAA08803@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: <199802180411.UAA08803@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Tue, Feb 17, 1998 at 08:11:00PM -0800 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 17 February 1998 at 20:11:00 -0800, Satoshi Asami wrote: > We already have bzip, bzip2, freeze and p5-Compress-Zlib in archivers, > even though none of the above (as far as I can tell from reading the > docs) actually work as archivers. > > What do people think about a new category "compress" for the above > plus the newly submitted lzo? I'd be more inclined to change the name 'archivers' to something which more obviously includes compressors. Greg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 20:31:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA13999 for freebsd-ports-outgoing; Tue, 17 Feb 1998 20:31:26 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA13898; Tue, 17 Feb 1998 20:30:41 -0800 (PST) (envelope-from steve) Date: Tue, 17 Feb 1998 20:30:41 -0800 (PST) From: Steve Price Message-Id: <199802180430.UAA13898@hub.freebsd.org> To: giffunip@asme.org, steve, freebsd-ports Subject: Re: ports/5775 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New graphics port: ppm2fli State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Tue Feb 17 20:28:24 PST 1998 State-Changed-Why: New port committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 20:51:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA16970 for freebsd-ports-outgoing; Tue, 17 Feb 1998 20:51:57 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from bachue.usc.unal.edu.co ([168.176.3.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA16934 for ; Tue, 17 Feb 1998 20:51:45 -0800 (PST) (envelope-from giffunip@asme.org) Received: from giffuni.usc.unal.edu.co ([168.176.3.40]) by bachue.usc.unal.edu.co (Netscape Messaging Server 3.0) with SMTP id AAA5462 for ; Tue, 17 Feb 1998 23:54:37 +0500 Message-ID: <34EA68DA.167EB0E7@asme.org> Date: Tue, 17 Feb 1998 23:51:38 -0500 From: "Pedro F. Giffuni" Organization: U. Nacional de Colombia X-Mailer: Mozilla 3.01Gold (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: Re: new category: "compress" References: <199802180411.UAA08803@silvia.HIP.Berkeley.EDU> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Satoshi Asami wrote: > ... > What do people think about a new category "compress" for the above > plus the newly submitted lzo? > FWIW, I didn't put lzo in "archivers", but under "devel". I'll port the real compresor (lzop), when I find some fix for the shared libraries. I don't find a need for the new category, somehow I always know where to look for the compression stuff. The real mess is the x11 category :-(. cheers, Pedro. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 20:58:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA17726 for freebsd-ports-outgoing; Tue, 17 Feb 1998 20:58:59 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-51.ix.netcom.com [207.93.143.179]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA17718 for ; Tue, 17 Feb 1998 20:58:54 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id UAA08850; Tue, 17 Feb 1998 20:23:52 -0800 (PST) Date: Tue, 17 Feb 1998 20:23:52 -0800 (PST) Message-Id: <199802180423.UAA08850@silvia.HIP.Berkeley.EDU> To: grog@lemis.com CC: ports@FreeBSD.ORG In-reply-to: <19980218144449.42585@freebie.lemis.com> (message from Greg Lehey on Wed, 18 Feb 1998 14:44:49 +1030) Subject: Re: new category: "compress" From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * I'd be more inclined to change the name 'archivers' to something which * more obviously includes compressors. Like what? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 21:17:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA20688 for freebsd-ports-outgoing; Tue, 17 Feb 1998 21:17:38 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA20638; Tue, 17 Feb 1998 21:17:30 -0800 (PST) (envelope-from steve) Date: Tue, 17 Feb 1998 21:17:30 -0800 (PST) From: Steve Price Message-Id: <199802180517.VAA20638@hub.freebsd.org> To: kuriyama@opt.phys.waseda.ac.jp, steve, freebsd-ports Subject: Re: ports/5777 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports/news/suck State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Tue Feb 17 21:16:54 PST 1998 State-Changed-Why: Port update committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 21:22:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA21443 for freebsd-ports-outgoing; Tue, 17 Feb 1998 21:22:36 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from megaweapon.zigg.com (tcgr1-40.dialup.alliance.net [207.74.43.40]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA21300 for ; Tue, 17 Feb 1998 21:22:03 -0800 (PST) (envelope-from matt@zigg.com) Received: from localhost (matt@localhost) by megaweapon.zigg.com (8.8.8/8.8.8) with SMTP id AAA15112 for ; Wed, 18 Feb 1998 00:22:10 -0500 (EST) (envelope-from matt@megaweapon.zigg.com) Date: Wed, 18 Feb 1998 00:22:09 -0500 (EST) From: Matt Behrens To: ports@FreeBSD.ORG Subject: Jordan's challenge (imap-uw) 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 Allright, I checked imap-uw out. I can't let Jordan sit there and tell me how lazy I am, even if it's true. :) First, I noted that yes, imap-4.1-BETA does indeed have a bsf target to make for, and was wondering just why we even needed patches in that case. I got it to compile and it seems to work by simply removing all the patch files and commenting out the first line under the do-install target (the one that installs the c-client shared lib, I assume). I tried mboxtest and the imap server, both seem to work OK. pop2 and pop3 most likely work as well. I suppose we'd really want the c-client shared library working, ideally; esp. considering possible high load conditions; but on my little ol' box the statics work just fine. I did note that the Makefile that was patched by patch-ab is nothing short of totally rearranged now, which is probably what was breaking the current port. I won't comment about software maintainers changing file structures so radically and not even changing the tarball name except to say "Yeesh". Matt Behrens | "Separation of church and state is http://www.zigg.com/ | absolutely essential," they say. Chanop Script Coordinator | Why, then, do they make America's World-Wide FreeNet IRC Network | state religion atheism? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 21:39:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA23931 for freebsd-ports-outgoing; Tue, 17 Feb 1998 21:39:05 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from alpha.xerox.com (firewall-user@alpha.Xerox.COM [13.1.64.93]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id VAA23894 for ; Tue, 17 Feb 1998 21:38:46 -0800 (PST) (envelope-from fenner@parc.xerox.com) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <52081(2)>; Tue, 17 Feb 1998 21:38:38 PST Received: from localhost by crevenia.parc.xerox.com with SMTP id <177476>; Tue, 17 Feb 1998 21:38:36 -0800 To: "Jordan K. Hubbard" cc: ports@FreeBSD.ORG Subject: Re: Help me can't send-pr! In-reply-to: Your message of "Sat, 14 Feb 98 05:20:03 PST." <16690.887462403@time.cdrom.com> Date: Tue, 17 Feb 1998 21:38:28 PST From: Bill Fenner Message-Id: <98Feb17.213836pst.177476@crevenia.parc.xerox.com> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Sigh. hub shouldn't have any programs that aren't local in its aliases file. For things that aren't local, it should use a wrapper that exits with EX_TEMPFAIL if the exec fails, so that sendmail queues instead of bounces. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 21:42:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA24623 for freebsd-ports-outgoing; Tue, 17 Feb 1998 21:42:52 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA24588 for ; Tue, 17 Feb 1998 21:42:41 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id VAA23522; Tue, 17 Feb 1998 21:42:18 -0800 (PST) To: Bill Fenner cc: ports@FreeBSD.ORG Subject: Re: Help me can't send-pr! In-reply-to: Your message of "Tue, 17 Feb 1998 21:38:28 PST." <98Feb17.213836pst.177476@crevenia.parc.xerox.com> Date: Tue, 17 Feb 1998 21:42:18 -0800 Message-ID: <23518.887780538@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Pardon? Erm. Am I missing some context here? Is this something that should be going to the postmaster? > Sigh. hub shouldn't have any programs that aren't local in its aliases > file. For things that aren't local, it should use a wrapper that exits > with EX_TEMPFAIL if the exec fails, so that sendmail queues instead of > bounces. > > Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 22:05:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA27739 for freebsd-ports-outgoing; Tue, 17 Feb 1998 22:05:26 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-51.ix.netcom.com [207.93.143.179]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA27718 for ; Tue, 17 Feb 1998 22:05:12 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id WAA09183; Tue, 17 Feb 1998 22:03:22 -0800 (PST) Date: Tue, 17 Feb 1998 22:03:22 -0800 (PST) Message-Id: <199802180603.WAA09183@silvia.HIP.Berkeley.EDU> To: matt@zigg.com CC: ports@FreeBSD.ORG In-reply-to: (message from Matt Behrens on Wed, 18 Feb 1998 00:22:09 -0500 (EST)) Subject: Re: Jordan's challenge (imap-uw) From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * what was breaking the current port. I won't comment about software * maintainers changing file structures so radically and not even changing * the tarball name except to say "Yeesh". That has always been a problem with this port. If someone can take care of housing a "known good" tarball (like Imagemagick and lynx), it will be much easier for people to use. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 22:13:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA29084 for freebsd-ports-outgoing; Tue, 17 Feb 1998 22:13:52 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA28995; Tue, 17 Feb 1998 22:13:27 -0800 (PST) (envelope-from steve) Date: Tue, 17 Feb 1998 22:13:27 -0800 (PST) From: Steve Price Message-Id: <199802180613.WAA28995@hub.freebsd.org> To: kuriyama@opt.phys.waseda.ac.jp, steve, freebsd-ports Subject: Re: ports/5761 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ports/news/inn State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Tue Feb 17 22:12:30 PST 1998 State-Changed-Why: Binaries are now stripped on install. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 22:14:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA29274 for freebsd-ports-outgoing; Tue, 17 Feb 1998 22:14:37 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-51.ix.netcom.com [207.93.143.179]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA29246 for ; Tue, 17 Feb 1998 22:14:27 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id WAA09220; Tue, 17 Feb 1998 22:14:20 -0800 (PST) Date: Tue, 17 Feb 1998 22:14:20 -0800 (PST) Message-Id: <199802180614.WAA09220@silvia.HIP.Berkeley.EDU> To: giffunip@asme.org CC: ports@FreeBSD.ORG In-reply-to: <34EA68DA.167EB0E7@asme.org> (giffunip@asme.org) Subject: Re: new category: "compress" From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * FWIW, I didn't put lzo in "archivers", but under "devel". I'll port the * real compresor (lzop), when I find some fix for the shared libraries. Um, devel is one of the other category that's abused. :< Just because it's a library doesn't mean it should go into devel -- if it has a clearly defined function, it should go to that category instead (like compress). Maybe we should create a new category "debug" and most most of "devel" over? * I don't find a need for the new category, somehow I always know where to * look for the compression stuff. The real mess is the x11 category :-(. x11 is beyond rescue.... Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 22:32:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA00949 for freebsd-ports-outgoing; Tue, 17 Feb 1998 22:32:00 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA00932; Tue, 17 Feb 1998 22:31:42 -0800 (PST) (envelope-from asami@FreeBSD.org) From: Satoshi Asami Received: (from asami@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA08948; Tue, 17 Feb 1998 22:31:12 -0800 (PST) Date: Tue, 17 Feb 1998 22:31:12 -0800 (PST) Message-Id: <199802180631.WAA08948@freefall.freebsd.org> To: taguchi@tohoku.iij.ad.jp, asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/5770 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: PKG_NAME on ports japanese/expect is *NOT* correct State-Changed-From-To: open-feedback State-Changed-By: asami State-Changed-When: Tue Feb 17 22:30:33 PST 1998 State-Changed-Why: A different patch applied to ports-current, please let me know how it works for you. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Feb 17 23:57:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA11277 for freebsd-ports-outgoing; Tue, 17 Feb 1998 23:57:55 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from allegro.lemis.com (allegro.lemis.com [192.109.197.134]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA11183; Tue, 17 Feb 1998 23:57:29 -0800 (PST) (envelope-from grog@lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.8.7/8.8.5) with ESMTP id SAA28906; Wed, 18 Feb 1998 18:27:24 +1030 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.8.8/8.8.7) id SAA27916; Wed, 18 Feb 1998 18:27:24 +1030 (CST) (envelope-from grog) Message-ID: <19980218182723.49676@freebie.lemis.com> Date: Wed, 18 Feb 1998 18:27:23 +1030 From: Greg Lehey To: Satoshi Asami Cc: ports@FreeBSD.ORG Subject: Re: new category: "compress" References: <19980218144449.42585@freebie.lemis.com> <199802180423.UAA08850@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: <199802180423.UAA08850@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Tue, Feb 17, 1998 at 08:23:52PM -0800 WWW-Home-Page: http://www.lemis.com/~grog Organization: LEMIS, PO Box 460, Echunga SA 5153, Australia Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-41-739-7062 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 17 February 1998 at 20:23:52 -0800, Satoshi Asami wrote: > * I'd be more inclined to change the name 'archivers' to something which > * more obviously includes compressors. > > Like what? You expect me to have all the answers? How about "packaging"? Greg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 00:16:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA13592 for freebsd-ports-outgoing; Wed, 18 Feb 1998 00:16:51 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-51.ix.netcom.com [207.93.143.179]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA13587 for ; Wed, 18 Feb 1998 00:16:49 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id AAA09611; Wed, 18 Feb 1998 00:16:15 -0800 (PST) Date: Wed, 18 Feb 1998 00:16:15 -0800 (PST) Message-Id: <199802180816.AAA09611@silvia.HIP.Berkeley.EDU> To: grog@lemis.com CC: ports@FreeBSD.ORG In-reply-to: <19980218182723.49676@freebie.lemis.com> (message from Greg Lehey on Wed, 18 Feb 1998 18:27:23 +1030) Subject: Re: new category: "compress" From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * On Tue, 17 February 1998 at 20:23:52 -0800, Satoshi Asami wrote: * > * I'd be more inclined to change the name 'archivers' to something which * > * more obviously includes compressors. * > * > Like what? * * You expect me to have all the answers? How about "packaging"? No, but it's easy to suggest that a category should contain such and such, it's hard to come up with a good name. As for packaging, it's too reminiscent of our package system and also too ambiguous to mean "archivers and compressors". Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 03:20:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA09488 for freebsd-ports-outgoing; Wed, 18 Feb 1998 03:20:20 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA09463; Wed, 18 Feb 1998 03:20:08 -0800 (PST) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA08349; Wed, 18 Feb 1998 03:12:27 -0800 (PST) (envelope-from nobody) Message-Id: <199802181112.DAA08349@hub.freebsd.org> Date: Wed, 18 Feb 1998 03:12:27 -0800 (PST) From: nakai@technologist.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5780: Fixed port: icewm Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5780 >Category: ports >Synopsis: Fixed port: icewm >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 18 03:20:02 PST 1998 >Last-Modified: >Originator: Yukihiro Nakai >Organization: Apricot, Japan >Release: 3.0-current >Environment: >Description: I have fixed the icewm port to follow the latest version and include Steve Farrel's suggestion. Please enjoy. Yukihiro Nakai ----------- diff -ruN icewm.orig/Makefile icewm/Makefile --- icewm.orig/Makefile Wed Feb 18 10:04:16 1998 +++ icewm/Makefile Wed Feb 18 10:41:26 1998 @@ -6,14 +6,16 @@ # $Id: Makefile,v 1.2 1997/12/27 17:14:18 max Exp $ # -DISTNAME= icewm-0.8.9 +DISTNAME= icewm-0.8.11 CATEGORIES= x11 -MASTER_SITES= ${MASTER_SITE_SUNSITE} -MASTER_SITE_SUBDIR= X11/window-managers +MASTER_SITES= http://ixtas.fri.uni-lj.si/%7Emarkom/icewm/ EXTRACT_SUFX= .src.tar.gz MAINTAINER= Nakai@Mlab.t.u-tokyo.ac.jp USE_X11= yes + +post-install: + ${CP} ${FILESDIR}/bsd-daemon.xpm ${PREFIX}/lib/X11/icewm/taskbar .include diff -ruN icewm.orig/files/bsd-daemon.xpm icewm/files/bsd-daemon.xpm --- icewm.orig/files/bsd-daemon.xpm Thu Jan 1 09:00:00 1970 +++ icewm/files/bsd-daemon.xpm Wed Feb 18 10:06:39 1998 @@ -0,0 +1,169 @@ +/* XPM */ +static char * bsd_daemon_xpm[] = { +"48 20 146 2", +" c #D75CD75CD75C", +". c #D75CD34CD75C", +"X c #96588A288E38", +"o c #8E3875D671C6", +"O c #CF3CC71BC71B", +"+ c #B6DAB2CAAEBA", +"@ c #C71BC30BBEFB", +"# c #96587DF779E7", +"$ c #5965208128A2", +"% c #79E761855965", +"& c #BEFBBEFBBEFB", +"* c #BEFBBAEABEFB", +"= c #79E749244103", +"- c #C71BC71BC71B", +"; c #D75CCF3CCF3C", +": c #8E3820811861", +"> c #79E73CF34103", +", c #8E382CB22081", +"< c #79E724922081", +"1 c #4924249228A2", +"2 c #492428A230C2", +"3 c #96588E388E38", +"4 c #9E798E388E38", +"5 c #79E728A22081", +"6 c #71C6659569A6", +"7 c #9658410338E3", +"8 c #C71B9A699E79", +"9 c #BEFB75D671C6", +"0 c #BEFB92489658", +"q c #861724921861", +"w c #71C624922081", +"e c #861724922081", +"r c #6185208128A2", +"t c #861779E779E7", +"y c #B6DAAEBAAEBA", +"u c #8E3869A671C6", +"i c #9E795D755965", +"p c #DF7DE79DEFBE", +"a c #96582CB22081", +"s c #5144208128A2", +"d c #596534D338E3", +"f c #79E755555144", +"g c #8617618569A6", +"h c #D75CC71BCF3C", +"j c #9E7928A22081", +"k c #69A624922081", +"l c #514434D338E3", +"z c #000000000000", +"x c #59655D755965", +"c c #410345144103", +"v c #8E388E388E38", +"b c #186118611040", +"n c #861755555144", +"m c #C71BC30BC71B", +"M c #965824921861", +"N c #8E381C711861", +"B c #69A620812081", +"V c #8E3841034103", +"C c #9E795D756185", +"Z c #8E3824921861", +"A c #618520812081", +"S c #618559655965", +"D c #71C675D671C6", +"F c #28A22CB228A2", +"G c #8E3871C671C6", +"H c #9E7996589658", +"J c #71C66DB669A6", +"K c #79E738E330C2", +"L c #79E720811861", +"P c #9E7918611040", +"I c #86171C711861", +"U c #AEBAAEBAAEBA", +"Y c #79E761856185", +"T c #9E7992489658", +"R c #69A6659569A6", +"E c #618555555965", +"W c #8E3861855965", +"Q c #86176DB669A6", +"! c #69A628A228A2", +"~ c #71C620812081", +"^ c #5965208130C2", +"/ c #8E387DF779E7", +"( c #A699A699A699", +") c #CF3CCF3CCF3C", +"_ c #71C669A669A6", +"` c #79E71C711861", +"' c #79E769A669A6", +"] c #79E749244924", +"[ c #71C620811861", +"{ c #514434D34103", +"} c #A6999E799E79", +"| c #69A6249228A2", +" . c #79E724921861", +".. c #79E765956185", +"X. c #514438E34103", +"o. c #965818611040", +"O. c #4924208128A2", +"+. c #AEBAA2899E79", +"@. c #8E3865956185", +"#. c #61851C712081", +"$. c #59651C7128A2", +"%. c #49241C7128A2", +"&. c #8E3869A66185", +"*. c #514428A230C2", +"=. c #B6DAB6DAB6DA", +"-. c #CF3CCB2BCF3C", +";. c #71C63CF338E3", +":. c #4103208128A2", +">. c #71C661856185", +",. c #B6DAB2CAB6DA", +"<. c #79E779E779E7", +"1. c #71C645144103", +"2. c #41031C711861", +"3. c #59652CB230C2", +"4. c #38E328A230C2", +"5. c #9E7992489E79", +"6. c #CF3CCB2BD75C", +"7. c #9E7996589E79", +"8. c #BEFBB6DABEFB", +"9. c #861771C679E7", +"0. c #596549244924", +"q. c #514438E338E3", +"w. c #492438E34103", +"e. c #A6999A699E79", +"r. c #618551445965", +"t. c #61854D345144", +"y. c #71C65D756185", +"u. c #965886178617", +"i. c #69A661856185", +"p. c #A699A699AEBA", +"a. c #61854D345965", +"s. c #51443CF34103", +"d. c #492438E34924", +"f. c #59654D345965", +"g. c #9E799A699E79", +"h. c #71C634D330C2", +"j. c #AEBAA699A699", +"k. c #61855D755965", +"l. c #BEFBBAEAB6DA", +"z. c #9658820779E7", +"x. c #8617451438E3", +"c. c #79E771C671C6", +"v. c #38E328A228A2", +"b. c #79E74D344924", +"n. c #69A669A66185", +"m. c #965892489658", +" . X o O + @ ", +" # $ o % X & * = - ", +" ; : > , < 1 2 3 4 5 6 ", +" ; 7 8 9 0 q w w e r t ", +" y u i 8 p a w s s d . ", +" f $ r g h j k s l * ", +" z z z z z x & c z z z x v z z z z b v @ n m M N B V C Z A s S ", +" v z x v v c z v b b v D F z v c z v v x z b m G H J K 5 L P P I $ $ U ", +" v z v v z & c z v v z v c z c z Y T R E W Q ! ~ $ s ^ / ", +" c z D v D b c c z F v ( z F c z ) H H _ ` ' ] : [ ~ { ", +" & F z z z z z ( x b z z z D ( z c F z } | s [ P .B { ", +" v z c & z c & D b z c z v & z x ..X.L o.~ O.$ +. ", +" x z D & z x c z D ( b c b z & & c z & @.#.$.s %.d ) ", +" c z x v D F z ( D z b v v F z v z z v v F z c &.o.B $ %.*.=. ", +" z z z z z b v x b z z c D v z z z z b x -.;.B $.%.:.>.; ", +" ,.=.=.,.+ <.1.u 2.3.4.l 6 y + ", +" 5.p 6.7.8.9.0.q.2.2 w.=.e.r.t.y.u.,. ", +" ( J i.p.5.7.a.l s.d.f.g. * T h.j.", +" & * y k.k.U * l.-. ,.z.x.u.c.v.", +" ) l.b.n.n.m."}; diff -ruN icewm.orig/files/md5 icewm/files/md5 --- icewm.orig/files/md5 Wed Feb 18 10:04:16 1998 +++ icewm/files/md5 Wed Feb 18 10:06:39 1998 @@ -1 +1 @@ -MD5 (icewm-0.8.9.src.tar.gz) = 19ff01b9ef4b1916e4db354882229d14 +MD5 (icewm-0.8.11.src.tar.gz) = f7f2af4dcb2231c721b0279ed1414261 diff -ruN icewm.orig/patches/patch-aa icewm/patches/patch-aa --- icewm.orig/patches/patch-aa Wed Feb 18 10:04:16 1998 +++ icewm/patches/patch-aa Wed Feb 18 10:30:42 1998 @@ -1,27 +1,30 @@ ---- Makefile.orig Wed Sep 10 23:04:51 1997 -+++ Makefile Sun Dec 28 02:03:35 1997 -@@ -1,11 +1,11 @@ +--- Makefile.orig Tue Dec 2 05:49:07 1997 ++++ Makefile Wed Feb 18 01:30:17 1998 +@@ -1,12 +1,12 @@ -PREFIX = /usr/local +PREFIX = $(X11BASE) BINDIR = $(PREFIX)/bin LIBDIR = $(PREFIX)/lib/X11/icewm -ETCDIR = /etc/X11/icewm -+ETCDIR = ${LIBDIR} ++ETCDIR = $(LIBDIR) -INSTALL = install -INSTALLDIR = $(INSTALL) -m 755 -d +-INSTALLBIN = $(INSTALL) -m 555 +INSTALL = install -c +INSTALLDIR = mkdir -p - INSTALLBIN = $(INSTALL) -m 555 ++INSTALLBIN = $(INSTALL) $(STRIP) -m 555 INSTALLLIB = $(INSTALL) -m 444 #INSTALLETC = $(INSTALL) -m 644 -@@ -17,7 +17,7 @@ + +@@ -16,8 +16,7 @@ + XPMDIRS = themes/nice themes/motif themes/win95 themes/warp3 themes/warp4 themes/win31 ledclock taskbar icons all: - (cd doc ; make) +- (cd doc ; make) - (cd src ; make LIBDIR=$(LIBDIR) ETCDIR=$(ETCDIR)) -+ (cd src ; make LIBDIR=$(LIBDIR) ETCDIR=$(ETCDIR) PREFIX=$(PREFIX) ) ++ (cd src ; make LIBDIR=$(LIBDIR) ETCDIR=$(ETCDIR) PREFIX=$(PREFIX)) clean: (cd doc ; make clean) diff -ruN icewm.orig/patches/patch-ab icewm/patches/patch-ab --- icewm.orig/patches/patch-ab Wed Feb 18 10:04:16 1998 +++ icewm/patches/patch-ab Wed Feb 18 10:06:39 1998 @@ -1,22 +1,23 @@ ---- src/Makefile.orig Sun Jul 6 10:39:29 1997 -+++ src/Makefile Fri Nov 14 14:05:57 1997 +--- src/Makefile.orig Fri Feb 13 06:57:37 1998 ++++ src/Makefile Fri Feb 13 06:58:21 1998 @@ -1,8 +1,8 @@ include ../VERSION # Linux --INCSDIR = +-INCSDIR = -I/usr/X11R6/include -LIBSDIR = -L/usr/X11R6/lib +INCSDIR = -I$(PREFIX)/include +LIBSDIR = -L$(PREFIX)/lib # overriden by upper makefile LIBDIR=../lib ETCDIR=../lib -@@ -22,7 +22,7 @@ - -DVERSION='"$(VERSION)"' \ - +@@ -24,7 +24,8 @@ #OPTIMIZE = -g --OPTIMIZE = -O -g -+OPTIMIZE = $(CFLAGS) + #OPTIMIZE = -O -g #OPTIMIZE = -O -g -pg - #OPTIMIE = -O -s +-OPTIMIZE = -O -s ++#OPTIMIZE = -O -s ++OPTIMIZE = $(CFLAGS) #OPTIMIZE = -O2 -s + + LIBS = -lXpm $(SHAPELIB) -lX11 diff -ruN icewm.orig/patches/patch-ac icewm/patches/patch-ac --- icewm.orig/patches/patch-ac Thu Jan 1 09:00:00 1970 +++ icewm/patches/patch-ac Wed Feb 18 10:06:39 1998 @@ -0,0 +1,17 @@ +--- src/config.h.orig Wed Oct 8 01:57:12 1997 ++++ src/config.h Fri Feb 13 08:39:48 1998 +@@ -17,10 +17,11 @@ + */ + #define SUPPORT_WIN95KBD + +-#define MAIL_SPOOL "/var/spool/mail/" /* '/' terminated ! */ ++#define MAIL_SPOOL "/var/mail/" /* '/' terminated ! */ + +-/** Use Linux 2.0 Penguin as start button */ +-#define START_PIXMAP "linux.xpm" ++/** Use BSD logo as start button ++ * (freebsd didn't fit properly, plus this is nicer to open/net ppl) */ ++#define START_PIXMAP "bsd-daemon.xpm" + //#define START_PIXMAP "start.xpm" + //#define START_PIXMAP "xfree86os2.xpm" + diff -ruN icewm.orig/pkg/DESCR icewm/pkg/DESCR --- icewm.orig/pkg/DESCR Wed Feb 18 10:04:16 1998 +++ icewm/pkg/DESCR Wed Feb 18 19:45:09 1998 @@ -1 +1,4 @@ cool window manager developped in a very hot day in a winter + +'bsd-daemon.xpm' is from Steve Farrel. + diff -ruN icewm.orig/pkg/PLIST icewm/pkg/PLIST --- icewm.orig/pkg/PLIST Wed Feb 18 10:04:16 1998 +++ icewm/pkg/PLIST Wed Feb 18 10:41:57 1998 @@ -35,6 +35,7 @@ lib/X11/icewm/ledclock/nc.xpm lib/X11/icewm/menu lib/X11/icewm/preferences +lib/X11/icewm/taskbar/bsd-daemon.xpm lib/X11/icewm/taskbar/linux.xpm lib/X11/icewm/taskbar/mail.xpm lib/X11/icewm/taskbar/newmail.xpm @@ -65,6 +66,55 @@ lib/X11/icewm/themes/warp4/maximize.xpm lib/X11/icewm/themes/warp4/minimize.xpm lib/X11/icewm/themes/warp4/restore.xpm +lib/X11/icewm/themes/win31/close.xpm +lib/X11/icewm/themes/win31/default.theme +lib/X11/icewm/themes/win31/dframeAB.xpm +lib/X11/icewm/themes/win31/dframeABL.xpm +lib/X11/icewm/themes/win31/dframeABR.xpm +lib/X11/icewm/themes/win31/dframeAL.xpm +lib/X11/icewm/themes/win31/dframeAR.xpm +lib/X11/icewm/themes/win31/dframeAT.xpm +lib/X11/icewm/themes/win31/dframeATL.xpm +lib/X11/icewm/themes/win31/dframeATR.xpm +lib/X11/icewm/themes/win31/dframeIB.xpm +lib/X11/icewm/themes/win31/dframeIBL.xpm +lib/X11/icewm/themes/win31/dframeIBR.xpm +lib/X11/icewm/themes/win31/dframeIL.xpm +lib/X11/icewm/themes/win31/dframeIR.xpm +lib/X11/icewm/themes/win31/dframeIT.xpm +lib/X11/icewm/themes/win31/dframeITL.xpm +lib/X11/icewm/themes/win31/dframeITR.xpm +lib/X11/icewm/themes/win31/frameAB.xpm +lib/X11/icewm/themes/win31/frameABL.xpm +lib/X11/icewm/themes/win31/frameABR.xpm +lib/X11/icewm/themes/win31/frameAL.xpm +lib/X11/icewm/themes/win31/frameAR.xpm +lib/X11/icewm/themes/win31/frameAT.xpm +lib/X11/icewm/themes/win31/frameATL.xpm +lib/X11/icewm/themes/win31/frameATR.xpm +lib/X11/icewm/themes/win31/frameIB.xpm +lib/X11/icewm/themes/win31/frameIBL.xpm +lib/X11/icewm/themes/win31/frameIBR.xpm +lib/X11/icewm/themes/win31/frameIL.xpm +lib/X11/icewm/themes/win31/frameIR.xpm +lib/X11/icewm/themes/win31/frameIT.xpm +lib/X11/icewm/themes/win31/frameITL.xpm +lib/X11/icewm/themes/win31/frameITR.xpm +lib/X11/icewm/themes/win31/maximize.xpm +lib/X11/icewm/themes/win31/menuButtonA.xpm +lib/X11/icewm/themes/win31/menuButtonI.xpm +lib/X11/icewm/themes/win31/minimize.xpm +lib/X11/icewm/themes/win31/restore.xpm +lib/X11/icewm/themes/win31/titleAB.xpm +lib/X11/icewm/themes/win31/titleAL.xpm +lib/X11/icewm/themes/win31/titleAM.xpm +lib/X11/icewm/themes/win31/titleAR.xpm +lib/X11/icewm/themes/win31/titleAT.xpm +lib/X11/icewm/themes/win31/titleIB.xpm +lib/X11/icewm/themes/win31/titleIL.xpm +lib/X11/icewm/themes/win31/titleIM.xpm +lib/X11/icewm/themes/win31/titleIR.xpm +lib/X11/icewm/themes/win31/titleIT.xpm lib/X11/icewm/themes/win95/close.xpm lib/X11/icewm/themes/win95/default.theme lib/X11/icewm/themes/win95/maximize.xpm @@ -78,6 +128,7 @@ @dirrm lib/X11/icewm/themes/nice @dirrm lib/X11/icewm/themes/warp3 @dirrm lib/X11/icewm/themes/warp4 +@dirrm lib/X11/icewm/themes/win31 @dirrm lib/X11/icewm/themes/win95 @dirrm lib/X11/icewm/themes @dirrm lib/X11/icewm >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 05:02:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA01980 for freebsd-ports-outgoing; Wed, 18 Feb 1998 05:02:46 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ns1.yes.no (ns1.yes.no [195.119.24.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01796; Wed, 18 Feb 1998 05:02:35 -0800 (PST) (envelope-from eivind@bitbox.follo.net) Received: from bitbox.follo.net (bitbox.follo.net [194.198.43.36]) by ns1.yes.no (8.8.7/8.8.7) with ESMTP id NAA29817; Wed, 18 Feb 1998 13:02:28 GMT Received: (from eivind@localhost) by bitbox.follo.net (8.8.6/8.8.6) id OAA01348; Wed, 18 Feb 1998 14:02:28 +0100 (MET) Message-ID: <19980218140228.10358@follo.net> Date: Wed, 18 Feb 1998 14:02:28 +0100 From: Eivind Eklund To: Satoshi Asami , giffunip@asme.org Cc: ports@FreeBSD.ORG Subject: Re: new category: "compress" References: <34EA68DA.167EB0E7@asme.org> <199802180614.WAA09220@silvia.HIP.Berkeley.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89.1i In-Reply-To: <199802180614.WAA09220@silvia.HIP.Berkeley.EDU>; from Satoshi Asami on Tue, Feb 17, 1998 at 10:14:20PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Feb 17, 1998 at 10:14:20PM -0800, Satoshi Asami wrote: > * FWIW, I didn't put lzo in "archivers", but under "devel". I'll port the > * real compresor (lzop), when I find some fix for the shared libraries. > > Um, devel is one of the other category that's abused. :< Just because > it's a library doesn't mean it should go into devel -- if it has a > clearly defined function, it should go to that category instead (like > compress). > > Maybe we should create a new category "debug" and most most of "devel" > over? "libraries" sound like it might be a good category. I wouldn't mind debug either, but splitting off libraries would be _good_. Eivind. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 06:06:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA12052 for freebsd-ports-outgoing; Wed, 18 Feb 1998 06:06:06 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from megaweapon.zigg.com (tcgr1-40.dialup.alliance.net [207.74.43.40]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA12011; Wed, 18 Feb 1998 06:06:00 -0800 (PST) (envelope-from matt@zigg.com) Received: from localhost (matt@localhost) by megaweapon.zigg.com (8.8.8/8.8.8) with SMTP id JAA17813; Wed, 18 Feb 1998 09:06:13 -0500 (EST) (envelope-from matt@megaweapon.zigg.com) Date: Wed, 18 Feb 1998 09:06:13 -0500 (EST) From: Matt Behrens To: Satoshi Asami cc: ports@FreeBSD.ORG Subject: Re: Jordan's challenge (imap-uw) In-Reply-To: <199802180603.WAA09183@silvia.HIP.Berkeley.EDU> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, 17 Feb 1998, Satoshi Asami wrote: > * what was breaking the current port. I won't comment about software > * maintainers changing file structures so radically and not even changing > * the tarball name except to say "Yeesh". > That has always been a problem with this port. If someone can take > care of housing a "known good" tarball (like Imagemagick and lynx), it > will be much easier for people to use. I could do that. I have some well-connected (four backbone connections) http space. Matt Behrens | "Separation of church and state is http://www.zigg.com/ | absolutely essential," they say. Chanop Script Coordinator | Why, then, do they make America's World-Wide FreeNet IRC Network | state religion atheism? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 08:10:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA03964 for freebsd-ports-outgoing; Wed, 18 Feb 1998 08:10:11 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA03916; Wed, 18 Feb 1998 08:10:05 -0800 (PST) (envelope-from gnats) Date: Wed, 18 Feb 1998 08:10:05 -0800 (PST) Message-Id: <199802181610.IAA03916@hub.freebsd.org> To: freebsd-ports Cc: From: "Pedro F. Giffuni" Subject: Re: ports/5319: New graphics port: Gplot Reply-To: "Pedro F. Giffuni" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/5319; it has been noted by GNATS. From: "Pedro F. Giffuni" To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/5319: New graphics port: Gplot Date: Wed, 18 Feb 1998 11:06:43 -0500 begin 644 gplot.tar.gz M'XL("'`BX30``V=P;&]T+G1A<@#M&VMSVD@R7ZU?T5FGKFP7%A+/F*RWC@#A MN-C@`I)X]W)%"6D`E26-=B29L*G\]^L>208[QG8VACQ.78!&\^KG=,^TQ-1W M>)A_LE&`DE8ME^$)@%XMZZO7%#2`2JE4+FG%0A7+NE8IZ4^@O%FR8HB"T!`` M3WQF"7Y'O_O:?U"82OV?&A=L8CML,SAT[4[]Z^5*)=5_02N2_@M8>@+:9LBY M#O_G^M^%+IN#ST48@,D=AYFAS3UP$X.`"13"+/AE^G<<'_ MIQ&X3.5B^INRBV.?=:P:%I1F9S#LUD];QSO2=I6SU^V5VT,BI5$?MMJ]?JOSH]W5#00]0\%)^ATA_AM]7'6FS0J2KM=_/7CSLMG!#@L6*$K]Y&0T MK/?;K>'QCB6,N3EU81JR#Q!3?EKOZL<[,=VJKB@6/[0]-$?'J2D[SSYVNH,A MS7#6[[7[]=-/\.PC(>@W/L5TXOU9O_6J<_XI/[:]^T80VK4#FO5A?;5W0FQZ M58V5H8X]IJ^L7IT#N?F,1-4UO)6A>$=?/9^RK-H3>&JAI7G,VNOVSGK]8;/7 M&.S3O*>O49"?5D8',T.PO,7-?&R,V*?]1^=LU#AM?HYXYOAW=P@_K)\!9:4B MGKLD=*!._[J#-I5YECU1D$'/="*+P:_CP%)IF:GNQ6_*MU[U2X@MWK^8;G`/ M\-#XK^&G4"QCLU[2JUG\WP8L]=]L#1K]C>#`^%\I:7?$_W(ACO]:2:^42Q3_ MBUHYB__;`*5]=M(;@AV``6FHA"BT'3M<@"\XUKDYL%A@3]%'TW8`PAFC%I,% M@>U-@4^@T3Y57!8:M&,(J,V*3.P\7D"S4]0T+8?7P>#LI(Z%?OT==@?#LZ#; MP-CX>J`"#'@D3-P[<(LIA&))U*7M&&/2=NR$TQICPBPBSR-\1`%Q@J$KU3&1CQ,)B04EAUI@2B05+,6! MY':)@AX80W`8ILP,2EC8H@3(W>V>_]3OM?0T7Z MJ'C#9=,>V5\(>SH+8[Z)C3,[#(-Q)*8S&$2H.60?<:+DXJ$-1FI4OZ.8OPI+ M_]_HG9ZVNL,-X)#^OW1'_*]4E^=_32?_7];TS/]O`Y)%G;A\7![K73Q<^;SO MU9@S^&)8KO^S$SQ8;P3'?>M?7^9_]&*I(/=_>B5;_]L`#-3Q@5B1)0S/RK4# M_HV#[?)TC>??-8UXLKZU,3E54]NWYCJ#%.+U+[WZQC(`#SS_%\LE//]I%3K_ M5TO9^7\KL*I_U]J,Q._?_Y57]%^5^?_,_V\'3IMEV$O\-J6Y]^$8QH6C,3LJ M5XM'1Y4Q*Q^5V612L*J6;EE5_7GI*'/?/P\D^S\C-&<;BP`/?OZK%ZA7,Y5=)"W`+LWGOXZET+E]#NR.18@X-X"'(,2VQ3A8=G`A4[#"PCK* MV@EZ4"UNF-.!>X'+5LQ/'*4VCVWXY>G=3;`PQ\ATW;,_T@OH;L M(B[@0' MW!1W^IB6YD-TES:;@R7L2Q07I:"EEPPY=^*<_,0PV2H5@[7#5QSUG@#Z/D&TTT0>7QNSWG*+ME6+,O$MC8I MRQNB_+DD>9N5ZB4]IY>J5XZK<67PT^MRE@F.]`%0I]\9K!6K>GT>T[P0*,JT M(E4@''PUT#S2/%(F4N>S,29V-\7%S3K\0E$[RA7U\C*F[.$F0P/;]1W*8>L: M^!P-#'7MA0$8(0[`JC!O>_LY8.I4S5P*DTD>C5.P.6Z!+O(T5=YT MA:ZI_@7V\R^$$:B\EA1,L-@D4&?(\XZ)CI%\XYMNY_Q5KSL<'+__Y=9)W_^2 MCD[$,QS^?MV52V]9DY^RU<[-)X+H/9./3FXWGNI[O M>-0CL,WU709RCJ:D=5V?`U&%SYV%]&Z\=@])]XB# M)IIR[PZ!/(#M]83C]MM9I=LUQ`7[7/Q?3#8]F;^%YD>PH[NUL6)'CI&8^<,- M_4M,Z2'&L'OXF"`];U,8\_25%[RVF1>_'Q+2OEQP>E6`!;&K3[S<%MSG5\IZ^_`@7[K3-J/";?F?\>/B^.>YW^%8J&0 MO/]=*%?I76"]6*UF___9"M#ABJ(&GM'B]"^E6;K\$D^1H.DU7:\5C^+$+FU0 MDIXW.A5*-3QRKLW^XGDT5UR>W22@HXS,$&QOPD=)^0`7\H@J7MSHQ#TVXCYU M\,,7._D#D&]T9[AL M'^P)[.&`_^SAH7D?J.Z_*FZQ]B&8VVC]GS>&QG0?/NX01;&OO`*J,NE54LIE M39FH0U=7< MH#1%%-";NE)5<%U)_@<':=E_D>0^8M-)0L%/8CJ/;S:/;#)WF(OW!?:2 Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09712 for freebsd-ports-outgoing; Wed, 18 Feb 1998 11:00:54 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from echonyc.com (echonyc.com [198.67.15.2]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA09644 for ; Wed, 18 Feb 1998 11:00:39 -0800 (PST) (envelope-from benedict@echonyc.com) Received: from localhost (benedict@localhost) by echonyc.com (8.8.7/8.8.7) with SMTP id OAA13392 for ; Wed, 18 Feb 1998 14:00:34 -0500 (EST) Date: Wed, 18 Feb 1998 14:00:30 -0500 (EST) From: Snob Art Genre To: ports@FreeBSD.ORG Subject: is fvwm2 still in beta? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The README.html in /usr/ports/x11 refers to it as such. Ben "You have your mind on computers, it seems." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 12:51:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA12093 for freebsd-ports-outgoing; Wed, 18 Feb 1998 12:51:44 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA11996; Wed, 18 Feb 1998 12:51:01 -0800 (PST) (envelope-from steve) Date: Wed, 18 Feb 1998 12:51:01 -0800 (PST) From: Steve Price Message-Id: <199802182051.MAA11996@hub.freebsd.org> To: mountin.man@mixcom.com, steve, freebsd-ports Subject: Re: ports/5752 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: apacheSSL-1.2.4 make certificate fails State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Wed Feb 18 12:49:49 PST 1998 State-Changed-Why: etc/ssleay.cnf.smaple is now used for 'make certificate'. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 12:58:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13764 for freebsd-ports-outgoing; Wed, 18 Feb 1998 12:58:45 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13583; Wed, 18 Feb 1998 12:58:16 -0800 (PST) (envelope-from steve) Date: Wed, 18 Feb 1998 12:58:16 -0800 (PST) From: Steve Price Message-Id: <199802182058.MAA13583@hub.freebsd.org> To: giffunip@asme.org, steve, freebsd-ports Subject: Re: ports/5319 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New graphics port: Gplot State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Wed Feb 18 12:56:28 PST 1998 State-Changed-Why: New port committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 13:50:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23315 for freebsd-ports-outgoing; Wed, 18 Feb 1998 13:50:27 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23282; Wed, 18 Feb 1998 13:50:11 -0800 (PST) (envelope-from gnats) Received: from matrix.42.org (sec@matrix.42.org [192.68.213.129]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA22515 for ; Wed, 18 Feb 1998 13:46:20 -0800 (PST) (envelope-from sec@matrix.42.org) Received: (from sec@localhost) by matrix.42.org (8.8.8/8.8.6) id WAA24513 (sender ); Wed, 18 Feb 1998 22:46:13 +0100 (CET) Message-Id: <199802182146.WAA24513@matrix.42.org> Date: Wed, 18 Feb 1998 22:46:13 +0100 (CET) From: Stefan `Sec` Zehl Reply-To: sec@42.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5783: New port: ladder Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5783 >Category: ports >Synopsis: New port: ladder >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 18 13:50:05 PST 1998 >Last-Modified: >Originator: Stefan `Sec` Zehl >Organization: >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: As discussed on hackers, here is a port of 'ladder'. As I'm not sure wether there might be problems, i added an "RESTRICTED" line. Please tell me if there are any problems with this 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: # # ladder/Makefile # ladder/files # ladder/files/md5 # ladder/patches # ladder/patches/patch-aa # ladder/patches/patch-ab # ladder/pkg # ladder/pkg/COMMENT # ladder/pkg/DESCR # ladder/pkg/PLIST # echo x - ladder/Makefile sed 's/^X//' >ladder/Makefile << 'END-of-ladder/Makefile' X# New ports collection makefile for: ladder X# Version required: 1 X# Date created: 18 Feb 1998 X# Whom: Stefan Zehl X# X# $Id$ X# X XDISTNAME= ladder XPKGNAME= ladder-1.00 XCATEGORIES= games XMASTER_SITES= http://www.srv.net/~kth/ \ X ftp://ftp.42.org/pub/unix/games/ X XRESTRICTED= "possible copyright problems ?" X XEXTRACT_SUFX= .tar XNO_WRKSUBDIR= true XEXTRACT_BEFORE_ARGS=-xf X XMAINTAINER= sec@42.org X X.include END-of-ladder/Makefile echo c - ladder/files mkdir -p ladder/files > /dev/null 2>&1 echo x - ladder/files/md5 sed 's/^X//' >ladder/files/md5 << 'END-of-ladder/files/md5' XMD5 (ladder.tar) = 274ff1614ad21808ca62ab839b2f313a END-of-ladder/files/md5 echo c - ladder/patches mkdir -p ladder/patches > /dev/null 2>&1 echo x - ladder/patches/patch-aa sed 's/^X//' >ladder/patches/patch-aa << 'END-of-ladder/patches/patch-aa' X--- ladder.c.org Wed Feb 18 19:26:47 1998 X+++ ladder.c Wed Feb 18 19:33:09 1998 X@@ -82,7 +82,7 @@ X mvaddstr(r,LM,"Version: n/a"); X mvaddstr(r,RM0,"Up = k|8 Down = j|2 Left = h|4 Right = l|6"); X r++; X- mvprintw(r,LM,"Terminal: %s",termname()); X+ mvprintw(r,LM,"Terminal: %s",getenv("TERM")); X mvaddstr(r,RM0,"Jump = Space Stop = Other"); X r++; X mvprintw(r,LM,"Play Speed: %d",speed + 1); X--- ladder.h.org Wed Feb 18 19:19:51 1998 X+++ ladder.h Wed Feb 18 19:26:29 1998 X@@ -1,4 +1,4 @@ X-#include X+#include X #include X #include X #include END-of-ladder/patches/patch-aa echo x - ladder/patches/patch-ab sed 's/^X//' >ladder/patches/patch-ab << 'END-of-ladder/patches/patch-ab' X--- Makefile.org Mon Oct 27 00:15:08 1997 X+++ Makefile Wed Feb 18 22:34:28 1998 X@@ -3,11 +3,11 @@ X OBJS = ladder.o lplay.o ltime.o lscore.o lscreens.o X X CC = gcc X-CFLAGS = -O -pedantic -I/usr/include/ncurses X+CFLAGS = -O2 -pedantic -Wall X LDFLAGS = -s X M4 = m4 X LIBS = -lncurses X-SCOREFILE = ./ladder.scores X+SCOREFILE = /var/games/ladder.scores X X .SUFFIXES: .o .c .m4 X X@@ -21,6 +21,14 @@ X $(CC) -o $(TARGET) $(LDFLAGS) $(OBJS) $(LIBS) X X $(OBJS): ladder.h X+ X+clean: X+ -$(RM) $(OBJS) $(TARGET) *.core X+ X+all: $(TARGET) X+ X+install: X+ install -c -s -o games -g bin -m 4555 ladder ${PREFIX}/bin X X # ladder.c: ladder.m4 X X--- ladder.c.org Mon Oct 27 00:07:23 1997 X+++ ladder.c Wed Feb 18 22:33:55 1998 X@@ -14,7 +14,7 @@ X char *d = t; X int i; X X- for( ; *s; *s++ ) X+ for( ; *s; s++ ) X if( *s & 0200 ) X for( i = 210 - (unsigned char)*s; i; i-- ) X *d++ = ' '; X--- lplay.c.org Tue Nov 11 20:01:51 1997 X+++ lplay.c Wed Feb 18 22:33:56 1998 X@@ -54,7 +54,7 @@ X mvaddstr(row,0,t); X X /* find points of release */ X- for( s = t; s = strchr(s,CRELEAS); s++ ) X+ for( s = t; (s = strchr(s,CRELEAS)); s++ ) X { X rel->row = row; X rel->col = s - t; X@@ -67,7 +67,7 @@ X X /* find lad */ X for( row = 0; row < DIMROW; row++ ) X- for( s = t = bg[row]; s = strchr(s,CLAD); s++ ) X+ for( s = t = bg[row]; (s = strchr(s,CLAD)); s++ ) X { X /* nasty, check for CLAD's surrounded by CFREEs */ X if( s[-1] != CFREE || s[1] != CFREE ) X@@ -433,6 +433,8 @@ X else X dir = STOP; X break; X+ default: X+ break; X } X } X X--- lscore.c.org Mon Oct 27 00:07:24 1997 X+++ lscore.c Wed Feb 18 22:33:56 1998 X@@ -21,7 +21,7 @@ X FILE *lfp; X X for( i = 3; i; i-- ) X- if( lfp = fopen(lf,"r") ) X+ if( (lfp = fopen(lf,"r")) ) X { X fclose(lfp); X sleep(2); X@@ -47,7 +47,7 @@ X X lock_score(); X memset(scores,0,sizeof(scores)); X- if( sfp = fopen(sf,"r") ) X+ if( (sfp = fopen(sf,"r")) ) X { X for( scp = scores; scp < &scores[MAXSCORE]; scp++ ) X if( fscanf(sfp,"%d%d%d%d", X@@ -67,8 +67,8 @@ X SCORE *scp; X for( scp = &scores[MAXSCORE]; scp > scores; scp-- ) X if( scp[0].score > scp[-1].score || X- scp[0].score == scp[-1].score && X- scp[0].level >= scp[-1].level ) X+ (scp[0].score == scp[-1].score && X+ scp[0].level >= scp[-1].level )) X { X SCORE tmp = scp[0]; X scp[0] = scp[-1]; X@@ -113,7 +113,7 @@ X if( scores[i].score ) X { X printw("%5d00 %2d ",scores[i].score,scores[i].level + 1); X- if( pw = getpwuid(scores[i].uid) ) X+ if( (pw = getpwuid(scores[i].uid)) ) X addstr(pw->pw_name); X else X printw("UID %d",scores[i].uid); X--- ltime.c.org Mon Oct 27 00:07:24 1997 X+++ ltime.c Wed Feb 18 22:33:56 1998 X@@ -2,6 +2,7 @@ X #include X #include X #include X+#include X X static void waittcs(unsigned int tcs) X { END-of-ladder/patches/patch-ab echo c - ladder/pkg mkdir -p ladder/pkg > /dev/null 2>&1 echo x - ladder/pkg/COMMENT sed 's/^X//' >ladder/pkg/COMMENT << 'END-of-ladder/pkg/COMMENT' XThe old "ladder" game. END-of-ladder/pkg/COMMENT echo x - ladder/pkg/DESCR sed 's/^X//' >ladder/pkg/DESCR << 'END-of-ladder/pkg/DESCR' XA port of the old and known "ladder" game. END-of-ladder/pkg/DESCR echo x - ladder/pkg/PLIST sed 's/^X//' >ladder/pkg/PLIST << 'END-of-ladder/pkg/PLIST' Xbin/ladder X@unexec rm /var/games/ladder.scores END-of-ladder/pkg/PLIST exit >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 14:41:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02706 for freebsd-ports-outgoing; Wed, 18 Feb 1998 14:41:28 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ppp6496.on.bellglobal.com (ppp6591.on.bellglobal.com [206.172.208.183]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02659 for ; Wed, 18 Feb 1998 14:40:38 -0800 (PST) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by ppp6496.on.bellglobal.com (8.8.8/8.8.8) with SMTP id RAA01102; Wed, 18 Feb 1998 17:35:03 -0500 (EST) (envelope-from ac199@hwcn.org) X-Authentication-Warning: ppp6496.on.bellglobal.com: tim owned process doing -bs Date: Wed, 18 Feb 1998 17:35:03 -0500 (EST) From: Tim Vanderhoek X-Sender: tim@localhost Reply-To: ac199@hwcn.org To: Matt Behrens cc: ports@FreeBSD.ORG Subject: Re: Jordan's challenge (imap-uw) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, 18 Feb 1998, Matt Behrens wrote: > I suppose we'd really want the c-client shared library working, ideally; > esp. considering possible high load conditions; but on my little ol' box I doubt it's worth it. Dyson has repeatedly given reasons why shared-libs are over-rated, especially in a case such as this (few client programs). In addition to imap-uw, the only port using c-client that I know of is tkrat. It'd be nice if the c-client headers were installed in a subdir of inclue/. Or, break c-client out as a separate port. > what was breaking the current port. I won't comment about software > maintainers changing file structures so radically and not even changing > the tarball name except to say "Yeesh". You're being gentle. -- tIM...HOEk OPTIMIZATION: the process of using many one-letter variables names hoping that the resultant code will run faster. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 14:41:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02750 for freebsd-ports-outgoing; Wed, 18 Feb 1998 14:41:50 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ppp6496.on.bellglobal.com (ppp6591.on.bellglobal.com [206.172.208.183]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA02697 for ; Wed, 18 Feb 1998 14:41:02 -0800 (PST) (envelope-from ac199@hwcn.org) Received: from localhost (tim@localhost) by ppp6496.on.bellglobal.com (8.8.8/8.8.8) with SMTP id RAA01080; Wed, 18 Feb 1998 17:27:59 -0500 (EST) (envelope-from ac199@hwcn.org) X-Authentication-Warning: ppp6496.on.bellglobal.com: tim owned process doing -bs Date: Wed, 18 Feb 1998 17:27:59 -0500 (EST) From: Tim Vanderhoek X-Sender: tim@localhost Reply-To: ac199@hwcn.org To: "Pedro F. Giffuni" cc: ports@FreeBSD.ORG Subject: Re: new category: "compress" In-Reply-To: <34EA68DA.167EB0E7@asme.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, 17 Feb 1998, Pedro F. Giffuni wrote: > I don't find a need for the new category, somehow I always know where to > look for the compression stuff. The real mess is the x11 category :-(. You do. I'd love to see some organization genius suggest a whole new set of categories and subcatagories. -- tIM...HOEk OPTIMIZATION: the process of using many one-letter variables names hoping that the resultant code will run faster. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 16:07:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17522 for freebsd-ports-outgoing; Wed, 18 Feb 1998 16:07:03 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cain.gsoft.com.au (genesi.lnk.telstra.net [139.130.136.161]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA17498; Wed, 18 Feb 1998 16:06:57 -0800 (PST) (envelope-from doconnor@cain.gsoft.com.au) Received: from cain (localhost [127.0.0.1]) by cain.gsoft.com.au (8.8.8/8.6.9) with ESMTP id KAA05777; Thu, 19 Feb 1998 10:05:21 +1030 (CST) Message-Id: <199802182335.KAA05777@cain.gsoft.com.au> X-Mailer: exmh version 2.0zeta 7/24/97 To: Eivind Eklund cc: Satoshi Asami , giffunip@asme.org, ports@FreeBSD.ORG Subject: Re: new category: "compress" In-reply-to: Your message of "Wed, 18 Feb 1998 14:02:28 BST." <19980218140228.10358@follo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 19 Feb 1998 10:05:20 +1030 From: "Daniel O'Connor" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > "libraries" sound like it might be a good category. > I wouldn't mind debug either, but splitting off libraries would be _good_. I dunno.. Libraries would end up like x11 IMHO.. Personally, I think the current layout is fine, as long as people have a way of knowing that archivers also means compressors :) --------------------------------------------------------------------- |Daniel O'Connor software and network engineer for Genesis Software | |http://www.gsoft.com.au | |The nice thing about standards is that there are so many of them to| |choose from. -- Andrew Tanenbaum | --------------------------------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 16:40:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA23578 for freebsd-ports-outgoing; Wed, 18 Feb 1998 16:40:24 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from bachue.usc.unal.edu.co ([168.176.3.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA23473 for ; Wed, 18 Feb 1998 16:39:41 -0800 (PST) (envelope-from giffunip@asme.org) Received: from giffuni.usc.unal.edu.co ([168.176.3.39]) by bachue.usc.unal.edu.co (Netscape Messaging Server 3.0) with SMTP id AAA6599; Wed, 18 Feb 1998 19:29:24 +0500 Message-ID: <34EB79CE.41C67EA6@asme.org> Date: Wed, 18 Feb 1998 19:16:14 -0500 From: "Pedro F. Giffuni" Organization: U. Nacional de Colombia X-Mailer: Mozilla 3.01Gold (X11; I; FreeBSD 2.2.5-RELEASE i386) MIME-Version: 1.0 To: ac199@hwcn.org CC: ports@FreeBSD.ORG Subject: Re: new category: "compress" References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Tim Vanderhoek wrote: > > On Tue, 17 Feb 1998, Pedro F. Giffuni wrote: > > > I don't find a need for the new category, somehow I always know where to > > look for the compression stuff. The real mess is the x11 category :-(. > > You do. I'd love to see some organization genius suggest a whole > new set of categories and subcatagories. > Hope you find that genius, meanwhile you could collect some of the suggestions made previously: Move all the perl ports to their own category, and create a "Window manager" category. Also take a look at sunsite's directories and at some linux repositories for ideas of new categories. cheers, Pedro. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 16:48:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA24433 for freebsd-ports-outgoing; Wed, 18 Feb 1998 16:48:46 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from cam.grad.kiev.ua (grad-UTC-28k8.ukrtel.net [195.5.25.54]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA24413 for ; Wed, 18 Feb 1998 16:48:37 -0800 (PST) (envelope-from Ruslan@Shevchenko.kiev.ua) Received: from Shevchenko.kiev.ua (localhost [127.0.0.1]) by cam.grad.kiev.ua (8.8.8/8.8.5) with ESMTP id EAA21197; Wed, 18 Feb 1998 04:43:58 +0200 (EET) Message-ID: <34EA4AE7.E00C625C@Shevchenko.kiev.ua> Date: Wed, 18 Feb 1998 04:43:52 +0200 From: Ruslan Shevchenko Reply-To: rssh@grad.kiev.ua X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.5-STABLE i386) MIME-Version: 1.0 To: "Pedro F. Giffuni" CC: ac199@hwcn.org, ports@FreeBSD.ORG Subject: Re: new category: "compress" References: <34EB79CE.41C67EA6@asme.org> Content-Type: text/plain; charset=koi8-r Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Pedro F. Giffuni wrote: > Tim Vanderhoek wrote: > ? > ? On Tue, 17 Feb 1998, Pedro F. Giffuni wrote: > ? > ? ? I don't find a need for the new category, somehow I always know where to > ? ? look for the compression stuff. The real mess is the x11 category :-(. > ? > ? You do. I'd love to see some organization genius suggest a whole > ? new set of categories and subcatagories. > ? > Hope you find that genius, meanwhile you could collect some of the > suggestions made previously: Move all the perl ports to their own > category, and create a "Window manager" category. > > Also take a look at sunsite's directories and at some linux repositories > for ideas of new categories. > what I can't understood: why depth(port tree)==2 ? > cheers, > Pedro. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message -- @= //RSSH mailto:Ruslan@Shevchenko.Kiev.UA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 17:00:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA26805 for freebsd-ports-outgoing; Wed, 18 Feb 1998 17:00:07 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA26757; Wed, 18 Feb 1998 17:00:03 -0800 (PST) (envelope-from gnats) Date: Wed, 18 Feb 1998 17:00:03 -0800 (PST) Message-Id: <199802190100.RAA26757@hub.freebsd.org> To: freebsd-ports Cc: From: "Scot W. Hetzel" Subject: Re: ports/4878: Apache w/FrontPage Module Port 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/4878; it has been noted by GNATS. From: "Scot W. Hetzel" To: Cc: Subject: Re: ports/4878: Apache w/FrontPage Module Port Date: Wed, 18 Feb 1998 18:55:13 -0600 I have setup a web site, and the current version (apache-fp v1.25) of the port is located on this site: http://www.westbend.net/~hetzels/apache-fp No longer need to get the tar-gzipped apache-fp v1.24 port and apache-fp.125.diif, as it is in now in one tar-gzipped file. So what needs to be done to get this port submitted? Scot W. Hetzel To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 18:59:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA19933 for freebsd-ports-outgoing; Wed, 18 Feb 1998 18:59:22 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (root@199-170-160-160.la.inreach.net [199.107.160.160]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA19812; Wed, 18 Feb 1998 18:58:16 -0800 (PST) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.7/8.8.7) id GAA09850; Wed, 18 Feb 1998 06:46:11 -0800 (PST) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.1 [p0] on FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Date: Wed, 18 Feb 1998 06:43:33 -0800 (PST) Organization: Starfleet Command From: Donald Burr To: FreeBSD Ports , FreeBSD Questions Subject: Using Linux plugs on Linux Netscape4 on FreeBSD? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- (Sorry for the crosspost, I'm not sure where this is the most appropriate) I finally quit using FreeBSD version of Netscape Communicator 4 because it crashed way too much. I decided to give the Linux version a try. Believe it or not, it seems to crash significantly less than the FreeBSD one. The only thing I miss is the ability to run Plug-ins, specifically the UMP MIDI Plug-in. I know there are Linux plug-ins available, but can they be used on my FreeBSD system? If so, how? (I think I tried this once and got some sort of error from Netscape "unknown binary format" or something like that? Is there a work-around?) Please cc me by email if possible. Thanks! - --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNOr0MfjpixuAwagxAQE4pAQAsD/0crBLuGctUsuUu6KjYoQ6mfW/ZCil HGfar9vT+aBSQ7MYNZSWwUrmzRh9Z8YLaqCM8XMsGF47r7A9XdaB6doR9Kg1uGHT 8CP9DIa7qGj6SmauSjCNg6V3wOrcp4/IS154riaR9+hhHp4QreflJYHqKSLABNMr QhlDKn7crok= =g0ve -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 21:29:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA06826 for freebsd-ports-outgoing; Wed, 18 Feb 1998 21:29:04 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-51.ix.netcom.com [207.93.143.179]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA06817 for ; Wed, 18 Feb 1998 21:28:59 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id VAA15807; Wed, 18 Feb 1998 21:09:30 -0800 (PST) Date: Wed, 18 Feb 1998 21:09:30 -0800 (PST) Message-Id: <199802190509.VAA15807@silvia.HIP.Berkeley.EDU> To: matt@zigg.com CC: ports@FreeBSD.ORG In-reply-to: (message from Matt Behrens on Wed, 18 Feb 1998 09:06:13 -0500 (EST)) Subject: Re: Jordan's challenge (imap-uw) From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * I could do that. I have some well-connected (four backbone connections) * http space. Ok. Then when you update the port, put your site at the beginning of the MASTER_SITES list and make sure you put a tarball that matches the md5 there. It may help if you can put it in a subdirectory (and change it every time), so when you send-pr a port upgrade and put up a new tarball, there won't be a time lag when there will be an inconsistency. Satoshi (sigh, all this trouble for authors who don't change filenames....) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 21:46:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA10072 for freebsd-ports-outgoing; Wed, 18 Feb 1998 21:46:55 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-51.ix.netcom.com [207.93.143.179]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA10030 for ; Wed, 18 Feb 1998 21:46:48 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id VAA15995; Wed, 18 Feb 1998 21:46:40 -0800 (PST) Date: Wed, 18 Feb 1998 21:46:40 -0800 (PST) Message-Id: <199802190546.VAA15995@silvia.HIP.Berkeley.EDU> To: eivind@yes.no CC: giffunip@asme.org, ports@FreeBSD.ORG In-reply-to: <19980218140228.10358@follo.net> (message from Eivind Eklund on Wed, 18 Feb 1998 14:02:28 +0100) Subject: Re: new category: "compress" From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * "libraries" sound like it might be a good category. It sounds good but that's too orthogonal with the rest of the categories. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 21:59:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA11527 for freebsd-ports-outgoing; Wed, 18 Feb 1998 21:59:09 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from silvia.HIP.Berkeley.EDU (ala-ca34-51.ix.netcom.com [207.93.143.179]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA11506 for ; Wed, 18 Feb 1998 21:58:59 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by silvia.HIP.Berkeley.EDU (8.8.8/8.6.9) id VAA16016; Wed, 18 Feb 1998 21:54:49 -0800 (PST) Date: Wed, 18 Feb 1998 21:54:49 -0800 (PST) Message-Id: <199802190554.VAA16016@silvia.HIP.Berkeley.EDU> To: rssh@grad.kiev.ua CC: giffunip@asme.org, ac199@hwcn.org, ports@FreeBSD.ORG In-reply-to: <34EA4AE7.E00C625C@Shevchenko.kiev.ua> (message from Ruslan Shevchenko on Wed, 18 Feb 1998 04:43:52 +0200) Subject: Re: new category: "compress" From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * what I can't understood: why depth(port tree)==2 ? Because it's much easier to maintain that way. Also, adding depth doesn't make things easier to find. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Feb 18 23:08:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20295 for freebsd-ports-outgoing; Wed, 18 Feb 1998 23:08:56 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from martini.ics.es.osaka-u.ac.jp (martini.ics.es.osaka-u.ac.jp [133.1.12.88]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA20284 for ; Wed, 18 Feb 1998 23:08:47 -0800 (PST) (envelope-from matusita@jp.FreeBSD.ORG) Received: from localhost (localhost [127.0.0.1]) by martini.ics.es.osaka-u.ac.jp (8.8.8/3.6W/ICS-2.2.2v7-44BSD) with ESMTP id QAA05362 for ; Thu, 19 Feb 1998 16:08:32 +0900 (JST) To: ports@FreeBSD.ORG Subject: Re: is fvwm2 still in beta? In-Reply-To: Your message of "Wed, 18 Feb 1998 14:00:30 -0500 (EST)" References: X-Mailer: Mew version 1.93b12 on Emacs 19.28 / Mule 2.3 (SUETSUMUHANA) X-FaceAnim: (-O_O-)(O_O- )(_O- )(O- )(- -)( -O)( -O_)( -O_O)(-O_O-) X-Fingerprint: 0C AC 93 FC E3 9D 9E 5B 3D B8 AC 5C 4A 79 D8 A6 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19980219160826U.matusita@jp.FreeBSD.ORG> Date: Thu, 19 Feb 1998 16:08:26 +0900 From: Makoto MATSUSHITA X-Dispatcher: imput version 980128 Lines: 10 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org benedict> The README.html in /usr/ports/x11 refers to it as such. Yes, still in beta (all of 2.0.x are in beta phase, for the first 2.x release). The first "release" version of fvwm 2.x will be 2.1.0, and it is decided when the FreeBSD 2.1.0-RELEASE is not yet released :-) -- - Makoto `MAR' MATSUSHITA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 00:30:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA00787 for freebsd-ports-outgoing; Thu, 19 Feb 1998 00:30:28 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA00731; Thu, 19 Feb 1998 00:30:16 -0800 (PST) (envelope-from gnats) Received: from romberg.math.ntnu.no (153@romberg.math.ntnu.no [129.241.15.150]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id AAA27808 for ; Thu, 19 Feb 1998 00:20:10 -0800 (PST) (envelope-from arnej@math.ntnu.no) Received: (qmail 7649 invoked from network); 19 Feb 1998 08:20:07 -0000 Received: from cauchy.math.ntnu.no (129.241.15.128) by romberg.math.ntnu.no with SMTP; 19 Feb 1998 08:20:07 -0000 Received: (from arnej@localhost) by cauchy.math.ntnu.no (8.8.7/8.8.4) id JAA05073; Thu, 19 Feb 1998 09:20:06 +0100 (CET) Message-Id: <199802190820.JAA05073@cauchy.math.ntnu.no> Date: Thu, 19 Feb 1998 09:20:06 +0100 (CET) From: arnej@math.ntnu.no Reply-To: arnej@math.ntnu.no To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5788: pcemu harddisk-access fixes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5788 >Category: ports >Synopsis: pcemu harddisk-access fixes >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: Thu Feb 19 00:30:06 PST 1998 >Last-Modified: >Originator: Arne Henrik Juul >Organization: Norwegian University of Technology and Science >Release: FreeBSD 2.2-STABLE i386 >Environment: Anything PC with pcemu, I guess. >Description: I found myself with a need for something that could run DOS fdisk, format, sys, and so on directly onto a harddisk, preferrably without going to the machine and putting in the DOS floppies. After looking around for PC emulators pcemu looked promising, and I enabled some of the code that was commented out for harddisk access, debugged a bit, added some missing interrupt functions (that didn't actually turn out to be the source of the problems I had :-) and so on. Now I can boot off the original DOS 6.22 floppy#1 and run fdisk and format :-) This still needs work so you can e.g. add harddisks from your .pcemurc file, but I thought I would send in the patches I have and ask that they be integrated and/or sent on to any pcemu maintainers (if such exists). I've split up the patches to make it clearer what they do: * patch-b1-cpule I got tired of the compiler warnings on LITTLE_ENDIAN and just changed it to CPU_LITTLE_ENDIAN for now. * patch-b2-panic When I enabled emulator debugging it would halt whenever it hit a missing interrupt emulation. This was a bit too much, since there are many INT functions that it is completely acceptable to ignore, so I changed those DEBUGs to PANICs. * patch-c1-h Some of the debug printf()s printed numbers in hex, some in decimal, and some in hex without any prefix or suffix to indicate so. After reading the doc for function 18 (decimal) and then finding I really needed 0x18 instead I changed all the hex formats to use a trailing h suffix (instead of 0x%02X or just %02X I used %02Xh). 0x prefix would be fine as well, of course. * patch-c2-rom8x16 "Added" one of the interrupts that can probably be ignored. * patch-c3-hdemul The actual harddisk support. You still need to change the disk table to look like you want and increase NUMHDISKS, but that should be it. The only real bugs in the old code was a couple of << 8 that should have been << 2, and one place (in "Get disk params") where it had been forgotten that the bios numbers sectors from 1. Some of the code I thought was needed turned out to be unnecessary (at least for my purposes) so have been left unimplemented or half-implemented, like "Set media type" which currently checks its parameters for sanity, then always returns "function not available" anyway. Any comments are welcome. I don't know much about PC's, so anything added here is by the help of Ralf Brown's interrupt list, and any mistakes are very probably mine :-) >How-To-Repeat: Please don't repeat :-) >Fix: Here is the set of patches I developed as a shar file. Please integrate it if you like it and send it on to anyone who wants to maintain pcemu. # 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: # # patch-b1-cpule # patch-b2-panic # patch-c1-h # patch-c2-rom8x16 # patch-c3-hdemul # echo x - patch-b1-cpule sed 's/^X//' >patch-b1-cpule << 'END-of-patch-b1-cpule' Xdiff -ru Makefile.orig Makefile X--- Makefile.orig Wed Feb 18 10:51:27 1998 X+++ Makefile Wed Feb 18 10:50:46 1998 X@@ -18,7 +18,7 @@ X # -DDEBUGGER compiles in the debugger X # -DKBUK if you have a UK style 102 key keyboard X-# -DBIG_ENDIAN if your computer is big-endian (Sparc, 68000 etc) X-# -DLITTLE_ENDIAN if your computer is little-endian (80x86 etc) X+# -DCPU_BIG_ENDIAN if your computer is big-endian (Sparc, 68000 etc) X+# -DCPU_LITTLE_ENDIAN if your computer is little-endian (80x86 etc) X # -DALIGNED_ACCESS if your computer requires words to be on even boundaries X # -DBIGCASE If your compiler/computer can handle 256 case switches X # X@@ -53,7 +53,7 @@ X X CC = gcc X #OPTIONS = -DBOOT720 -DBIG_ENDIAN -DALIGNED_ACCESS -DBIGCASE -DINLINE_FUNCTIONS X-OPTIONS = -DBOOT720 -DLITTLE_ENDIAN -DBIGCASE -DINLINE_FUNCTIONS \ X+OPTIONS = -DBOOT720 -DCPU_LITTLE_ENDIAN -DBIGCASE -DINLINE_FUNCTIONS \ X -DBOOTFILE=\"${LOCALPREFIX}/lib/pcemu/DriveA\" X #XROOT = /usr/local/X11R5 X XROOT = /usr/X11R6 Xdiff -ru cpu.h.orig cpu.h X--- cpu.h.orig Wed Jun 22 16:24:50 1994 X+++ cpu.h Wed Feb 18 10:50:46 1998 X@@ -113,13 +113,13 @@ X format and back again. Obviously there is nothing to do for little-endian X machines... */ X X-#if defined(LITTLE_ENDIAN) X+#if defined(CPU_LITTLE_ENDIAN) X # define ChangeE(x) (WORD)(x) X #else X # define ChangeE(x) (WORD)(((x) << 8) | ((BYTE)((x) >> 8))) X #endif X X-#if defined(LITTLE_ENDIAN) && !defined(ALIGNED_ACCESS) X+#if defined(CPU_LITTLE_ENDIAN) && !defined(ALIGNED_ACCESS) X # define ReadWord(x) (*(x)) X # define WriteWord(x,y) (*(x) = (y)) X # define CopyWord(x,y) (*x = *y) END-of-patch-b1-cpule echo x - patch-b2-panic sed 's/^X//' >patch-b2-panic << 'END-of-patch-b2-panic' Xdiff -ru orig.Makefile ./Makefile X--- orig.Makefile Wed Feb 18 10:50:46 1998 X+++ ./Makefile Wed Feb 18 10:56:07 1998 X@@ -16,6 +16,7 @@ X # -DINLINE_FUNCTIONS if your compiler support inline functions (most do) X # -DDEBUG prints lots of debugging messages. X # -DDEBUGGER compiles in the debugger X+# -DPANIC halt emulator when you hit an unimplemented interrupt X # -DKBUK if you have a UK style 102 key keyboard X # -DBIG_ENDIAN if your computer is big-endian (Sparc, 68000 etc) X # -DCPU_LITTLE_ENDIAN if your computer is little-endian (80x86 etc) Xdiff -ru orig.bios.c ./bios.c X--- orig.bios.c Fri Jun 24 13:39:47 1994 X+++ ./bios.c Wed Feb 18 10:56:07 1998 X@@ -657,7 +657,7 @@ X break; X default: X printf("unimplement INT 15h function %02X\n",*bregs[AH]); X-#ifdef DEBUG X+#ifdef PANIC X loc(); X exit_emu(); X #else X@@ -790,7 +790,7 @@ X break; X default: X printf("unimplemented INT 1Ah function %02X\n", *bregs[AH]); X-#ifdef DEBUG X+#ifdef PANIC X loc(); X exit_emu(); X #endif X@@ -991,7 +991,7 @@ X break; X default: X printf("Unimplemented INT 13h function %02X\n",*bregs[AH]); X-#ifdef DEBUG X+#ifdef PANIC X loc(); X exit_emu(); X #endif Xdiff -ru orig.vga.c ./vga.c X--- orig.vga.c Wed Jun 22 16:24:51 1994 X+++ ./vga.c Wed Feb 18 10:56:07 1998 X@@ -560,7 +560,7 @@ X break; X default: X printf("Unimplemented int 0x10 function 0x11 sub-function %02X\n",*bregs[AL]); X-#ifdef DEBUG X+#if PANIC X loc(); X exit_emu(); X #endif X@@ -584,7 +584,7 @@ X break; X default: X printf("Unimplemented int 10 function 0x12 sub-function 0x%02X\n",*bregs[BL]); X-#ifdef DEBUG X+#ifdef PANIC X loc(); X exit_emu(); X #endif X@@ -615,7 +615,7 @@ X default: X printf("Unimplemented int 10 function: %02X. AL = %02X BL = %02X\n", X *bregs[AH], *bregs[AL], *bregs[BL]); X-#ifdef DEBUG X+#ifdef PANIC X loc(); X exit_emu(); X #endif END-of-patch-b2-panic echo x - patch-c1-h sed 's/^X//' >patch-c1-h << 'END-of-patch-c1-h' Xdiff -ru ../work/pcemu1.01alpha/bios.c ./bios.c X--- ../work/pcemu1.01alpha/bios.c Wed Feb 18 11:09:11 1998 X+++ ./bios.c Wed Feb 18 11:04:52 1998 X@@ -204,7 +204,7 @@ X X static void int_serial(void) X { X- D(printf("In serial. Function = 0x%02X\n", *bregs[AH]);); X+ D(printf("In serial. Function = %02Xh\n", *bregs[AH]);); X X CalcAll(); X switch(*bregs[AH]) X@@ -219,7 +219,7 @@ X X static void int_printer(void) X { X- D(printf("In printer. Function = 0x%02X\n", *bregs[AH]);); X+ D(printf("In printer. Function = %02Xh\n", *bregs[AH]);); X X CalcAll(); X switch(*bregs[AH]) X@@ -366,7 +366,7 @@ X } X else X { X- D(printf("Writing ascii %02X scan %02X\n",ascii,scan);); X+ D(printf("Writing ascii %02Xh scan %02Xh\n",ascii,scan);); X PutMemB(data_segment, tmp, ascii); X PutMemB(data_segment, tmp+1, scan); X SetCurKeyBufEnd(cend); X@@ -385,7 +385,7 @@ X X *bregs[AH] = 0; X X- D(printf("Read: %02X\n", code);); X+ D(printf("Read: %02Xh\n", code);); X state = code & 0x80; X X if ((code & 0xe0) == 0xe0) X@@ -487,7 +487,7 @@ X X raw_to_BIOS(code, e0_code, &ascii, &scan); X X- D(printf("%02X/%02X\n", ascii, scan);); X+ D(printf("%02Xh/%02Xh\n", ascii, scan);); X if (ascii != 0 || scan != 0) X { X if (!(KB_1 & ALT) && ascii == 0 && e0_code) X@@ -539,7 +539,7 @@ X X SetCurKeyBufStart(cstart); X X- D(printf("Cleared key %02X\n", *bregs[AL]);); X+ D(printf("Cleared key %02Xh\n", *bregs[AL]);); X X *bregs[CL] = 1; X break; X@@ -567,7 +567,7 @@ X *bregs[AL] = 0x00; X X ZF = 0; X- D(printf("Returning key %02X from INT 16 1/11\n", *bregs[AL]);); X+ D(printf("Returning key %02Xh from INT 16 1/11\n", *bregs[AL]);); X } X X break; X@@ -615,7 +615,7 @@ X (!(!(KB_2 & SYSREQ)) << 7)); X break; X default: X- D(printf("Warning: unimplemented INT 16 function %02X\n",func);); X+ D(printf("Warning: unimplemented INT 16 function %02Xh\n",func);); X CF = 1; X break; X } X@@ -624,7 +624,7 @@ X X static void int_extended(void) X { X- D(printf("In INT 0x15. Function = 0x%02X\n", *bregs[AH]);); X+ D(printf("In INT 0x15. Function = %02Xh\n", *bregs[AH]);); X X CalcAll(); X CF = 1; X@@ -635,8 +635,10 @@ X case 0x85: X CF = 0; X break; X- case 0x10: X case 0x41: X+ *bregs[AH] = 0x86; X+ break; X+ case 0x10: X case 0x64: X case 0xc0: X case 0xc1: X@@ -656,7 +658,7 @@ X *bregs[AH] = 1; X break; X default: X- printf("unimplement INT 15h function %02X\n",*bregs[AH]); X+ printf("unimplemented INT 15h function %02Xh\n",*bregs[AH]); X #ifdef PANIC X loc(); X exit_emu(); X@@ -721,7 +723,7 @@ X time_t curtime; X struct tm *local; X X- D(printf("In time. Function = 0x%02X\n", *bregs[AH]);); X+ D(printf("In time. Function = %02Xh\n", *bregs[AH]);); X X CalcAll(); X switch(*bregs[AH]) X@@ -737,7 +739,7 @@ X X CF = 0; X X-/* D(printf("Returning %02X%02X%02X%02X\n", *bregs[CL], *bregs[CH], X+/* D(printf("Returning %02X%02X%02X%02Xh\n", *bregs[CL], *bregs[CH], X *bregs[DH], *bregs[DL]);); */ X break; X case 1: /* Set ticks */ X@@ -789,7 +791,7 @@ X CF = 1; X break; X default: X- printf("unimplemented INT 1Ah function %02X\n", *bregs[AH]); X+ printf("unimplemented INT 1Ah function %02Xh\n", *bregs[AH]); X #ifdef PANIC X loc(); X exit_emu(); X@@ -843,7 +845,7 @@ X switch(*bregs[AH]) X { X case 0: X- D(printf("Initialise disk 0x%02X\n",*bregs[DL]);); X+ D(printf("Initialize disk %02Xh\n",*bregs[DL]);); X CF = 0; X break; X case 1: /* Get last error */ X@@ -890,10 +892,10 @@ X break; X } X head = *bregs[DH]; X- cylinder = *bregs[CH] + ((*bregs[CL] & 0xc0) << 8); X+ cylinder = *bregs[CH] + ((*bregs[CL] & 0xc0) << 2); X sector = (*bregs[CL] & 0x3f) -1; X buffer = &c_es[ChangeE(wregs[BX])]; X- D(printf("DISK 0x%02X (%s) read [h%d,s%d,t%d](%d)->%04X:%04X\n", X+ D(printf("DISK %02Xh (%s) read [h%d,s%d,t%d](%d)->%04X:%04X\n", X *bregs[DL], disk->name, head, sector, cylinder, *bregs[AL], X sregs[ES], ChangeE(wregs[BX]));); X if (disk_seek(disk, cylinder, head, sector)) X@@ -912,7 +914,7 @@ X CF = 0; X break; X case 4: /* Test disk */ X- D(printf("Testing disk 0x%02X\n",*bregs[DL]);); X+ D(printf("Testing disk %02Xh\n",*bregs[DL]);); X disk = get_disk_tab(*bregs[DL]); X if (!disk) X { X@@ -932,7 +934,7 @@ X CF = 0; X break; X case 8: /* Get disk params */ X- D(printf("Get disk params 0x%02X\n",*bregs[DL]);); X+ D(printf("Get disk params %02Xh\n",*bregs[DL]);); X disk = get_disk_tab(*bregs[DL]); X if (disk) X { X@@ -966,7 +968,7 @@ X } X break; X case 0x15: /* Get disk type */ X- D(printf("Get disk type 0x%02X\n",*bregs[DL]);); X+ D(printf("Get disk type %02Xh\n",*bregs[DL]);); X disk = get_disk_tab(*bregs[DL]); X if (disk) X { X@@ -990,7 +992,7 @@ X } X break; X default: X- printf("Unimplemented INT 13h function %02X\n",*bregs[AH]); X+ printf("Unimplemented INT 13h function %02Xh\n",*bregs[AH]); X #ifdef PANIC X loc(); X exit_emu(); X@@ -1070,7 +1072,7 @@ X { X unsigned tmp,tmp2; X X- D(printf("In INT 0xe8 AH = 0x%02X AL = 0x%02X\n",*bregs[AH],*bregs[AL]);); X+ D(printf("In INT 0xe8 AH = %02Xh AL = %02Xh\n",*bregs[AH],*bregs[AL]);); X X CalcAll(); X switch(*bregs[AH]) Xdiff -ru ../work/pcemu1.01alpha/cpu.c ./cpu.c X--- ../work/pcemu1.01alpha/cpu.c Wed Feb 18 11:09:10 1998 X+++ ./cpu.c Wed Feb 18 11:04:52 1998 X@@ -537,7 +537,7 @@ X #ifdef DEBUGGER X call_debugger(D_INT); X #endif X- D2(printf("Interrupt 0x%02X\n", int_pending);); X+ D2(printf("Interrupt %02Xh\n", int_pending);); X interrupt(int_pending); X int_pending = 0; X X@@ -4163,7 +4163,7 @@ X X static INLINE2 void i_notdone(void) X { X- fprintf(stderr,"Error: Unimplemented opcode %02X at cs:ip = %04X:%04X\n", X+ fprintf(stderr,"Error: Unimplemented opcode %02Xh at cs:ip = %04X:%04X\n", X c_cs[ip-1],sregs[CS],ip-1); X /* exit(1); */ X } Xdiff -ru ../work/pcemu1.01alpha/vga.c ./vga.c X--- ../work/pcemu1.01alpha/vga.c Wed Feb 18 11:09:11 1998 X+++ ./vga.c Wed Feb 18 11:04:52 1998 X@@ -559,7 +559,7 @@ X } X break; X default: X- printf("Unimplemented int 0x10 function 0x11 sub-function %02X\n",*bregs[AL]); X+ printf("Unimplemented int 0x10 function 0x11 sub-function %02Xh\n",*bregs[AL]); X #if PANIC X loc(); X exit_emu(); X@@ -583,7 +583,7 @@ X *bregs[AL] = 0x12; X break; X default: X- printf("Unimplemented int 10 function 0x12 sub-function 0x%02X\n",*bregs[BL]); X+ printf("Unimplemented int 10 function 0x12 sub-function %02Xh\n",*bregs[BL]); X #ifdef PANIC X loc(); X exit_emu(); Xdiff -ru ../work/pcemu1.01alpha/xstuff.c ./xstuff.c X--- ../work/pcemu1.01alpha/xstuff.c Wed Feb 18 11:09:10 1998 X+++ ./xstuff.c Wed Feb 18 11:04:52 1998 X@@ -523,7 +523,7 @@ X X if (key == XK_Pause) X { X- D(printf("Pause pressed. State = %02X\n", event.xkey.state);); X+ D(printf("Pause pressed. State = %02Xh\n", event.xkey.state);); X if (event.xkey.state & ControlMask) X scan = 0xc6e046e0; X else X@@ -531,7 +531,7 @@ X } /* XK_F22 is sun type 4 PrtScr */ X else if (key == XK_Print || key == XK_F22) X { X- D(printf("Print pressed. State = %02X\n", event.xkey.state);); X+ D(printf("Print pressed. State = %02Xh\n", event.xkey.state);); X if (event.xkey.state & Mod1Mask) X scan = 0x54; X else END-of-patch-c1-h echo x - patch-c2-rom8x16 sed 's/^X//' >patch-c2-rom8x16 << 'END-of-patch-c2-rom8x16' Xdiff -ru orig.vga.c vga.c X--- orig.vga.c Wed Feb 18 11:11:30 1998 X+++ vga.c Mon Feb 16 18:08:24 1998 X@@ -558,6 +558,15 @@ X wregs[BP] = ChangeE(0); X } X break; X+ case 0x14: /* Load rom 8x16 font */ X+ if (height != 25) { X+ height = 25; X+ SetHeight(height); X+ SetSize((width+1) * (height+1) * 2); X+ new_screen(width+1, height+1, screen_mem); X+ clearscr(0,0,width, height, 0x07); X+ } X+ break; X default: X printf("Unimplemented int 0x10 function 0x11 sub-function %02Xh\n",*bregs[AL]); X #if PANIC END-of-patch-c2-rom8x16 echo x - patch-c3-hdemul sed 's/^X//' >patch-c3-hdemul << 'END-of-patch-c3-hdemul' Xdiff -ru orig.bios.c bios.c X--- orig.bios.c Wed Feb 18 11:11:30 1998 X+++ bios.c Wed Feb 18 11:14:45 1998 X@@ -109,6 +109,12 @@ X { "/dev/fd0", 18, 80, 2 } X }; X X+DiskTab hdisk[MAXHDISKS] = X+{ X+{ "/dev/wd0", 63, 407, 64 }, X+{ "/some/file", 32, 120, 64 }, X+}; X+ X int bootdisk = 0x0; X static unsigned pos = INT_ROUTINE_START; X X@@ -803,13 +809,13 @@ X X static DiskTab *get_disk_tab(int num) X { X- if (num < NUMFDISKS) X+ if (num >= 0 && num < NUMFDISKS) X return &fdisk[num]; X- X+ if (num >= 0x80 && num < 0x80 + NUMHDISKS) X+ return &hdisk[num&0x7f]; X return NULL; X } X X- X static int disk_seek(DiskTab *disk, int cylinder, int head, int sector) X { X unsigned pos; X@@ -817,6 +823,9 @@ X if (head > disk->heads || cylinder > disk->cylinders || X sector > disk->sectors) X { X+ D(printf("error h%d>%d or c%d>%d or s%d>%d\n",*bregs[DL], X+ head, disk->heads, cylinder, disk->cylinders, X+ sector, disk->sectors);); X CF = 1; X *bregs[AH] = diskerror = 0x4; /* Sector not found */ X return -1; X@@ -853,7 +862,8 @@ X *bregs[AH] = 0; X *bregs[AL] = diskerror; X break; X- case 2: /* Write sector */ X+ case 2: /* Read sector */ X+ D(printf("Read sector drive %02Xh\n", *bregs[DL]);); X disk = get_disk_tab(*bregs[DL]); X if (!disk) X { X@@ -865,7 +875,7 @@ X cylinder = *bregs[CH] + ((*bregs[CL] & 0xc0) << 2); X sector = (*bregs[CL] & 0x3f) -1; X buffer = &c_es[ChangeE(wregs[BX])]; X- D(printf("DISK 0x%02X (%s) read [h%d,s%d,t%d](%d)->%04X:%04X\n", X+ D(printf("DISK %02Xh (%s) read [h%d,s%d,c%d](%d)->%04X:%04X\n", X *bregs[DL], disk->name, head, sector, cylinder, *bregs[AL], X sregs[ES], ChangeE(wregs[BX]));); X if (disk_seek(disk, cylinder, head, sector)) X@@ -884,6 +894,7 @@ X CF = 0; X break; X case 3: /* Write sector */ X+ D(printf("write sector drive %02Xh\n", *bregs[DL]);); X disk = get_disk_tab(*bregs[DL]); X if (!disk) X { X@@ -895,7 +906,7 @@ X cylinder = *bregs[CH] + ((*bregs[CL] & 0xc0) << 2); X sector = (*bregs[CL] & 0x3f) -1; X buffer = &c_es[ChangeE(wregs[BX])]; X- D(printf("DISK %02Xh (%s) read [h%d,s%d,t%d](%d)->%04X:%04X\n", X+ D(printf("DISK %02Xh (%s) read [h%d,s%d,c%d](%d)->%04X:%04X\n", X *bregs[DL], disk->name, head, sector, cylinder, *bregs[AL], X sregs[ES], ChangeE(wregs[BX]));); X if (disk_seek(disk, cylinder, head, sector)) X@@ -923,8 +934,9 @@ X break; X } X head = *bregs[DH]; X- cylinder = *bregs[CH] + ((*bregs[CL] & 0xc0) << 8); X+ cylinder = *bregs[CH] + ((*bregs[CL] & 0xc0) << 2); X sector = (*bregs[CL] & 0x3f) -1; X+ D(printf("h%d c%d s%d\n",head, cylinder, sector);); X buffer = &c_es[ChangeE(wregs[BX])]; X if (disk_seek(disk, cylinder, head, sector)) X break; X@@ -949,12 +961,15 @@ X case 18: X *bregs[BL] = 4; X break; X+ default: X+ *bregs[BL] = 0; X } X X *bregs[CH] = (disk->cylinders - 1) & 0xff; X- *bregs[CL] = (disk->sectors - 1) | (((disk->cylinders - 1) X+ *bregs[CL] = disk->sectors | (((disk->cylinders - 1) X & 0x300) >> 2); X- *bregs[DH] = disk->heads -1; X+ *bregs[DH] = (disk->heads -1) | (((disk->cylinders - 1) X+ & 0xc00)>> 4); X *bregs[DL] = *bregs[DL] < 0x80 ? NUMFDISKS : NUMHDISKS; X *bregs[AL] = 0; X CF = 0; X@@ -966,6 +981,19 @@ X wregs[DX] = 0; X wregs[CX] = 0; X } X+ D(printf("Ret CH=%02Xh, CL=%02Xh, DH=%02Xh, DL=%02Xh\n", X+ *bregs[CH], *bregs[CL], *bregs[DH], *bregs[DL]);); X+ break; X+ case 0x12: X+ D(printf("Disk controller ram diag\n");); X+ disk = get_disk_tab(*bregs[DL]); X+ if (disk) { X+ CF = 0; X+ *bregs[AH] = diskerror = 0; X+ } else { X+ CF = 1; X+ *bregs[AH] = diskerror = 0x20; X+ } X break; X case 0x15: /* Get disk type */ X D(printf("Get disk type %02Xh\n",*bregs[DL]);); X@@ -991,6 +1019,38 @@ X *bregs[AH] = 0; X } X break; X+ case 0x18: X+ D(printf("Set media type for format drive %02Xh\n", *bregs[DL]);); X+ D(printf("sectors %d\n", (*bregs[CL] & 0x3f))); X+ D(printf("cylinders %d+%d\n",*bregs[CH], ((*bregs[CL] & 0xc0) << 2))); X+ X+ disk = get_disk_tab(*bregs[DL]); X+ if (disk) { X+ if (disk->sectors - 1 != (*bregs[CL] & 0x3f)) { X+ printf("INT 13h/18h: sectors %d != %d\n", X+ disk->sectors, (*bregs[CL] & 0x3f)); X+ CF = 1; X+ *bregs[AH] = diskerror = 0x0c; X+ } X+ if (disk->cylinders - 1 X+ != (*bregs[CH] | ((*bregs[CL] & 0xc0) << 2))) { X+ printf("INT 13h/18h: cylinders %d != %d\n", X+ disk->cylinders, X+ (*bregs[CH] | ((*bregs[CL] & 0xc0) << 2))); X+ CF = 1; X+ *bregs[AH] = diskerror = 0x0c; X+ } X+ /* make 11-byte param table at F000h:E401h ? point ES:DI at it? */ X+ *bregs[AH] = diskerror = 0; X+ CF = 0; X+ } else { X+ CF = 1; X+ *bregs[AH] = diskerror = 0x80; X+ } X+ CF = 1; X+ *bregs[AH] = diskerror = 0x01; X+ break; X+ X default: X printf("Unimplemented INT 13h function %02Xh\n",*bregs[AH]); X #ifdef PANIC X@@ -998,9 +1058,9 @@ X exit_emu(); X #endif X break; X- } X+ } X X- D(if (CF) printf("Operation failed\n");); X+ D(if (CF) printf("Operation failed\n"); else printf("OK\n");); X } X X X@@ -1186,24 +1246,25 @@ X memcpy(BIOS_base+0xe000,BIOSCOPYRIGHT, sizeof BIOSCOPYRIGHT); X } X X+static unsigned char diskparamhd[16]; X X void init_bios(void) X { X int i; X+ DiskTab *hd; X #ifdef BOOT X DiskTab *boot; X #endif X-/* X-* for (i = 0; i < NUMHDISKS; i++) X-* { X-* if ((hdisk[i].fd = open(hdisk[i].name,O_RDWR)) < 0) X-* { X-* fprintf(stderr, "Cannot open hard disk %s :",hdisk[i].name); X-* perror(NULL); X-* exit(1); X-* } X-* } X-*/ X+ X+ for (i = 0; i < NUMHDISKS; i++) X+ { X+ if ((hdisk[i].fd = open(hdisk[i].name,O_RDWR)) < 0) X+ { X+ fprintf(stderr, "Cannot open hard disk %s :",hdisk[i].name); X+ perror(NULL); X+ exit(1); X+ } X+ } X for (i = 0; i < NUMFDISKS; i++) X { X if ((fdisk[i].fd = open(fdisk[i].name,O_RDWR)) < 0) X@@ -1236,6 +1297,29 @@ X IF = 1; X #endif X X+#ifdef MK_HD_PARAMS X+ hd = get_disk_tab(0x80); X+ if (hd) { X+ diskparamhd[0] = (hd->cylinders) & 0xff; X+ diskparamhd[1] = (hd->cylinders) >> 8; X+ diskparamhd[2] = (hd->heads); X+ diskparamhd[3] = 0; X+ diskparamhd[4] = 0; X+ diskparamhd[5] = 0xff; X+ diskparamhd[6] = 0xff; X+ diskparamhd[7] = 0; X+ diskparamhd[8] = 8; X+ diskparamhd[9] = 0; X+ diskparamhd[10] = 0; X+ diskparamhd[11] = 0; X+ diskparamhd[12] = (hd->cylinders) & 0xff; X+ diskparamhd[13] = (hd->cylinders) >> 8; X+ diskparamhd[14] = (hd->sectors); X+ diskparamhd[15] = 0; X+ set_int(0x41, diskparamhd, sizeof(diskparamhd), 0, 0, 0); X+ } X+#endif X+ X #ifdef DEBUGGER X signal(SIGINT, (void *)debug_breakin); X #else X@@ -1257,6 +1341,11 @@ X } X X X+char *set_hd(char *file, int hd) X+{ X+} X+ X+ X char *set_boot_type(int type) X { X fdisk[0].heads = 2; X@@ -1289,10 +1378,8 @@ X X void bios_off(void) X { X-/* int i; X-* X-* for (i = 0; i < NUMHDISKS; i++) X-* close(hdisk[i].fd); X-*/ X+ int i; X+ X+ for (i = 0; i < NUMHDISKS; i++) X+ close(hdisk[i].fd); X } X- END-of-patch-c3-hdemul exit >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 02:24:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA15093 for freebsd-ports-outgoing; Thu, 19 Feb 1998 02:24:37 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (dburr@199-170-160-220.la.inreach.net [199.107.160.220]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA15069; Thu, 19 Feb 1998 02:24:32 -0800 (PST) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.7/8.8.7) id CAA01816; Thu, 19 Feb 1998 02:24:09 -0800 (PST) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.1 [p0] on FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Date: Thu, 19 Feb 1998 02:23:13 -0800 (PST) Organization: Starfleet Command From: Donald Burr To: FreeBSD Ports , FreeBSD Questions Subject: Have KDE ports been updated to Beta3? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- I notice KDE Beta 3 is now out. I'd like to give it a try. Have the KDE ports been updated to track Beta 3, and if so, have they been committed into ports-current yet? Do they work? Please cc me via e-mail if possible. Thanks! - --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNOwISPjpixuAwagxAQFWUgP/R2UEB6kgboiH72dqaB9EFIMtzQ9Y7Btm oZKdw6Kg4AXeNxqeFPVb5kuB8v70vj1knM+KJ29ltO/Fs75u/W5L5lImjV6ojD2u 390KwPUBWb7j6XfAcuSsdroygvadFC3yM1pBQUYse4btKOOagxrqrJGcKNCu64P6 PLp6IvV13SA= =lnZc -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 02:28:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA15674 for freebsd-ports-outgoing; Thu, 19 Feb 1998 02:28:54 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from colossus.dyn.ml.org (dburr@199-170-160-220.la.inreach.net [199.107.160.220]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA15652; Thu, 19 Feb 1998 02:28:48 -0800 (PST) (envelope-from dburr@colossus.dyn.ml.org) Received: (from dburr@localhost) by colossus.dyn.ml.org (8.8.7/8.8.7) id CAA01831; Thu, 19 Feb 1998 02:28:25 -0800 (PST) (envelope-from dburr) Message-ID: X-Mailer: XFMail 1.1 [p0] on FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit MIME-Version: 1.0 Date: Thu, 19 Feb 1998 02:25:42 -0800 (PST) Organization: Starfleet Command From: Donald Burr To: FreeBSD Ports , FreeBSD Questions Subject: Statically-linked package for DDD 2.3.3? Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- I notice that the DDD (Data Display Debugger) port has been updated to 2.3.3. Excellent! I love this debugger (I have used it on Linux systems in the past), and would love to use it, but unfortunately I don't have Motif. It supposedly compiles under Lesstif, but I have not been able to get it to work right this way. Has anynone prepared a statically-linked package of the new DDD, or can someone who has Motif prepare a statically-linked package for DDD and upload it to ftp.freebsd.org? That would be much appreciated. Please cc: your responses to me by e-mail if possible. Thanks! - --- Donald Burr - Ask me for my PGP key | PGP: Your WWW HomePage: http://DonaldBurr.base.org/ ICQ #1347455 | right to Address: P.O. Box 91212, Santa Barbara, CA 93190-1212 | 'Net privacy. Phone: (805) 957-9666 FAX: (800) 492-5954 | USE IT. -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQCVAwUBNOwJSPjpixuAwagxAQH92wP/ZLxzXVhJXWDNU4AJ4cmvdFzfr8716l95 73Vi6lC6b9vPXoFJxAFbY9AUrjVgjSqoIr3PI+Odlm+0Zp1xI86hRAthlnQGapLw u/B9Rcp6ZwBOSPmOs0U1IQjxm6oVj9XtyZaL8JBlRn+ZXUJYDp6/uZd9QK+arAMw NYDqk2Kzo8g= =n4dL -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 04:10:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA03949 for freebsd-ports-outgoing; Thu, 19 Feb 1998 04:10:09 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA03930; Thu, 19 Feb 1998 04:10:05 -0800 (PST) (envelope-from gnats) Received: from tapti.hss.hns.com (tapti.hss.hns.com [139.85.242.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA03394 for ; Thu, 19 Feb 1998 04:06:39 -0800 (PST) (envelope-from kchowksey@hss.hns.com) Received: from tarang.hss.hns.com (tarang.hss.hns.com [139.85.242.33]) by tapti.hss.hns.com (8.8.2/8.7.3) with ESMTP id RAA28315 for ; Thu, 19 Feb 1998 17:35:56 +0530 (IST) Received: (from kchowksey@localhost) by tarang.hss.hns.com (8.8.2/8.7.3) id RAA10319 for FreeBSD-gnats-submit@freebsd.org; Thu, 19 Feb 1998 17:35:45 +0530 (IST) Message-Id: <199802191205.RAA10319@tarang.hss.hns.com> Date: Thu, 19 Feb 1998 17:35:45 +0530 (IST) From: Kapil Chowksey To: FreeBSD-gnats-submit@FreeBSD.ORG Subject: ports/5790: new port [print/mpage] Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5790 >Category: ports >Synopsis: new port (print/mpage) >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 19 04:10:02 PST 1998 >Last-Modified: >Originator: Kapil Chowksey >Organization: Hughes Software Systems >Release: FreeBSD 3.0-971209-SNAP i386 >Environment: 2.2.1-RELEASE and 3.0-971209-SNAP >Description: uuencoded tarball enclosed. >How-To-Repeat: >Fix: begin 644 mpage.tgz M'XL(`)YI[#0"`^U9W9/:-A#G%?T5V^$>CG(VEC\Y4CI'@"3N\#78D[;3Z=P8 M6X`'8[NVR)4\]&_ORN;2^T@R>7P`4[CYP[3)FOWY-!WQV]GBULT5)L93+I.^YH<>W8KN"M>-IMM_%? MWK'Z7Q^U.4-:>NO@;+7IUM']RL\W9X6J3Y_(FSF4_V0F1*>W5RU%E M2OKC\;7;7[P>N;UZP%;>/N*$R&'L1_N`P4_+/)#%NY1WVY_)_\[_A<'S]G/B MOTXU';&`JIJE5_C_//;?!<:)\1],ZX']L:97^'\*F@P-.+^'J4WH@:%H2VH% MJTMS23NJHAF^J9F*&G0,94D#YI-:1=^?_Z?;]9/D`%^._U0S4!#Q7S&L"O^? MP_Z#V60RFKHGQG_ZP?X6503^4]6J\/\45(;V$A3[`'88SX8IAOV"FT/*,LAQ MW1R2%;+P4:Z0__OV_^'(&2Q.G?^;^JW_ZXI:X+]5Y?\GBO\*_P]S\!`"DG7F M[8`GF,4'>Y^!%PI4"09CS+%SNA?Y"10ER7L9P6N\8+@Z6!ZRFARQ< M;WB7$!C1MFZS`./?(M^_]\;#ONB?U?5=6C_VN:89;^;]#* M_T]!RS`NK4]V'M:\F+:/=UWR^CWZ-CK-<7<,YIC]R?/!/:;MS%J..VS-W#=Z)\)\6.7]Y_V<:)IX%5->U*OX["4F2!+??_?ZINWN,;I)W@$&XJG6IV55, M$0Q9I-5J?1"KNYN]^(J#+6B[+NUTJ55^S+FZ`DE3+BQHX;\)5U<$&N!@=,@W M&&%B<.?%T)\Z]MWH<%`\H-H,SM.,K5CF+:,#K'V_6?9F9="8'W+.=I"GS`]7 MH0\YXWA>K'-8LBBY0='!H.?[1,("^Q)`SE=8G7.?#8; M7[N_ST>]E\[PNG@<+8K!8;X8O;)_Z[%N>Y]G]7H#9DY;!7Y(&9&.;:*E'26^ M%Q%X:4^']J)W=EZV-=MX,A-I;+^\SXW")6D]XA9G*8%)_X&.VS.]F%&Q`&IV M+J@"+6J:HA2+*!NE!GA!`(=DGXE,0*3^88R^@9%USO>K%6DU`-?XGP'NMZ*& M6TZ72'4_+8/NL_-1$\[.R\4U[S3(%-GE?)ND54<1?'_VU''%%[;Y8O9ZT9\T M/ZKCH3`J:7Y$)]3#%?P!/X`4(+=\8\T2Z.!/>"'2A1AVVR#,'C6_P#P"IRKA I7$>QGP1BF[5_?"CV:"+#OMMO?K9'%6Y45%%%%57TC="_@L-WLP`H```" ` end >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 06:49:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA24712 for freebsd-ports-outgoing; Thu, 19 Feb 1998 06:49:24 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from coconut.itojun.org (root@coconut.itojun.org [210.160.95.97]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA24668 for ; Thu, 19 Feb 1998 06:49:10 -0800 (PST) (envelope-from itojun@itojun.org) Received: from localhost (itojun@localhost.itojun.org [127.0.0.1]) by coconut.itojun.org (8.8.8+3.0Wbeta11/3.6W) with ESMTP id XAA02618; Thu, 19 Feb 1998 23:48:58 +0900 (JST) To: dphi@ix.netcom.com, ports@FreeBSD.ORG In-reply-to: itojun's message of Wed, 18 Feb 1998 08:14:10 JST. <18213.887757250@coconut.itojun.org> X-Template-Reply-To: itojun@itojun.org X-Template-Return-Receipt-To: itojun@itojun.org X-PGP-Fingerprint: F8 24 B4 2C 8C 98 57 FD 90 5F B4 60 79 54 16 E2 Subject: Re: FreeBSD Port: nvi-m17n-1.79-970820 From: Jun-ichiro itojun Itoh Date: Thu, 19 Feb 1998 23:48:58 +0900 Message-ID: <2615.887899738@coconut.itojun.org> Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Maybe I can add a new port, say, editors/nvi-perl, which is > plain nvi with perl? I think I've done with editors/nvi-perl. To prevent confusion, I would like to rename editors/nvi to editors/nvi-m17n. editors/nvi-perl: original nvi with perl5 linked into editors/nvi-m17n: nvi + multilingual patch japanese/nvi-*: editors/nvi-m17n configured for Japanese korean/nvi-*: ditto chinese/nvi-*: ditto Please drop me a note if you have any objection about the naming. I'll rename editors/nvi sometime tomorrow. Thanks. itojun To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 08:18:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA08826 for freebsd-ports-outgoing; Thu, 19 Feb 1998 08:18:48 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from vader.cs.berkeley.edu (vader.CS.Berkeley.EDU [128.32.38.234]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA08809 for ; Thu, 19 Feb 1998 08:18:42 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: (from asami@localhost) by vader.cs.berkeley.edu (8.8.7/8.7.3) id IAA01058; Thu, 19 Feb 1998 08:18:34 -0800 (PST) Date: Thu, 19 Feb 1998 08:18:34 -0800 (PST) Message-Id: <199802191618.IAA01058@vader.cs.berkeley.edu> To: itojun@itojun.org CC: dphi@ix.netcom.com, ports@FreeBSD.ORG In-reply-to: <2615.887899738@coconut.itojun.org> (message from Jun-ichiro itojun Itoh on Thu, 19 Feb 1998 23:48:58 +0900) Subject: Re: FreeBSD Port: nvi-m17n-1.79-970820 From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * To prevent confusion, I would like to rename editors/nvi to * editors/nvi-m17n. * editors/nvi-perl: original nvi with perl5 linked into * editors/nvi-m17n: nvi + multilingual patch * I'll rename editors/nvi sometime tomorrow. Thanks. Don't do that yourself! I'll do a repository copy. Is editors/nvi -> editors/nvi-m17n, editors/nvi-perl ok? 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 19 10:40:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA28372 for freebsd-ports-outgoing; Thu, 19 Feb 1998 10:40:18 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA28314; Thu, 19 Feb 1998 10:40:09 -0800 (PST) (envelope-from gnats) Received: from mail.camelot.de (root@mail.camelot.de [195.30.224.10]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA27490 for ; Thu, 19 Feb 1998 10:35:28 -0800 (PST) (envelope-from ulli@camelot.de) Received: from perceval.camelot.de (ulli@perceval.camelot.de [195.30.224.22]) by mail.camelot.de (8.8.8/8.8.8) with ESMTP id TAA26674 for ; Thu, 19 Feb 1998 19:35:14 +0100 (CET) (envelope-from ulli@camelot.de) Received: (from ulli@localhost) by perceval.camelot.de (8.8.8/8.8.8) id TAA23376; Thu, 19 Feb 1998 19:35:14 +0100 (CET) (envelope-from ulli) Message-Id: <199802191835.TAA23376@perceval.camelot.de> Date: Thu, 19 Feb 1998 19:35:14 +0100 (CET) From: fliszt@gmx.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5792: majorcool port broken, easy to fix. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5792 >Category: ports >Synopsis: wrong DISTNAME value in /usr/ports/mail/majorcool/Makefile >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Feb 19 10:40:03 PST 1998 >Last-Modified: >Originator: FLiszt >Organization: CameloT Online Services >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: The majorcool port in /usr/local/ports/mail/majorcool fetches the wrong file from the master server. This is caused by the port fetching the URL http://ncrinfo.ncr.com/pub/contrib/unix/MajorCool/majorcool.tar.gz, which is a symlink to majorcool-1.20.tar.gz >How-To-Repeat: cd /usr/ports/mail/majorcool; make will end up in a checksum mismatch. >Fix: edit /usr/ports/mail/majorcool/Makefile and set DISTNAME= majorcool-1.12 run make fetch to get the right file run make makesum to build a checksum run make >Audit-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 19 11:05:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA03590 for freebsd-ports-outgoing; Thu, 19 Feb 1998 11:05:40 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from po1.bbn.com (PO1.BBN.COM [192.1.50.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA03575; Thu, 19 Feb 1998 11:05:31 -0800 (PST) (envelope-from pmakridi@bbn.com) Received: from ballista.bbn.com (BALLISTA.BBN.COM [128.89.6.23]) by po1.bbn.com (8.8.6/8.8.6) with SMTP id OAA03136; Thu, 19 Feb 1998 14:04:08 -0500 (EST) Message-ID: <34EC826C.41C67EA6@bbn.com> Date: Thu, 19 Feb 1998 14:05:16 -0500 From: Apostolos Makridis Organization: BBN Systems and Technologies X-Mailer: Mozilla 3.01Gold (X11; U; SunOS 4.1.3_U1 sun4m) MIME-Version: 1.0 To: obrien@FreeBSD.ORG CC: ports@FreeBSD.ORG Subject: FreeBSD Port: netscape-communicator-4.04.us Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Are the binaries available under 2.2.5 FreeBSD for Netscape v4.04 (US) ? Paul Makridis 617 873 3305 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 11:10:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA04808 for freebsd-ports-outgoing; Thu, 19 Feb 1998 11:10:11 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA04788; Thu, 19 Feb 1998 11:10:05 -0800 (PST) (envelope-from gnats) Received: from mph124.rh.psu.edu (mph@MPH124.rh.psu.edu [128.118.126.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA03063 for ; Thu, 19 Feb 1998 11:03:06 -0800 (PST) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id OAA02865; Thu, 19 Feb 1998 14:03:01 -0500 (EST) (envelope-from mph) Message-Id: <199802191903.OAA02865@mph124.rh.psu.edu> Date: Thu, 19 Feb 1998 14:03:01 -0500 (EST) From: Matthew Hunt To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5793: New port: p5-ReadLine-Gnu Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5793 >Category: ports >Synopsis: New port: p5-ReadLine-Gnu >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 19 11:10:02 PST 1998 >Last-Modified: >Originator: Matthew Hunt >Organization: >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: The Term::ReadLine::Gnu module for Perl 5 allows Term::ReadLine (shipped with Perl 5) to use the GNU readline library, which is included with FreeBSD. >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-ReadLine-Gnu # p5-ReadLine-Gnu/files # p5-ReadLine-Gnu/files/md5 # p5-ReadLine-Gnu/pkg # p5-ReadLine-Gnu/pkg/PLIST # p5-ReadLine-Gnu/pkg/COMMENT # p5-ReadLine-Gnu/pkg/DESCR # p5-ReadLine-Gnu/Makefile # echo c - p5-ReadLine-Gnu mkdir -p p5-ReadLine-Gnu > /dev/null 2>&1 echo c - p5-ReadLine-Gnu/files mkdir -p p5-ReadLine-Gnu/files > /dev/null 2>&1 echo x - p5-ReadLine-Gnu/files/md5 sed 's/^X//' >p5-ReadLine-Gnu/files/md5 << 'END-of-p5-ReadLine-Gnu/files/md5' XMD5 (Term-ReadLine-Gnu-0.09.tar.gz) = f602548d279747fc9832c4d76d65045f END-of-p5-ReadLine-Gnu/files/md5 echo c - p5-ReadLine-Gnu/pkg mkdir -p p5-ReadLine-Gnu/pkg > /dev/null 2>&1 echo x - p5-ReadLine-Gnu/pkg/PLIST sed 's/^X//' >p5-ReadLine-Gnu/pkg/PLIST << 'END-of-p5-ReadLine-Gnu/pkg/PLIST' Xlib/perl5/site_perl/i386-freebsd/auto/Term/ReadLine/Gnu/Gnu.so Xlib/perl5/site_perl/i386-freebsd/auto/Term/ReadLine/Gnu/Gnu.bs Xlib/perl5/site_perl/Term/ReadLine/Gnu.pm Xlib/perl5/man/man3/Term::ReadLine::Gnu.3.gz Xlib/perl5/site_perl/i386-freebsd/auto/Term/ReadLine/Gnu/.packlist X@dirrm lib/perl5/site_perl/i386-freebsd/auto/Term/ReadLine/Gnu END-of-p5-ReadLine-Gnu/pkg/PLIST echo x - p5-ReadLine-Gnu/pkg/COMMENT sed 's/^X//' >p5-ReadLine-Gnu/pkg/COMMENT << 'END-of-p5-ReadLine-Gnu/pkg/COMMENT' XPerl 5 module that allows Term::ReadLine to use GNU readline. END-of-p5-ReadLine-Gnu/pkg/COMMENT echo x - p5-ReadLine-Gnu/pkg/DESCR sed 's/^X//' >p5-ReadLine-Gnu/pkg/DESCR << 'END-of-p5-ReadLine-Gnu/pkg/DESCR' XThis module allows Term::ReadLine (which ships with Perl 5) to use Xthe GNU readline library, for improved command line editing and Xrecall in programs using Term::ReadLine. END-of-p5-ReadLine-Gnu/pkg/DESCR echo x - p5-ReadLine-Gnu/Makefile sed 's/^X//' >p5-ReadLine-Gnu/Makefile << 'END-of-p5-ReadLine-Gnu/Makefile' X# New ports collection makefile for: p5-ReadLine-Gnu X# Version required: 0.09 X# Date created: 19 February 1998 X# Whom: Matthew Hunt X# X# $Id$ X# X XDISTNAME= Term-ReadLine-Gnu-0.09 XPKGNAME= p5-ReadLine-Gnu-0.09 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Term X XMAINTAINER= mph@pobox.com X XUSE_PERL5= YES X XMAN3= Term::ReadLine::Gnu.3 XMANPREFIX= ${PREFIX}/lib/perl5 X X# We override LDDLFLAGS and LDFLAGS to keep it from adding -L/usr/local/lib X# automatically. There is sometimes an old libreadline in /usr/local/lib X# and this module won't work with it. Xdo-configure: X @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/perl Makefile.PL LDDLFLAGS=-Bshareable LDFLAGS=-L/usr/lib X X.include END-of-p5-ReadLine-Gnu/Makefile exit >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 12:27:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA16426 for freebsd-ports-outgoing; Thu, 19 Feb 1998 12:27:44 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA16420; Thu, 19 Feb 1998 12:27:42 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id MAA00579; Thu, 19 Feb 1998 12:26:59 -0800 (PST) To: Apostolos Makridis cc: obrien@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: netscape-communicator-4.04.us In-reply-to: Your message of "Thu, 19 Feb 1998 14:05:16 EST." <34EC826C.41C67EA6@bbn.com> Date: Thu, 19 Feb 1998 12:26:58 -0800 Message-ID: <576.887920018@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Are the binaries available under 2.2.5 FreeBSD for Netscape v4.04 (US) ? Yes. Please see ftp://ftp.freebsd.org/pub/FreeBSD/incoming/netscape 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 19 12:49:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA20218 for freebsd-ports-outgoing; Thu, 19 Feb 1998 12:49:20 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from consys.com (consys.com [209.60.202.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA20212; Thu, 19 Feb 1998 12:49:18 -0800 (PST) (envelope-from rcarter@consys.com) Received: from dnstoo.consys.com (dnstoo.ConSys.COM [209.60.202.195]) by consys.com (8.8.6/8.8.6) with ESMTP id NAA21263; Thu, 19 Feb 1998 13:49:17 -0700 (MST) Received: from dnstoo.ConSys.COM (localhost [127.0.0.1]) by dnstoo.consys.com (8.8.8/8.8.6) with ESMTP id NAA12677; Thu, 19 Feb 1998 13:49:16 -0700 (MST) Message-Id: <199802192049.NAA12677@dnstoo.consys.com> X-Mailer: exmh version 2.0.1 12/23/97 To: "Jordan K. Hubbard" cc: Apostolos Makridis , obrien@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: netscape-communicator-4.04.us In-reply-to: Your message of "Thu, 19 Feb 1998 12:26:58 PST." <576.887920018@time.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 19 Feb 1998 13:49:16 -0700 From: "Russell L. Carter" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org }> Are the binaries available under 2.2.5 FreeBSD for Netscape v4.04 (US) ? } }Yes. Please see ftp://ftp.freebsd.org/pub/FreeBSD/incoming/netscape } The Makefile indicates linux & US. However, if for some odd reason you wanted US encrypted SSL with the native freebsd version, fortify works fine with Nav 4.04, at least. I see they are releasing strong S/MIME versions today for W32, with Unix (including FreeBSD) to follow. www.fortify.net. Russell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 13:40:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA28662 for freebsd-ports-outgoing; Thu, 19 Feb 1998 13:40:06 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA28644; Thu, 19 Feb 1998 13:40:03 -0800 (PST) (envelope-from gnats) Date: Thu, 19 Feb 1998 13:40:03 -0800 (PST) Message-Id: <199802192140.NAA28644@hub.freebsd.org> To: freebsd-ports Cc: From: "Scot W. Hetzel" Subject: Re: ports/4878: Apache w/FrontPage Module Port 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/4878; it has been noted by GNATS. From: "Scot W. Hetzel" To: Cc: Subject: Re: ports/4878: Apache w/FrontPage Module Port Date: Thu, 19 Feb 1998 15:36:41 -0600 Please get the latest port version from: http://www.westbend.net/~hetzels/apache-fp As it corrects the following problems with the old apache port + diff patch, when installing over an existing apache installation. Fpsrvadm.exe looks for the srm.conf and access.conf files in usr/local/etc/apache/conf. Since, that directory didn't exist, the fp_install.sh program would exit, from step 3, with the error: Can't open "/usr/local/etc/apache/conf/srm.conf": no such file or directory. ERROR: / Installation failed. Hit enter to continue Exiting due to an error! Please fix the error and try again. There are two ways to correct the problem: 1. Define the location of the srm.conf and access.conf files in the httpd.conf file. Add to httpd.conf: AccessConfig /usr/local/etc/apache/access.conf ResourceConfig /usr/local/etc/apache/srm.conf 2. Create directory /usr/local/etc/apache/conf, and make links to the access.conf and srm.conf . The port uses both of these methods, new installs have AccessConfig and ResourceConfig defined, while old installs get the directory and links created. Scot To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 15:08:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA09546 for freebsd-ports-outgoing; Thu, 19 Feb 1998 15:08:17 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA09516; Thu, 19 Feb 1998 15:08:08 -0800 (PST) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id SAA14050; Thu, 19 Feb 1998 18:04:01 -0500 (EST) Date: Thu, 19 Feb 1998 18:04:01 -0500 (EST) From: Chuck Robey X-Sender: chuckr@localhost To: "Russell L. Carter" cc: "Jordan K. Hubbard" , Apostolos Makridis , obrien@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: netscape-communicator-4.04.us In-Reply-To: <199802192049.NAA12677@dnstoo.consys.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, 19 Feb 1998, Russell L. Carter wrote: > }> Are the binaries available under 2.2.5 FreeBSD for Netscape v4.04 (US) ? > } > }Yes. Please see ftp://ftp.freebsd.org/pub/FreeBSD/incoming/netscape > } > > The Makefile indicates linux & US. However, if for some odd > reason you wanted US encrypted SSL with the native freebsd version, > fortify works fine with Nav 4.04, at least. I see they are > releasing strong S/MIME versions today for W32, with Unix > (including FreeBSD) to follow. www.fortify.net. Russell, I haven't paid enough attention to seciry with respect to Netscape; could you make any kind of comment about the security (as for as you know it) of Netscape when run with Fortify, the FreeBSD netscape? Actually, I wanted to buy Word Perfect for Linux, which I thought would probably run under FreeBSD, but the vendor won't sell it except thru Netscape (giving your credit card ID that way) and I've been too skeptical to do that. Does Fortify give any better guarantee of security? Not legal guarantee (I'm sure no lawyer), I mean, is it really safe? Thanks. > > Russell > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 15:39:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA18212 for freebsd-ports-outgoing; Thu, 19 Feb 1998 15:39:43 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from consys.com (consys.com [209.60.202.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA18145 for ; Thu, 19 Feb 1998 15:39:30 -0800 (PST) (envelope-from rcarter@consys.com) Received: from dnstoo.consys.com (dnstoo.ConSys.COM [209.60.202.195]) by consys.com (8.8.6/8.8.6) with ESMTP id QAA21646; Thu, 19 Feb 1998 16:39:22 -0700 (MST) Received: from dnstoo.ConSys.COM (localhost [127.0.0.1]) by dnstoo.consys.com (8.8.8/8.8.6) with ESMTP id QAA15453; Thu, 19 Feb 1998 16:39:21 -0700 (MST) Message-Id: <199802192339.QAA15453@dnstoo.consys.com> X-Mailer: exmh version 2.0.1 12/23/97 To: Chuck Robey cc: ports@FreeBSD.ORG Subject: Re: FreeBSD Port: netscape-communicator-4.04.us In-reply-to: Your message of "Thu, 19 Feb 1998 18:04:01 EST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 19 Feb 1998 16:39:21 -0700 From: "Russell L. Carter" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org }On Thu, 19 Feb 1998, Russell L. Carter wrote: } }> }> Are the binaries available under 2.2.5 FreeBSD for Netscape v4.04 (US) ? }> } }> }Yes. Please see ftp://ftp.freebsd.org/pub/FreeBSD/incoming/netscape }> } }> }> The Makefile indicates linux & US. However, if for some odd }> reason you wanted US encrypted SSL with the native freebsd version, }> fortify works fine with Nav 4.04, at least. I see they are }> releasing strong S/MIME versions today for W32, with Unix }> (including FreeBSD) to follow. www.fortify.net. } }Russell, I haven't paid enough attention to seciry with respect to }Netscape; could you make any kind of comment about the security (as for as }you know it) of Netscape when run with Fortify, the FreeBSD netscape? } }Actually, I wanted to buy Word Perfect for Linux, which I thought would }probably run under FreeBSD, but the vendor won't sell it except thru }Netscape (giving your credit card ID that way) and I've been too skeptical }to do that. Does Fortify give any better guarantee of security? Not }legal guarantee (I'm sure no lawyer), I mean, is it really safe? } Sure, I can comment, but realize that it's worth the amount of money you paid for it ;-) The full 128bit SSL appears to work correctly, when tested against Fortify's Apache/1.2.5 Ben-SSL/1.13, c2.org's Stronghold/2.1.1, and I used it to buy from NECX's Netscape-Enterprise/2.01. I've looked through the source code, and didn't see anything suspicious, so my best guess is that Fortify correctly enables 128bit SSL in the versions of Netscape they support. If you are paranoid, you might disable the shorter keylength options in the security applet. (Though I haven't checked all of the implications of doing that...) Now whether or not your data is managed securely after it gets transmitted to the server is another matter... Cheers, Russell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 15:40:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA18481 for freebsd-ports-outgoing; Thu, 19 Feb 1998 15:40:34 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gdi.uoregon.edu (gdi.uoregon.edu [128.223.170.30]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA18171; Thu, 19 Feb 1998 15:39:35 -0800 (PST) (envelope-from dwhite@gdi.uoregon.edu) Received: from localhost (dwhite@localhost) by gdi.uoregon.edu (8.8.7/8.8.8) with SMTP id PAA00763; Thu, 19 Feb 1998 15:39:29 -0800 (PST) (envelope-from dwhite@gdi.uoregon.edu) Date: Thu, 19 Feb 1998 15:39:29 -0800 (PST) From: Doug White Reply-To: Doug White To: Donald Burr cc: FreeBSD Ports , FreeBSD Questions Subject: Re: Have KDE ports been updated to Beta3? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 19 Feb 1998, Donald Burr wrote: > -----BEGIN PGP SIGNED MESSAGE----- > > I notice KDE Beta 3 is now out. I'd like to give it a try. Have the KDE > ports been updated to track Beta 3, and if so, have they been committed > into ports-current yet? Do they work? Please cc me via e-mail if > possible. Thanks! Most of the ports have been updated; kdenetwork is currently marked BROKEN until it's updated. Doug White | University of Oregon Internet: dwhite@resnet.uoregon.edu | Residence Networking Assistant http://gladstone.uoregon.edu/~dwhite | Computer Science Major To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 18:20:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA18649 for freebsd-ports-outgoing; Thu, 19 Feb 1998 18:20:34 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from relay.nuxi.com (nuxi.cs.ucdavis.edu [128.120.56.38]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA18619 for ; Thu, 19 Feb 1998 18:20:17 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: from dragon.nuxi.com (d60-090.leach.ucdavis.edu [169.237.60.90]) by relay.nuxi.com (8.8.7/8.6.12) with ESMTP id SAA09017; Thu, 19 Feb 1998 18:20:02 -0800 (PST) Received: (from obrien@localhost) by dragon.nuxi.com (8.8.8/8.7.3) id CAA18129; Fri, 20 Feb 1998 02:19:24 GMT Message-ID: <19980219181924.33862@nuxi.com> Date: Thu, 19 Feb 1998 18:19:24 -0800 From: "David O'Brien" To: Chuck Robey Cc: "Russell L. Carter" , "Jordan K. Hubbard" , Apostolos Makridis , ports@FreeBSD.ORG Subject: Re: FreeBSD Port: netscape-communicator-4.04.us Reply-To: obrien@NUXI.com References: <199802192049.NAA12677@dnstoo.consys.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.88 In-Reply-To: ; from Chuck Robey on Thu, Feb 19, 1998 at 06:04:01PM -0500 X-Warning: Mutt Bites! X-Operating-System: FreeBSD 2.2.5-STABLE Organization: The NUXI *BSD group X-PGP-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Keyid: 34F9F9D5 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Actually, I wanted to buy Word Perfect for Linux, which I thought would > probably run under FreeBSD, but the vendor won't sell it except thru > Netscape (giving your credit card ID that way) and I've been too skeptical > to do that. Does Fortify give any better guarantee of security? Depends on several things. Does the vendors server support encryption with the higher number of bits? If yes, then you have a *very* secure connection from your workstation to the web server. However what happens to your C.C. data once it hits the vendors machine? Do they dump it in a file in ASCII? Is that ASCII file sitting on their FTP server? (stupid example, but you get the idea). You should worry as much about their handling of your data besides just getting it there. -- -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 18:29:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA20063 for freebsd-ports-outgoing; Thu, 19 Feb 1998 18:29:15 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA20017 for ; Thu, 19 Feb 1998 18:29:00 -0800 (PST) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id VAA14574; Thu, 19 Feb 1998 21:26:31 -0500 (EST) Date: Thu, 19 Feb 1998 21:26:31 -0500 (EST) From: Chuck Robey X-Sender: chuckr@localhost To: "David O'Brien" cc: "Russell L. Carter" , "Jordan K. Hubbard" , Apostolos Makridis , ports@FreeBSD.ORG Subject: Re: FreeBSD Port: netscape-communicator-4.04.us In-Reply-To: <19980219181924.33862@nuxi.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 19 Feb 1998, David O'Brien wrote: > > Actually, I wanted to buy Word Perfect for Linux, which I thought would > > probably run under FreeBSD, but the vendor won't sell it except thru > > Netscape (giving your credit card ID that way) and I've been too skeptical > > to do that. Does Fortify give any better guarantee of security? > > Depends on several things. Does the vendors server support encryption > with the higher number of bits? If yes, then you have a *very* secure > connection from your workstation to the web server. However what > happens to your C.C. data once it hits the vendors machine? Do they dump > it in a file in ASCII? Is that ASCII file sitting on their FTP server? > (stupid example, but you get the idea). You should worry as much about > their handling of your data besides just getting it there. One step at a time, David. I know about the rest of the handling, and that I really doubt if their site is secure. I was asking only about the netscape encryption part, tho. Heck, I'd love to know of somewhere that I can hand cash to, and have them put _their_ credit card out there. I want that word processor ... they won't sell it any other way. Some kinda factoring company? I gotta find someone who's really net-innocent, and has a credit-card. I guess I was hunting for some justification to do it myself, but I don't think I will, now. > > -- > -- David (obrien@NUXI.com -or- obrien@FreeBSD.org) > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 18:32:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA20552 for freebsd-ports-outgoing; Thu, 19 Feb 1998 18:32:56 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA20520; Thu, 19 Feb 1998 18:32:43 -0800 (PST) (envelope-from steve) Date: Thu, 19 Feb 1998 18:32:43 -0800 (PST) From: Steve Price Message-Id: <199802200232.SAA20520@hub.freebsd.org> To: giffunip@asme.org, steve, freebsd-ports Subject: Re: ports/5774 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New graphics port: fbm-1.2 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Thu Feb 19 18:32:20 PST 1998 State-Changed-Why: New port committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 18:36:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA20858 for freebsd-ports-outgoing; Thu, 19 Feb 1998 18:36:32 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA20826; Thu, 19 Feb 1998 18:36:05 -0800 (PST) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id VAA14649; Thu, 19 Feb 1998 21:34:01 -0500 (EST) Date: Thu, 19 Feb 1998 21:34:01 -0500 (EST) From: Chuck Robey X-Sender: chuckr@localhost To: "Russell L. Carter" cc: "Jordan K. Hubbard" , Apostolos Makridis , obrien@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: FreeBSD Port: netscape-communicator-4.04.us In-Reply-To: <199802192049.NAA12677@dnstoo.consys.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, 19 Feb 1998, Russell L. Carter wrote: > }> Are the binaries available under 2.2.5 FreeBSD for Netscape v4.04 (US) ? > } > }Yes. Please see ftp://ftp.freebsd.org/pub/FreeBSD/incoming/netscape > } > > The Makefile indicates linux & US. However, if for some odd > reason you wanted US encrypted SSL with the native freebsd version, > fortify works fine with Nav 4.04, at least. I see they are > releasing strong S/MIME versions today for W32, with Unix > (including FreeBSD) to follow. www.fortify.net. I tried to install that Fortify stuff via their supplied Fortify.sh, and the file netscape-communicator-4.04.tgz from ftp.freebsd.org (as show above) and get this error: 1 = fortify "/usr/local/bin/netscape" e = enter some other full path name = quit Please make a selection [1,e,]: 1 "/usr/local/bin/netscape" is .... not recognisable. It is either not a copy of Netscape, or it is a version of Netscape that is not listed in the Index file. I checked, the /usr/local/bin/netscape is a link to /usr/local/bin/communicator-4, but when I try that, I get the same error. What did you do to get it installed? > > Russell > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 19:00:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA24192 for freebsd-ports-outgoing; Thu, 19 Feb 1998 19:00:11 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mirageport.com (mirageport.com [204.134.94.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA24047; Thu, 19 Feb 1998 18:59:46 -0800 (PST) (envelope-from cowan@mirageport.com) Received: from hercules.mirageport.com (hercules.mirageport.com [204.134.94.35]) by mirageport.com (8.8.8/8.8.8) with SMTP id UAA15013; Thu, 19 Feb 1998 20:01:01 -0700 (MST) Message-ID: <010201bd3dab$860ad240$235e86cc@hercules.mirageport.com> From: "Cowan Bowman" To: "Doug White" Cc: "FreeBSD Ports" , "FreeBSD Questions" Subject: Re: Have KDE ports been updated to Beta3? Date: Thu, 19 Feb 1998 19:59:12 -0700 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 4.72.2106.4 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >On Thu, 19 Feb 1998, Donald Burr wrote: > >> I notice KDE Beta 3 is now out. I'd like to give it a try. Have the KDE >> ports been updated to track Beta 3, and if so, have they been committed >> into ports-current yet? Do they work? Please cc me via e-mail if >> possible. Thanks! Doug White wrote: >Most of the ports have been updated; kdenetwork is currently marked BROKEN >until it's updated. What part of it is broken, I was able to get the source from kde.org to compile just fine on my 2.2.5 machine. Although I haven't tested everything about KDE yet to see anything broken. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 20:27:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA08407 for freebsd-ports-outgoing; Thu, 19 Feb 1998 20:27:21 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA08263; Thu, 19 Feb 1998 20:26:31 -0800 (PST) (envelope-from steve) Date: Thu, 19 Feb 1998 20:26:31 -0800 (PST) From: Steve Price Message-Id: <199802200426.UAA08263@hub.freebsd.org> To: nakai@technologist.com, steve, freebsd-ports Subject: Re: ports/5780 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fixed port: icewm State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Thu Feb 19 20:25:40 PST 1998 State-Changed-Why: Upgrade to port committed. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 20:47:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA12478 for freebsd-ports-outgoing; Thu, 19 Feb 1998 20:47:31 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA12452; Thu, 19 Feb 1998 20:47:24 -0800 (PST) (envelope-from steve) Date: Thu, 19 Feb 1998 20:47:24 -0800 (PST) From: Steve Price Message-Id: <199802200447.UAA12452@hub.freebsd.org> To: kchowksey@hss.hns.com, steve, freebsd-ports Subject: Re: ports/5790 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port (print/mpage) State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Thu Feb 19 20:43:08 PST 1998 State-Changed-Why: New port committed. Thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 21:34:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA18160 for freebsd-ports-outgoing; Thu, 19 Feb 1998 21:34:34 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA18117; Thu, 19 Feb 1998 21:34:22 -0800 (PST) (envelope-from steve) Date: Thu, 19 Feb 1998 21:34:22 -0800 (PST) From: Steve Price Message-Id: <199802200534.VAA18117@hub.freebsd.org> To: fliszt@gmx.net, steve, freebsd-ports Subject: Re: ports/5792 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: wrong DISTNAME value in /usr/ports/mail/majorcool/Makefile State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Thu Feb 19 21:33:49 PST 1998 State-Changed-Why: Update to version 1.2.0 as suggested. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 21:59:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA21216 for freebsd-ports-outgoing; Thu, 19 Feb 1998 21:59:03 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id VAA21210 for ; Thu, 19 Feb 1998 21:59:00 -0800 (PST) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0y5lTy-0001ZX-00; Thu, 19 Feb 1998 22:58:46 -0700 Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.8.8/8.8.3) with ESMTP id WAA13837 for ; Thu, 19 Feb 1998 22:58:59 -0700 (MST) Message-Id: <199802200558.WAA13837@harmony.village.org> To: ports@FreeBSD.ORG Subject: perl5 and gdbm Date: Thu, 19 Feb 1998 22:58:59 -0700 From: Warner Losh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org It would appear that perl 5 now requires the gdbm port (this may have been the case for a long time, I don't know). However, it isn't listed in the Makefile's dependency list. It caused my make install to fail on a machine that didn't have gdbm installed (for some reason, my build box did have it installed). Comments? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 22:01:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA21750 for freebsd-ports-outgoing; Thu, 19 Feb 1998 22:01:19 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA21728; Thu, 19 Feb 1998 22:01:07 -0800 (PST) (envelope-from steve) Date: Thu, 19 Feb 1998 22:01:07 -0800 (PST) From: Steve Price Message-Id: <199802200601.WAA21728@hub.freebsd.org> To: sec@42.org, steve, freebsd-ports Subject: Re: ports/5783 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: ladder State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Thu Feb 19 22:00:40 PST 1998 State-Changed-Why: New port committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Feb 19 22:20:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA23986 for freebsd-ports-outgoing; Thu, 19 Feb 1998 22:20:04 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA23966; Thu, 19 Feb 1998 22:20:02 -0800 (PST) (envelope-from gnats) Received: from rachel.glenatl.glenayre.com ([157.230.160.51]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id WAA23712 for ; Thu, 19 Feb 1998 22:15:16 -0800 (PST) (envelope-from jhicks@atlanta.glenayre.com) Received: from atlanta.glenayre.com by rachel.glenatl.glenayre.com (SMI-8.6/SMI-SVR4) id BAA23726; Fri, 20 Feb 1998 01:10:53 -0500 Message-Id: <34ED1E6C.1DD97F75@atlanta.glenayre.com> Date: Fri, 20 Feb 1998 01:10:52 -0500 From: Jerry Hicks Reply-To: jhicks@atlanta.glenayre.com To: FreeBSD-gnats-submit@FreeBSD.ORG Subject: ports/5798: Revised M68K cross development ports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5798 >Category: ports >Synopsis: revised new ports/devel submissions (M68K cross development) >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 19 22:20:01 PST 1998 >Last-Modified: >Originator: Jerry Hicks >Organization: Glenayre Electronics, Inc. >Release: FreeBSD 2.2.5-STABLE i386 >Environment: FreeBSD 2.2.5-STABLE >Description: There are two separate ports in the attached uuencoded tarball: crossm68k - gcc-2.7.2.3 configuration for cross compiling to Motorola 68K family processors. binutils-2.8.1 and newlib-1.8.0 are built along with gcc. m68kgdb - gdb-4.16 configuration for debugging binaries produced by (or compatible with) crossm68k These ports are derived from minimally modified versions of Pedro Giffuni's crosssco and scogdb ports. The prior submission had several problems, this submission incorporates the suggestions made by Pedro along with his latest updates to the scripts. The current versions have been moderately tested here and are currently being used for production application development. Thanks again Pedro! Cheers, Jerry Hicks jhicks@atlanta.glenayre.com --- MD5 (m68kdev.tar.gz) = ee6f149a591bb383977ac10669fb3527 begin 644 m68kdev.tar.gz M'XL(`+05[30``^P\^W/;-M+]U?PK4,>=Q`]2(O6T[=G#ECBUCL`HO=Q6*Q!&D&'N>C&"Q67R25(^;`,&+\,O%%:DUPWS`H\I%K MD[_UY8U_3/F(:5[0_[OR"FAWFM8.W"BGS7;GZN2R<;35-TW5T"J:H1G*S<_G M$CAA5D6FZB>=QOEUJ]EH'VU9[(XYRN5)N]-HW;:;'83U0K^6R\%_S1SWW8AK MIC?*^5$WY[)[Q^[FMGY7MK9VODP1W9Y?O?\JF#AK7F`37=N-0MOAP$I5TS6P M**W_SY@NX?7K-%@V#>Q5M7P,5Y2;DT[]QUFN>.1R.V1:Y)H:LR+!%O"80Y%A M.RGOM@NJ&M'0'FJ#2.VRP+%=S6(3"A!43M(L&(KH.1Z+$!Z*=9IUGX;F0'`^ M)?#XMZ!9H"T<@1P`4MVV.ZWFS9'JZT15+3`2,_2"\='.EU]:/[=;]:_(C@)Z M:%YUX*_1.MKZ/+#-(3^FH4/=D&I]A[ET'#!4AJ)(JB/D'6Y/FZVO.1Z8ROLV M\']Y\C.H?,RX`D.YK5]?G37/W[<:1X0@3.FSO9B>/YZ!N<[(]-P[H)XA-O?W83*' M@`JU/;L?!;.=4CY3=*QL`_W]_1D,T!XV9IK`DJ+X'@]5]A`&U`QKRM8;TR([ M;Z2>=M\2/@#"=AW,H2,4Y[E,#0/&<&YJ?+"K*&"[IA-9C/RMRRT-?9$V&OY= M^:M=X__$E:[_Z.[Y-XD"-X__#+U@O,1_SW%E]3^RGE[J:^(_4LKK6?V7]<)+ M_/<T\D5+TBX(A)"X=&@>%JMFL:I; M%E!6RJ6J956M+H.FK&HO+XDGH?UGXK,GZ&.-_R^5#2.C?U#_B_]_ENO5]SGP M_CD^@-UU76S;"24%)B,H#&07N"-2#A@Y(X&MA=Q(G;2GC]B;DA" MSW.X-I490-.!8INY%FPY1HC$B1>0?T2,8WZ!`PFQ/K/C=,>MB0U^!WJ0ADA< MQBP.S"2+TP$!5WU`*#0I%PT2,(=1SK"G9D@.R@80.F75`(APUX>,1;)R'7","I^]1!W&`W2%C/K%#$,[(!^'<#R!> M@I;\P+NS+22EY-X+AGC''BCBR*Y.>B$+2!"Y+E:%`VA-CK`&E?HN&0V!-]*- M;,<"@+%+8/N4E`J[1--PJYN;;-Q@?SJ`_=;1QS%H1]Q^2K>L$B@+G\A'#R00 M$,\7(O\$[15W16:'4`=&Y?8\`)5BD.W"1!!@\:O*:A1MCT"KA`8H#3$$CW29 M9!&+N'>6JK$\.3QL@E%+#G_]".OU(R#_M@.-.WG,>%'M,4M@R6`,C!31!/R` M<;2DV,((QU:\'O$<"_4K;9%#`VBAEL>X^SHD@RC`Z4&XSTR[-T;[H7T*MOG& MQ6R-XXP/"&=AB(*,.TT,*[&85"#`!'.]J#_8E:)]EZ@`VH-)RWP:X/R=F#JA MG$8'-!3J'-`[G.EW3863(;25*2N ML"N>S$4:O@:K"34%2F<@WC.8F>_:IS+I"`WY()%`)BEQTFP[+E'Y-KFG'#KR M'6I"+]TQ&=T1*V(H;J_+3938Q$AAEG8=-N**Z,(TY-^DUEOH93<%J?RCD MG&`A4ERO6)Z"ZQC(_>@/J%%UB^P`NOHQKQY^TL3_/?(O$E+;@T=()QDWS7;W2:?R%LT,5?98N;`(]OO70K]#RB/D4((D.\)3SK2) M&-",!<$#2O@7F!FN,P8K\5%KJ=0,[6.Y4OVD[6D2Z]X&_E`Y,,`4'>2*T]D% MS8"*[QG@=".T26@#P6"].-'"P(:!`M\(,BG.-VJ&$TTQ!6^3WFU7 MF=KJ"$Y`+UF0MK=+WKY5X+\<[A2]-.Z836ET4PY=VP:]24%B`XQ3)8$:I/+21\U MYGBA7)`&U.TS=.`FK*K.&%KYB(GDZ>E8_@2K3A.%^!J`_L?\O MEE[V_\]RS>M?_*J4/ET?Z_*_A7SV^7]1+^@O^__GN%15Q14CWG;E[$*UG'M0 M>["HX+,X+[#[6[_`PHA/[XTRT?.U?+Y6+!']\+"B[._O+Z==0'8HR8Z/(0H^ M*)!]_'=\K)!7Y-3#91QV/!!\/D!@$,(ZV.Y-7^]:5UWKLF1HM9AN3E2 MG;X;X<;),Y5]`?EOS\#^M=?2^=]]NC[6S'^]`(M#=OZ7C9?Y_QS7HOD/6VYM MD,[]$Q_D`W-7KY6,6F'%W!=T,R2`K]?RE73>%XT#O43VY0_.?9C]&!OV8+J? MM,1QFMOV3:,.8`!B[F463GY75++]PQ>_7^N;0:AKW@_\ZP]?OH2,>:(#(L]#8+3;KE]#"2)75\32L"%W(&R.:)\ENQ:-[.6FQ`@>,2/`!#(1 M74V]R$4\R,51OO]5B"(+)#]\`7U"WTX-ROBK49`"41TSD1_0;)/.]?7%:;-U M^^ZDW;B]:37`8Y-M-`<5R.?Z>#3^RNZES-IQ3LT/F!RJA;N=KB"WU_^;3];'&_Q^OZ%-,M)A.\_/*B`Z\?_TO/CR;WFU1D$=R(= M+#+PI-/XM6FOWV[!K\R?OF MQ2D`=][4Z[OHG,7`T'=T61".UPWM<'IH"ZF6$^'@RE45)W)OFJN&`LYZ4@4K<[BZ15.OD"A,P1T2>*XQ'+!9E?^5P2S6C.#W<>9+E M%$*1):'(4CS65TDZ"F92GQDB;/P?Y?8XP0Q3A849ETMK1*HF^N[[NW$Y!IL4J'O9PACD^ M'O+XP99WQX+`MBSH6Z0#&7E0]\2@0O@5IZ0.2,!PI0[M.^:,D9/;E)6)%E:K MH%#(JF"E_!-TE+\A%6!,:4#MZ\2D(%-.O"CT(Y&.M%@WZLO'7R(=*W)9T`&N MM#Z,V@WMT,:G,-#`/8MS::":`<-')TRT)Y\&\8$7.19*1SZ`DH]'J,,]I.6> MQ$(F1&H7\$+&0V9IB@HF"HHSIE5@@`X2!1@`8C0LR;.FM[/T MN]B)LO_$C8KXB9Q8EAT'6?&31+0(E($P1&FB:(R8&C5-0Z-"3(#R MQ'AB00*YVHP/MZ8.2:15EH*^(_FLKUNY]07A`I M<1-VT5SS2`\F:PB_,`#?AK@59B<-PS'<#$&9\/.[0K8V2&;B$R#D>9>+17V(68G]$HJ['5-+1/^ M3$,BS5$ZJ))]\1^%WVFT.VUPX38WM0?2$`L?#H/X#M._C_NQ+'3$(-/8#<4=@W]'EZ9\`M#0**;?$PB$SL0O:8ZD;X M2356@U@^XV/R4_Y3*&Q_(8Y)YJLHZO7KV-ZO1$6;EF&]-KMG"CY=)DS18/IRR1BTH>V(,)PYJ1.,,1 M=<2#-$]3X^95`/Z=.9]41F?BX] M?)XU%NE;0\R[(5E4JD>5(M$ M%`GY,5T+CI/[8PEO7'V(H7"'L!:>0[F%PH>3%M9,EX^5[\GT?")DTC#6LR'DAB"Y`+NU&_&Q?5J+E`6Z:(^_0KF1`GHOC"'KD/T7:D5JC4CGRIA M*>V,.HQ:J5S+&\O5@?Y/3]0Q6>EK20"(/(04B]UQ:KXA1]>/XFA&33Z=5U(G M8N2G"*1=PC6F9,3&7YY5TBSEO(I*^G(5E0X/RJ5OH"(R\-41Q'CVX[7U2HQ* M,O3T&EK!T#)EO9I54,#+^7Q^L3N[\NXP$-!A-VO4].(")>>,'7C^@H]L0MNHF([;Y^*P/;^%4^\B^"FV*5D9V=,(YL MQ1@Q:-_:.EH?J2^-RA-)8BM"M_*%/%&&N*UY>1L#,%"[_'#9F"XW/J35L=#) MCTP>2,3S9?')%VZ/(MC"0^`CCKXL,)3_5(%L_NO7EY>-J\X3]['N_`E!_[)I[C M>/>8:\=CN>(I14T2G5^]?\U)G=3C)-S6]!=)"F1?OC,B`9C[^_,0_+A,!MJ?P^M3[F=!IIF!.%8&X(XR@'AK.`_%3^YDH/&# M\5D@?G(G"Y(?W5D`E2V*$ZD)6>1.BA-<\0XM""\#X!D`CG<6`N.=!BFG[@+X3;C+'>XBK',ZFSF/,1-0>VNX:9!&E% M%PD*9^'GD:]:GQ^!M1(%94L MH)(%5+.`PPP@RX:1Y=S(:@U?\30TNWLGFVK^UZR<7%VW-U'Y=@VJ:^GH,B)#7(_E.Q-=A^?XZC,EK M$NL1Q8L2:]"2:=5JG)Q>-AZ)+`]7#1Z);7.O7"P_&MVQ,4WR:'3.U`N@R)'\D.NX+-S+G M.ZI2QQ_030A,Q_9]]GC3!Y)!M9#/;T)@5\N;X1]NAC^J5H<;X=O^1D+U-Y*H M[S_>N!%]O)'P.>P^-FJ?^]$F'F'DV?@:;OX3>AE57QIU>33S$OJ MQ9>7E]7A5YB7U.$WG)=433X2_7_MG5MOVS84QY_E3R&T0=$-L"=1E)CJR>F2 M#`629D@V]#&0+,D1=T%KY+;A0=(+$NAHK\.;[J4-A M,$A60[D<#BQ(P)!FVDAB^]4K`;T\^9HM_\TD7WCFIOK_[K(_'/3^I^_Y9OSO MP[+^[R+[0XOW/UDA_P-Q'#/^]V$B!X(<'+4$#-3U'$;C4YJP9$K>Q!&+:!+1 MR(L9\YU39@:(_X>I]M\=_?$@_J,3F/P_O5C>_]^?_MC8_S-&6<[_GL_,^W^] MF,25\!JP?%QDP^P!Y'8W7=L0A`!7\BT_U7^U2*"MVI'@T)Q""T3B]_P4@PI)??IFK_O^'6G^CI(8X>U M(/_47W!%#F=I4_2:C%=T_=!S)+$OT+Q66K+$=QKRQW4I.$]\&._QI3^N;M[N MM\&*/V]O$.RGU@#;XN3KV\MS[6^NK_FU]\WO]Y658%##X\(X8^Y9C[ MYNL&?934ZLOMH*C/(T?3!S\-XOQJ<;G2)*X:J[H#S'I;FCH+VUXP'28N\IP;]#ZX?P0@I,E/HG- MS'MK3B4-7:T-!`&>RN`YX]X*MK__TQG]XZ#G/\2EYOY?'Z;[OQOZ1YOG/X7[ MO\3D?^W'SO3@_D\"&3SC/3,,(Q@;/M3C^->[#<3I\Y[ZV,=M[/N8WOZ[H7\T MMW_J!H7G/X;_T8]!3M=SU>@GT5*E]L6LM0(@+EEM6S&=%!,W?@'RD5^`3)YV M&^@-/D!B5T1>X]0($LS"OF`.-=?V!#/!>+Y$M`;L-MG)S*V1/2AV-M.4/23Y MVCBIS1"+]BD^M@,!BDHow-To-Repeat: >Fix: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 01:45:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA19692 for freebsd-ports-outgoing; Fri, 20 Feb 1998 01:45:26 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from polaris.we.lc.ehu.es (polaris.we.lc.ehu.es [158.227.6.43]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id BAA19397; Fri, 20 Feb 1998 01:45:00 -0800 (PST) (envelope-from jose@we.lc.ehu.es) Received: from we.lc.ehu.es by polaris.we.lc.ehu.es (SMI-8.6/SMI-SVR4) id KAA13447; Fri, 20 Feb 1998 10:31:24 +0100 Message-ID: <34ED4D44.CFB5E1FA@we.lc.ehu.es> Date: Fri, 20 Feb 1998 10:30:44 +0100 From: "Jose M. Alcaide" Organization: Universidad del País Vasco - Dep. de Electricidad y Electrónica X-Mailer: Mozilla 4.04 [en] (X11; I; SunOS 5.5.1 sun4u) MIME-Version: 1.0 To: Donald Burr CC: FreeBSD Ports , FreeBSD Questions Subject: Re: Have KDE ports been updated to Beta3? References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Donald Burr wrote: > > -----BEGIN PGP SIGNED MESSAGE----- > > I notice KDE Beta 3 is now out. I'd like to give it a try. Have the KDE > ports been updated to track Beta 3, and if so, have they been committed > into ports-current yet? Do they work? Please cc me via e-mail if > possible. Thanks! Yes, the KDE ports are upgraded, but kdegames-3.1b has not been copied to some ftp.xx.freebsd.org mirrors yet. I fetch it from ftp.freebsd.org. Warning: I compiled KDE 3.1b without any problem, but it does not work correctly on my system (2.2.5, XF86 3.3.1). -- JM ----------------------------------------------------------------------- Jose M. Alcaide | mailto:jose@we.lc.ehu.es Universidad del Pais Vasco | http://www.we.lc.ehu.es/~jose Dpto. de Electricidad y Electronica | Facultad de Ciencias - Campus de Lejona | Tel.: +34-4-4647700 x2624 48940 Lejona (Vizcaya) - SPAIN | Fax: +34-4-4858139 ----------------------------------------------------------------------- "Go ahead... make my day." - H. Callahan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 01:57:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA21201 for freebsd-ports-outgoing; Fri, 20 Feb 1998 01:57:45 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from idiom.com (idiom.com [140.174.82.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA21178 for ; Fri, 20 Feb 1998 01:57:40 -0800 (PST) (envelope-from muir@idiom.com) Received: (from muir@localhost) by idiom.com (8.8.7/8.8.5) id BAA11271 for freebsd-ports@freebsd.org; Fri, 20 Feb 1998 01:57:38 -0800 (PST) Date: Fri, 20 Feb 1998 01:57:38 -0800 (PST) From: David Muir Sharnoff Message-Id: <199802200957.BAA11271@idiom.com> To: freebsd-ports@FreeBSD.ORG Subject: Ports that need updating. Conditional port compilation. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi. This is a three part message... First, I've noticed two ports that don't currently work: imap-gw and icon. Second, I wrote a program that will look at what ports you've got installed and tell you which ones are out of date. I enclose the program. It's meant for ports - not packages. Third, I have some makefile modifications that allow ports to be off by default. This makes it much easier to do a (cd /usr/ports; make install)... I enclose the patches. I would appreciate it if someone took over the make changes from me. I think they are quite useful. If there's a better way to do it, then that's fine. I would like to make it easier to build my own ports. More could be done. For example, if the current version is installed, then the make should immediately terminate... I am happy to continue working on the port checking program (ckports) for a while longer. In addition to being enclosed below, it can be found at: ftp://ftp.idiom.com/users/muir/CPAN/scripts/ckports -Dave The program and then the patches... # 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: # # ckports # echo x - ckports sed 's/^X//' >ckports << 'END-of-ckports' X#!/usr/local/bin/perl X X# VERSION 1.0 X Xmy $pkgdbdir = "/var/db/pkg"; Xmy $portsdir = "/usr/ports"; Xmy $enable = ".enable"; X Xuse File::Slurp; X#use strict; X Xmy $pdb = {}; X Xsub getversion X{ X my ($pkg, $dirname) = @_; X my $i; X my $one = 1; X my $prefix = ''; X my $p = $pkg; X if ($dirname) { X if ($p =~ s/^\Q$dirname\E-//) { X $one = 0; X $prefix = $dirname; X } X } X my @c = split('-', $p); X if (! $dirname) { X my $p = $pdb; X my @f = @c; X my $n1 = 0; X while (@f) { X last unless exists $p->{$f[0]}; X $p = $p->{$f[0]}; X shift(@f); X $n1++; X } X $one = $n1 if exists $p->{' '}; X#print "one = $one on $pkg\n" if $one > 1; X } X if ($one == $#c) { X $i = $one; X } else { X for ($i = $#c; $i >= $one; $i--) { X last if $c[$i-1] !~ /^\d/; X } X } X my $name = join('-', @c[0..($i-1)]); X $name = "$prefix-$name" if $prefix && $name; X $name = $prefix unless $name; X return () unless $name; X if ($prefix && $prefix =~ /-\d/) { X my @f = split('-', $dirname); X my $p = $pdb; X#print "adding prefix ... \n"; X while (@f) { X my $f = shift(@f); X#print "'$f' ... "; X $p->{$f} = {} X unless exists $p->{$f}; X $p = $p->{$f}; X } X $p->{' '} = $dirname; X#print "\n"; X } X my $version = join('-', @c[$i..$#c]); X# if ($name =~ /-$/) { X# printf "%20s %15s %s (%s)\n", $name, $version, $pkg, $dirname; X# } X return ($name, $version); X} X Xmy %name; Xmy %version; Xmy %requested; Xmy %byname; Xmy %count; Xmy %package; Xmy %cv; X Xfor my $category (read_dir($portsdir)) { X next unless -d "$portsdir/$category"; X next unless -e "$portsdir/$category/Makefile"; X X for my $port (read_dir("$portsdir/$category")) { X next unless -e "$portsdir/$category/$port/Makefile"; X open(MAKEFILE, "<$portsdir/$category/$port/Makefile") X or die "open $portsdir/$category/$port/Makefile: $!"; X my $distname; X my $pkgname; X my %vars; X $vars{'DISTNAME'} = $port; X while () { X next unless /^(\w+)=\s*(\S+)/; X $vars{$1} = $2; X } X close(MAKEFILE); X $pkgname = $vars{'PKGNAME'} || $vars{'DISTNAME'}; X 1 while ($pkgname =~ s/\$\{([^{}]+)\}/$vars{$1}/); X X my ($p, $v) = getversion($pkgname, $port); X X $name{$pkgname} = $p; X $version{$pkgname} = $v; X $byname{$p} = $v if $p; X $count{$p}++ if $p; X $package{$p} = $pkgname if $p; X $cv{$p} .= " $v"; X X if ($enable && -e "$portsdir/$category/$port/$enable") { X warn "can't figure out $category/$port" X unless $p; X $requested{$pkgname} = 1; X } X } X} X Xmy %done; Xfor my $i (read_dir($pkgdbdir)) { X my ($p, $v) = getversion($i); X X X if (exists $name{$i}) { X # installed matches available X printf "%20s: installed but not enabled\n", $i X if $enable && ! $requested{$i}; X X $done{$i} = 1; X#print "done{$i} = 1\n"; X } elsif ($count{$p} == 1) { X printf "%20s: version available: $byname{$p}\n", $i; X $done{$package{$p}} = 1; X#print "done{$package{$p}} = 1\n"; X } elsif ($count{$p} > 1) { X printf "%20s: current versions of %s:%s%s\n", $i, $p, $cv{$p}; X } else { X printf "%20s: cannot find matching port\n", $i; X } X} X Xmy $r = \%name; X$r = \%requested if $enable; X Xfor my $n (sort keys %$r) { X # we already know it's not installed in any form X next if exists $done{$n}; X printf "%20s: not installed\n", $n; X} X END-of-ckports exit Index: etc/make.conf =================================================================== RCS file: /usr/cvs/src/etc/make.conf,v retrieving revision 1.37.2.6 diff -c -r1.37.2.6 make.conf *** make.conf 1998/01/11 02:45:16 1.37.2.6 --- make.conf 1998/02/20 09:41:35 *************** *** 44,49 **** --- 44,56 ---- #COMPAT20= yes #COMPAT21= yes # + # If you wish to have ports only build if there is a file called + # ".enable" in their directory, then uncomment the following. This + # is useful if you want to recursively build ports, but not all of + # them. + # + # MUST_ENABLE_PORTS= true + # # # If you do not want additional documentation (some of which are # a few hundred KB's) for ports to be installed: Index: share/mk/bsd.port.mk =================================================================== RCS file: /usr/cvs/src/share/mk/bsd.port.mk,v retrieving revision 1.227.2.32 diff -c -r1.227.2.32 bsd.port.mk *** bsd.port.mk 1998/02/04 10:37:30 1.227.2.32 --- bsd.port.mk 1998/02/20 09:33:06 *************** *** 796,801 **** --- 796,805 ---- IGNORE= "uses X11, but ${X11BASE} not found" .elif defined(BROKEN) IGNORE= "is marked as broken: ${BROKEN}" + .elif (defined(MUST_ENABLE_PORTS) && (! defined(AUTO_ENABLE)) && (! exists(${.CURDIR}/.enable))) + IGNORE= "disabled by lack of ${.CURDIR}/.enable" + .elif exists(${.CURDIR}/.broken) + IGNORE= "disabled by ${.CURDIR}/.broken" .endif .if (defined(MANUAL_PACKAGE_BUILD) && defined(PACKAGE_BUILDING)) *************** *** 1500,1506 **** package-depends: @for dir in `${ECHO} ${LIB_DEPENDS} ${RUN_DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/^[^:]*://' -e 's/:.*//' | sort -u` `${ECHO} ${DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/:.*//' | sort -u`; do \ if [ -d $$dir ]; then \ ! (cd $$dir ; ${MAKE} package-name package-depends); \ else \ ${ECHO_MSG} "Warning: \"$$dir\" non-existent -- @pkgdep registration incomplete" >&2; \ fi; \ --- 1504,1510 ---- package-depends: @for dir in `${ECHO} ${LIB_DEPENDS} ${RUN_DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/^[^:]*://' -e 's/:.*//' | sort -u` `${ECHO} ${DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/:.*//' | sort -u`; do \ if [ -d $$dir ]; then \ ! (cd $$dir ; ${MAKE} AUTO_ENABLE=yes package-name package-depends); \ else \ ${ECHO_MSG} "Warning: \"$$dir\" non-existent -- @pkgdep registration incomplete" >&2; \ fi; \ *************** *** 1580,1586 **** if [ ! -d "$$dir" ]; then \ ${ECHO_MSG} ">> No directory for $$prog. Skipping.."; \ else \ ! (cd $$dir; ${MAKE} ${.MAKEFLAGS} $$target) ; \ ${ECHO_MSG} "===> Returning to build of ${PKGNAME}"; \ fi; \ fi; \ --- 1584,1590 ---- if [ ! -d "$$dir" ]; then \ ${ECHO_MSG} ">> No directory for $$prog. Skipping.."; \ else \ ! (cd $$dir; ${MAKE} AUTO_ENABLE=yes ${.MAKEFLAGS} $$target) ; \ ${ECHO_MSG} "===> Returning to build of ${PKGNAME}"; \ fi; \ fi; \ *************** *** 1614,1620 **** if [ ! -d "$$dir" ]; then \ ${ECHO_MSG} ">> No directory for $$lib. Skipping.."; \ else \ ! (cd $$dir; ${MAKE} ${.MAKEFLAGS} $$target) ; \ ${ECHO_MSG} "===> Returning to build of ${PKGNAME}"; \ fi; \ fi; \ --- 1618,1624 ---- if [ ! -d "$$dir" ]; then \ ${ECHO_MSG} ">> No directory for $$lib. Skipping.."; \ else \ ! (cd $$dir; ${MAKE} AUTO_ENABLE=yes ${.MAKEFLAGS} $$target) ; \ ${ECHO_MSG} "===> Returning to build of ${PKGNAME}"; \ fi; \ fi; \ *************** *** 1639,1645 **** if [ ! -d $$dir ]; then \ ${ECHO_MSG} ">> No directory for $$dir. Skipping.."; \ else \ ! (cd $$dir; ${MAKE} ${.MAKEFLAGS} $$target) ; \ fi \ done @${ECHO_MSG} "===> Returning to build of ${PKGNAME}" --- 1643,1649 ---- if [ ! -d $$dir ]; then \ ${ECHO_MSG} ">> No directory for $$dir. Skipping.."; \ else \ ! (cd $$dir; ${MAKE} AUTO_ENABLE=yes ${.MAKEFLAGS} $$target) ; \ fi \ done @${ECHO_MSG} "===> Returning to build of ${PKGNAME}" *************** *** 1656,1669 **** || defined(RUN_DEPENDS) @for dir in `${ECHO} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} ${RUN_DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/^[^:]*://' -e 's/:.*//' | sort -u`; do \ if [ -d $$dir ] ; then \ ! (cd $$dir; ${MAKE} NOCLEANDEPENDS=yes clean clean-depends); \ fi \ done .endif .if defined(DEPENDS) @for dir in `${ECHO} ${DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/:.*//' | sort -u`; do \ if [ -d $$dir ] ; then \ ! (cd $$dir; ${MAKE} NOCLEANDEPENDS=yes clean clean-depends); \ fi \ done .endif --- 1660,1673 ---- || defined(RUN_DEPENDS) @for dir in `${ECHO} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} ${RUN_DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/^[^:]*://' -e 's/:.*//' | sort -u`; do \ if [ -d $$dir ] ; then \ ! (cd $$dir; ${MAKE} AUTO_ENABLE=yes NOCLEANDEPENDS=yes clean clean-depends); \ fi \ done .endif .if defined(DEPENDS) @for dir in `${ECHO} ${DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/:.*//' | sort -u`; do \ if [ -d $$dir ] ; then \ ! (cd $$dir; ${MAKE} AUTO_ENABLE=yes NOCLEANDEPENDS=yes clean clean-depends); \ fi \ done .endif *************** *** 1672,1678 **** .if !target(depends-list) depends-list: @for dir in `${ECHO} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/^[^:]*://' -e 's/:.*//' | sort -u` `${ECHO} ${DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/:.*//' | sort -u`; do \ ! (cd $$dir; ${MAKE} package-name depends-list); \ done .endif --- 1676,1682 ---- .if !target(depends-list) depends-list: @for dir in `${ECHO} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/^[^:]*://' -e 's/:.*//' | sort -u` `${ECHO} ${DEPENDS} | ${TR} '\040' '\012' | ${SED} -e 's/:.*//' | sort -u`; do \ ! (cd $$dir; ${MAKE} AUTO_ENABLE=yes package-name depends-list); \ done .endif *************** *** 1704,1715 **** ${ECHO} -n "|${MAINTAINER}|${CATEGORIES}|"; \ case "A${FETCH_DEPENDS}B${BUILD_DEPENDS}C${LIB_DEPENDS}D${DEPENDS}E" in \ ABCDE) ;; \ ! *) cd ${.CURDIR} && ${ECHO} -n `make depends-list|sort -u`;; \ esac; \ ${ECHO} -n "|"; \ case "A${RUN_DEPENDS}B${LIB_DEPENDS}C${DEPENDS}D" in \ ABCD) ;; \ ! *) cd ${.CURDIR} && ${ECHO} -n `make package-depends|sort -u`;; \ esac; \ ${ECHO} "" .endif --- 1708,1719 ---- ${ECHO} -n "|${MAINTAINER}|${CATEGORIES}|"; \ case "A${FETCH_DEPENDS}B${BUILD_DEPENDS}C${LIB_DEPENDS}D${DEPENDS}E" in \ ABCDE) ;; \ ! *) cd ${.CURDIR} && ${ECHO} -n `make AUTO_ENABLE=yes depends-list|sort -u`;; \ esac; \ ${ECHO} -n "|"; \ case "A${RUN_DEPENDS}B${LIB_DEPENDS}C${DEPENDS}D" in \ ABCD) ;; \ ! *) cd ${.CURDIR} && ${ECHO} -n `make AUTO_ENABLE=yes package-depends|sort -u`;; \ esac; \ ${ECHO} "" .endif To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 05:20:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA16780 for freebsd-ports-outgoing; Fri, 20 Feb 1998 05:20:06 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA16758; Fri, 20 Feb 1998 05:20:03 -0800 (PST) (envelope-from gnats) Received: from newport-1-12.quick.net (josh@newport-1-12.quick.net [207.212.160.212]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA16069 for ; Fri, 20 Feb 1998 05:14:48 -0800 (PST) (envelope-from josh@newport-1-12.quick.net) Received: (from josh@localhost) by newport-1-12.quick.net (8.8.8/8.8.8) id FAA24427; Fri, 20 Feb 1998 05:14:40 -0800 (PST) (envelope-from josh) Message-Id: <199802201314.FAA24427@newport-1-12.quick.net> Date: Fri, 20 Feb 1998 05:14:40 -0800 (PST) From: josh@quick.net Reply-To: josh@quick.net To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5801: New port: net/dict Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5801 >Category: ports >Synopsis: New port: net/dict >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 20 05:20:01 PST 1998 >Last-Modified: >Originator: Josh Gilliam >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: The Dictionary Server Protocol (DICT) is a TCP transaction based query/response protocol that allows a client to access dictionary definitions from a set of natural language dictionary databases. RFC 2229 describes the DICT client/server protocol. dict(1) is a client which can access DICT servers from the command line. Sample output from `dict ferromagnetism` 1 definition found >From WordNet (r) 1.6 [wn]: ferromagnetism n : materials like iron (nickel or cobalt) become magnetized in a magnetic field and retain their magnetism when the field is removed Sample output from `dict FreeBSD` 1 definition found >From The Free On-line Dictionary of Computing (15Feb98) [foldoc]: FreeBSD A free {operating system} based on the {BSD 4.4-lite} release from {Computer Systems Research Group} at the {University of California at Berkeley}. FreeBSD requires an {ISA}, {EISA}, {VESA}, or {PCI} based computer with an {Intel 80386SX} to {Pentium} CPU (or compatible {AMD} or {Cyrix} CPU) with 4 megabytes of {RAM} and 60MB of disk space. Some of FreeBSD's features are: {preemptive multitasking} with dynamic priority adjustment to ensure smooth and fair sharing of the computer between applications and users. Multiuser access - {peripherals} such as printers and tape drives can be shared between all users. Complete {TCP/IP} networking including {SLIP}, {PPP}, {NFS} and {NIS}. {Memory protection}, {demand-paged virtual memory} with a merged {VM}/{buffer cache} design. FreeBSD was designed as a {32 bit operating system}. {X Window System} (X11R6) provides a {graphical user interface}. {Binary compatibility} with many programs built for {SCO}, {BSDI}, {NetBSD}, {386BSD}, and {Linux}. Hundreds of ready-to-run applications in the FreeBSD ports collection. FreeBSD is {source code compatible} with most popular commercial {Unix} systems and thus most applications require few, if any, changes to compile. {Shared libraries}. A full compliment of {C}, {C++}, {Fortran} and {Perl} development tools and many other languages. {Source code} for the entire system is available. Extensive on-line documentation. {Home (http://www.freebsd.org/welcome.html)} {(ftp://ftp.freebsd.org/pub/FreeBSD)} or try your nearest {mirror site} listed at the home site or buy the {CD-ROM} from {Walnut Creek}. (18 Dec 1995) >How-To-Repeat: >Fix: Port located at ftp://ftp.freebsd.org/pub/FreeBSD/incoming/dict.tar.gz MD5 (dict.tar.gz) = d0ec4895c3ef4717f65d4ff0e3de5577 >Audit-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 20 06:32:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA25985 for freebsd-ports-outgoing; Fri, 20 Feb 1998 06:32:04 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from fallout.campusview.indiana.edu (fallout.campusview.indiana.edu [149.159.1.1]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA25925 for ; Fri, 20 Feb 1998 06:32:00 -0800 (PST) (envelope-from jfieber@indiana.edu) Received: from localhost (jfieber@localhost) by fallout.campusview.indiana.edu (8.8.7/8.8.7) with SMTP id JAA02692; Fri, 20 Feb 1998 09:31:51 -0500 (EST) Date: Fri, 20 Feb 1998 09:31:51 -0500 (EST) From: John Fieber To: Chuck Robey cc: ports@FreeBSD.ORG Subject: Re: FreeBSD Port: netscape-communicator-4.04.us In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, 19 Feb 1998, Chuck Robey wrote: > "/usr/local/bin/netscape" is .... not recognisable. > It is either not a copy of Netscape, or it is a version > of Netscape that is not listed in the Index file. > > I checked, the /usr/local/bin/netscape is a link to > /usr/local/bin/communicator-4, but when I try that, I get the same error. Notice that communicator-4 is a shell script. Look inside for where the real binary is. :) -john To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 08:01:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA12801 for freebsd-ports-outgoing; Fri, 20 Feb 1998 08:01:50 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from consys.com (consys.com [209.60.202.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA12756 for ; Fri, 20 Feb 1998 08:01:42 -0800 (PST) (envelope-from rcarter@consys.com) Received: from dnstoo.consys.com (dnstoo.ConSys.COM [209.60.202.195]) by consys.com (8.8.6/8.8.6) with ESMTP id JAA23600; Fri, 20 Feb 1998 09:01:27 -0700 (MST) Received: from dnstoo.ConSys.COM (localhost [127.0.0.1]) by dnstoo.consys.com (8.8.8/8.8.6) with ESMTP id JAA29946; Fri, 20 Feb 1998 09:01:26 -0700 (MST) Message-Id: <199802201601.JAA29946@dnstoo.consys.com> X-Mailer: exmh version 2.0.1 12/23/97 To: Chuck Robey , ports@FreeBSD.ORG Subject: Re: FreeBSD Port: netscape-communicator-4.04.us In-reply-to: Your message of "Fri, 20 Feb 1998 09:31:51 EST." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 20 Feb 1998 09:01:26 -0700 From: "Russell L. Carter" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org }On Thu, 19 Feb 1998, Chuck Robey wrote: } }> "/usr/local/bin/netscape" is .... not recognisable. }> It is either not a copy of Netscape, or it is a version }> of Netscape that is not listed in the Index file. }> }> I checked, the /usr/local/bin/netscape is a link to }> /usr/local/bin/communicator-4, but when I try that, I get the same error. } }Notice that communicator-4 is a shell script. Look inside for }where the real binary is. :) } And you need the most recent communicator, dated Nov. 26th or so. Russell To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 08:17:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA15927 for freebsd-ports-outgoing; Fri, 20 Feb 1998 08:17:24 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from picnic.mat.net (picnic.mat.net [206.246.122.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA15916 for ; Fri, 20 Feb 1998 08:17:20 -0800 (PST) (envelope-from chuckr@glue.umd.edu) Received: from localhost (chuckr@localhost) by picnic.mat.net (8.8.8/8.8.5) with SMTP id LAA16457; Fri, 20 Feb 1998 11:15:19 -0500 (EST) Date: Fri, 20 Feb 1998 11:15:19 -0500 (EST) From: Chuck Robey X-Sender: chuckr@localhost To: "Russell L. Carter" cc: ports@FreeBSD.ORG Subject: Re: FreeBSD Port: netscape-communicator-4.04.us In-Reply-To: <199802201601.JAA29946@dnstoo.consys.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 20 Feb 1998, Russell L. Carter wrote: > }On Thu, 19 Feb 1998, Chuck Robey wrote: > } > }> "/usr/local/bin/netscape" is .... not recognisable. > }> It is either not a copy of Netscape, or it is a version > }> of Netscape that is not listed in the Index file. > }> > }> I checked, the /usr/local/bin/netscape is a link to > }> /usr/local/bin/communicator-4, but when I try that, I get the same error. > } > }Notice that communicator-4 is a shell script. Look inside for > }where the real binary is. :) > } > > And you need the most recent communicator, dated Nov. 26th or so. I'd just downloaded the one from ftp.freebsd.org, and I finally got it working with Fortify, thanks! > > Russell > > > > ----------------------------+----------------------------------------------- Chuck Robey | Interests include any kind of voice or data chuckr@glue.umd.edu | communications topic, C programming, and Unix. 213 Lakeside Drive Apt T-1 | Greenbelt, MD 20770 | I run Journey2 and picnic, both FreeBSD (301) 220-2114 | version 3.0 current -- and great FUN! ----------------------------+----------------------------------------------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 08:46:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA20201 for freebsd-ports-outgoing; Fri, 20 Feb 1998 08:46:20 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA20108; Fri, 20 Feb 1998 08:45:57 -0800 (PST) (envelope-from steve) Date: Fri, 20 Feb 1998 08:45:57 -0800 (PST) From: Steve Price Message-Id: <199802201645.IAA20108@hub.freebsd.org> To: jhicks@atlanta.glenayre.com, steve, freebsd-ports Subject: Re: ports/5680 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: crossm68k-1.4 (new port for MC68xxx cross development) State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Feb 20 08:40:37 PST 1998 State-Changed-Why: Superceded by ports/5798. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 09:49:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA02018 for freebsd-ports-outgoing; Fri, 20 Feb 1998 09:49:47 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA01955; Fri, 20 Feb 1998 09:49:32 -0800 (PST) (envelope-from steve) Date: Fri, 20 Feb 1998 09:49:32 -0800 (PST) From: Steve Price Message-Id: <199802201749.JAA01955@hub.freebsd.org> To: kiri@kiri.toba-cmt.ac.jp, steve, freebsd-ports Subject: Re: ports/5744 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: ja-gp-2.5 (japanese/gp). State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Feb 20 09:48:35 PST 1998 State-Changed-Why: Port updated as requested. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 10:45:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA11298 for freebsd-ports-outgoing; Fri, 20 Feb 1998 10:45:09 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA11251; Fri, 20 Feb 1998 10:44:58 -0800 (PST) (envelope-from steve) Date: Fri, 20 Feb 1998 10:44:58 -0800 (PST) From: Steve Price Message-Id: <199802201844.KAA11251@hub.freebsd.org> To: giffunip@asme.org, steve, freebsd-ports Subject: Re: ports/5725 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Problems with crossgdb ports State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Feb 20 10:44:08 PST 1998 State-Changed-Why: Updates committed as requested. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 11:21:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA16300 for freebsd-ports-outgoing; Fri, 20 Feb 1998 11:21:12 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA16295 for ; Fri, 20 Feb 1998 11:21:10 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id LAA25337 for ; Fri, 20 Feb 1998 11:20:31 -0800 (PST) To: ports@FreeBSD.ORG Subject: Breakage with kdelibs Date: Fri, 20 Feb 1998 11:20:31 -0800 Message-ID: <25331.888002431@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ===> Building for kdelibs-3.1b make all-recursive Making all in kdecore /usr/bin/moc kconfig.h -o kconfig.moc /usr/bin/moc: not found *** Error code 1 Stop. /usr/bin/moc?? :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 12:10:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA22624 for freebsd-ports-outgoing; Fri, 20 Feb 1998 12:10:03 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA22590; Fri, 20 Feb 1998 12:10:01 -0800 (PST) (envelope-from gnats) Received: from mph124.rh.psu.edu (mph@MPH124.rh.psu.edu [128.118.126.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA22054 for ; Fri, 20 Feb 1998 12:06:35 -0800 (PST) (envelope-from mph@mph124.rh.psu.edu) Received: (from mph@localhost) by mph124.rh.psu.edu (8.8.8/8.8.8) id PAA24190; Fri, 20 Feb 1998 15:06:20 -0500 (EST) (envelope-from mph) Message-Id: <199802202006.PAA24190@mph124.rh.psu.edu> Date: Fri, 20 Feb 1998 15:06:20 -0500 (EST) From: mph@pobox.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5804: New port: p5-ReadLine-Perl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5804 >Category: ports >Synopsis: New port: p5-ReadLine-Perl >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 20 12:10:00 PST 1998 >Last-Modified: >Originator: Matthew Hunt >Organization: >Release: FreeBSD 2.2.5-STABLE i386 >Environment: >Description: This is a Perl 5 module Term::ReadLine::Perl which provides input editing for Term::ReadLine. Unlike Term::ReadLine::Gnu (submitted in another PR), this module does not use GNU readline. It is entirely Perl code. >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-ReadLine-Perl # p5-ReadLine-Perl/files # p5-ReadLine-Perl/files/md5 # p5-ReadLine-Perl/pkg # p5-ReadLine-Perl/pkg/PLIST # p5-ReadLine-Perl/pkg/COMMENT # p5-ReadLine-Perl/pkg/DESCR # p5-ReadLine-Perl/Makefile # echo c - p5-ReadLine-Perl mkdir -p p5-ReadLine-Perl > /dev/null 2>&1 echo c - p5-ReadLine-Perl/files mkdir -p p5-ReadLine-Perl/files > /dev/null 2>&1 echo x - p5-ReadLine-Perl/files/md5 sed 's/^X//' >p5-ReadLine-Perl/files/md5 << 'END-of-p5-ReadLine-Perl/files/md5' XMD5 (Term-ReadLine-Perl-0.9902.tar.gz) = 053b424a0af8a3064c761b46531efc54 END-of-p5-ReadLine-Perl/files/md5 echo c - p5-ReadLine-Perl/pkg mkdir -p p5-ReadLine-Perl/pkg > /dev/null 2>&1 echo x - p5-ReadLine-Perl/pkg/PLIST sed 's/^X//' >p5-ReadLine-Perl/pkg/PLIST << 'END-of-p5-ReadLine-Perl/pkg/PLIST' Xlib/perl5/site_perl/Term/ReadLine/Perl.pm Xlib/perl5/site_perl/Term/ReadLine/readline.pm Xlib/perl5/site_perl/i386-freebsd/auto/Term/ReadLine/.packlist END-of-p5-ReadLine-Perl/pkg/PLIST echo x - p5-ReadLine-Perl/pkg/COMMENT sed 's/^X//' >p5-ReadLine-Perl/pkg/COMMENT << 'END-of-p5-ReadLine-Perl/pkg/COMMENT' XPerl 5 module that allows Term::ReadLine editing without GNU readline. END-of-p5-ReadLine-Perl/pkg/COMMENT echo x - p5-ReadLine-Perl/pkg/DESCR sed 's/^X//' >p5-ReadLine-Perl/pkg/DESCR << 'END-of-p5-ReadLine-Perl/pkg/DESCR' XThis module allows Term::ReadLine (which ships with Perl 5) to Xprovide satisfactory editing without using GNU readline. END-of-p5-ReadLine-Perl/pkg/DESCR echo x - p5-ReadLine-Perl/Makefile sed 's/^X//' >p5-ReadLine-Perl/Makefile << 'END-of-p5-ReadLine-Perl/Makefile' X# New ports collection makefile for: p5-ReadLine-Perl X# Version required: 0.9902 X# Date created: 20 February 1998 X# Whom: Matthew Hunt X# X# $Id$ X# X XDISTNAME= Term-ReadLine-Perl-0.9902 XPKGNAME= p5-ReadLine-Perl-0.9902 XCATEGORIES= devel perl5 XMASTER_SITES= ${MASTER_SITE_PERL_CPAN} XMASTER_SITE_SUBDIR= Term X XMAINTAINER= mph@pobox.com X XUSE_PERL5= YES X Xdo-configure: X @ cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PREFIX}/bin/perl Makefile.PL X X.include END-of-p5-ReadLine-Perl/Makefile exit >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 12:38:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA27203 for freebsd-ports-outgoing; Fri, 20 Feb 1998 12:38:16 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA27016; Fri, 20 Feb 1998 12:36:26 -0800 (PST) (envelope-from se@dialup124.zpr.uni-koeln.de) Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE (8.8.7/8.8.7) with ESMTP id VAA23574; Fri, 20 Feb 1998 21:36:16 +0100 (MET) Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.8.8/8.6.9) id WAA01260; Thu, 19 Feb 1998 22:25:11 +0100 (CET) X-Face: " Date: Thu, 19 Feb 1998 22:25:10 +0100 From: Stefan Esser To: Donald Burr , FreeBSD Ports , FreeBSD Questions Cc: Stefan Esser Subject: Re: Have KDE ports been updated to Beta3? References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: ; from Donald Burr on Thu, Feb 19, 1998 at 02:23:13AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 1998-02-19 02:23 -0800, Donald Burr wrote: > -----BEGIN PGP SIGNED MESSAGE----- > > I notice KDE Beta 3 is now out. I'd like to give it a try. Have the KDE > ports been updated to track Beta 3, and if so, have they been committed > into ports-current yet? Do they work? Please cc me via e-mail if > possible. Thanks! The following ports have been updated to KDE Beta3: - kdelibs - kdebase - kdeutils - kdegames Missing: - kdenetwork (mail and news reader) I'm working with those Beta3 programs, and they do work well for me, but I do not use kdm (login) and klock (screen saver). The latter needs to be SUID root to access the FreeBSD shadow password file, and I'd rather not do this at this time, since I'm afraid of just another invitation to exploit a SUID root program (TM) ... :) There have been a few enhancements which had been submitted by FreeBSD KDE users and which I had put into the Beta2 port, but I did not have time to check which of those patches still applies, because of a severe shortage of spare time. Regards, STefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 14:30:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA15660 for freebsd-ports-outgoing; Fri, 20 Feb 1998 14:30:12 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from gdi.uoregon.edu (gdi.uoregon.edu [128.223.170.30]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA15494; Fri, 20 Feb 1998 14:28:56 -0800 (PST) (envelope-from dwhite@gdi.uoregon.edu) Received: from localhost (dwhite@localhost) by gdi.uoregon.edu (8.8.7/8.8.8) with SMTP id OAA17755; Fri, 20 Feb 1998 14:28:46 -0800 (PST) (envelope-from dwhite@gdi.uoregon.edu) Date: Fri, 20 Feb 1998 14:28:46 -0800 (PST) From: Doug White Reply-To: Doug White To: Cowan Bowman cc: FreeBSD Ports , FreeBSD Questions Subject: Re: Have KDE ports been updated to Beta3? In-Reply-To: <010201bd3dab$860ad240$235e86cc@hercules.mirageport.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, 19 Feb 1998, Cowan Bowman wrote: > Doug White wrote: > >Most of the ports have been updated; kdenetwork is currently marked BROKEN > >until it's updated. > > > What part of it is broken, I was able to get the source from kde.org to > compile just fine on my 2.2.5 machine. Although I haven't tested everything > about KDE yet to see anything broken. Hm, you must have gotten the mimelib stuff along the way -- that's what I'm missing. Do you know if it came through kdesupport? The kdenetwork maintainer contacted me privately and I've been trying to sort the mimelib out, hopefully it'll come though in the port. The major problem I had with kde (actually configure) was that it didn't search /usr/local/include & /usr/local/lib. Doug White | University of Oregon Internet: dwhite@resnet.uoregon.edu | Residence Networking Assistant http://gladstone.uoregon.edu/~dwhite | Computer Science Major To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 15:14:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA24086 for freebsd-ports-outgoing; Fri, 20 Feb 1998 15:14:59 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA23984; Fri, 20 Feb 1998 15:14:36 -0800 (PST) (envelope-from se@dialup124.zpr.uni-koeln.de) Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE (8.8.7/8.8.7) with ESMTP id XAA25216; Fri, 20 Feb 1998 23:37:43 +0100 (MET) Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.8.8/8.6.9) id XAA00507; Fri, 20 Feb 1998 23:20:23 +0100 (CET) X-Face: " Date: Fri, 20 Feb 1998 23:20:23 +0100 From: Stefan Esser To: "Jordan K. Hubbard" , ports@FreeBSD.ORG Cc: Stefan Esser Subject: Re: Breakage with kdelibs References: <25331.888002431@time.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.89i In-Reply-To: <25331.888002431@time.cdrom.com>; from Jordan K. Hubbard on Fri, Feb 20, 1998 at 11:20:31AM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 1998-02-20 11:20 -0800, "Jordan K. Hubbard" wrote: > ===> Building for kdelibs-3.1b > make all-recursive > Making all in kdecore > /usr/bin/moc kconfig.h -o kconfig.moc > /usr/bin/moc: not found > *** Error code 1 > > Stop. > > /usr/bin/moc?? :-) No idea what's going on on your system ... The moc binary is built as part of the Qt library, and it should be installed in /usr/X11R6/bin. The configure script should fail if "moc" can't be located. Please check the output of configure (or send it to me). Regards, STefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 15:52:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA00510 for freebsd-ports-outgoing; Fri, 20 Feb 1998 15:52:51 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from Octopussy.MI.Uni-Koeln.DE (Octopussy.MI.Uni-Koeln.DE [134.95.166.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA00275; Fri, 20 Feb 1998 15:51:35 -0800 (PST) (envelope-from se@dialup124.zpr.uni-koeln.de) Received: from dialup124.zpr.Uni-Koeln.DE (dialup124.zpr.Uni-Koeln.DE [134.95.219.124]) by Octopussy.MI.Uni-Koeln.DE (8.8.7/8.8.7) with ESMTP id AAA26031; Sat, 21 Feb 1998 00:51:25 +0100 (MET) Received: (from se@localhost) by dialup124.zpr.Uni-Koeln.DE (8.8.8/8.6.9) id AAA09740; Sat, 21 Feb 1998 00:51:28 +0100 (CET) X-Face: " Date: Sat, 21 Feb 1998 00:51:28 +0100 From: Stefan Esser To: Doug White , Cowan Bowman Cc: FreeBSD Ports , FreeBSD Questions , Stefan Esser Subject: Re: Have KDE ports been updated to Beta3? References: <010201bd3dab$860ad240$235e86cc@hercules.mirageport.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Mailer: Mutt 0.89i In-Reply-To: ; from Doug White on Fri, Feb 20, 1998 at 02:28:46PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 1998-02-20 14:28 -0800, Doug White wrote: > On Thu, 19 Feb 1998, Cowan Bowman wrote: > > > Doug White wrote: > > >Most of the ports have been updated; kdenetwork is currently marked BROKEN > > >until it's updated. > > > > > > What part of it is broken, I was able to get the source from kde.org to > > compile just fine on my 2.2.5 machine. Although I haven't tested everything > > about KDE yet to see anything broken. > > Hm, you must have gotten the mimelib stuff along the way -- that's what > I'm missing. Do you know if it came through kdesupport? We've got MIMELIB, which is identical to MIMEPP, except for the names ... (I worked around this by creating two symbolic links from within the port's Makefile, see appended Makefile.) > The kdenetwork maintainer contacted me privately and I've been trying to > sort the mimelib out, hopefully it'll come though in the port. See the appended patches, which make kdenetwork compile, except for the private member problem in nntp.ccp ... > The major problem I had with kde (actually configure) was that it didn't > search /usr/local/include & /usr/local/lib. That's taken care of in the CONFIGURE_ARGS which I pass from the port Makefile. Same as in kdebase, for example. The following is a concatenation of all the patches for the kdenetwork port: *** ltconfig~ Fri Oct 10 01:06:48 1997 --- ltconfig Sat Nov 1 23:02:29 1997 *************** *** 982,986 **** freebsd2* | freebsd3*) version_type=sunos ! library_names_spec='$libname.so.$versuffix $libname.so' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH --- 982,986 ---- freebsd2* | freebsd3*) version_type=sunos ! library_names_spec='$libname.so.$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH *** configure~ Sun Oct 26 01:04:56 1997 --- configure Sat Nov 1 23:03:17 1997 *************** *** 2039,2043 **** do for ac_extension in a so sl; do ! if test -r $ac_dir/lib${x_direct_test_library}.$ac_extension; then ac_x_libraries=$ac_dir break 2 --- 2039,2043 ---- do for ac_extension in a so sl; do ! if test -r $ac_dir/lib${x_direct_test_library}.$ac_extension*; then ac_x_libraries=$ac_dir break 2 *** kmail/Makefile~ Sun Feb 15 19:16:08 1998 --- kmail/Makefile Sun Feb 15 19:16:12 1998 *************** *** 123,127 **** SUBDIRS = pics doc INCLUDES = $(all_includes) ! LDADD = $(all_libraries) -lkhtmlw -ljscript -lkdeui -lkdecore -lqt -lXext -lX11 -lgif $(LIBJPEG) -lmimelib $(LIBSOCKET) bin_PROGRAMS = kmail --- 123,127 ---- SUBDIRS = pics doc INCLUDES = $(all_includes) ! LDADD = $(all_libraries) -lkhtmlw -ljscript -lkdeui -lkdecore -lqt -lXext -lX11 -lgif $(LIBJPEG) -lmimepp $(LIBSOCKET) bin_PROGRAMS = kmail *** krn/Makefile~ Sun Feb 15 19:17:51 1998 --- krn/Makefile Sun Feb 15 19:04:11 1998 *************** *** 123,127 **** INCLUDES = $(all_includes) ! LDADD = $(LIBCOMPAT) $(LIBSOCKET) $(all_libraries) -lkfm -lkhtmlw -ljscript -lkdeui -lkdecore $(LIBJPEG) -lgif -lqt -lXext -lX11 -lmimepp -luulib -lgdbm $(KDE_RPATH) ICONDIR = $(kde_icondir) --- 123,127 ---- INCLUDES = $(all_includes) ! LDADD = $(LIBCOMPAT) $(LIBSOCKET) $(all_libraries) -lkfm -lkhtmlw -ljscript -lkdeui -lkdecore $(LIBJPEG) -lgif -lqt -lXext -lX11 -lmimelib -luulib -lgdbm $(KDE_RPATH) ICONDIR = $(kde_icondir) And here comes the Makefile: # --- cut here ---- 8< ---- cut here ---- 8< ---- cut here ---- 8< --- # New ports collection makefile for: kdenetwork # Version required: Beta3 # Date created: 28 October 1997 # Whom: Stefan Eßer # # $Id: Makefile,v 1.5 1998/02/18 08:43:21 asami Exp $ # DISTNAME= kdenetwork-Beta3-1 PKGNAME= kdenetwork-3.1b CATEGORIES= net kde MASTER_SITES= ftp://ftp.net.lut.ac.uk/kde/stable/Beta3/distribution/tgz/source/ \ ftp://ftp.uni-erlangen.de/pub/Linux/MIRROR.KDE/stable/Beta3/distribution/tgz/source/ \ ftp://ftp.caldera.com/pub/mirrors/kde/stable/Beta3/distribution/tgz/source/ EXTRACT_SUFX= .src.tar.gz MAINTAINER= se@freebsd.org BUILD_DEPENDS= moc:${PORTSDIR}/x11/qt \ ${PREFIX}/lib/libmimepp.a:${PORTSDIR}/converters/mimepp \ ${PREFIX}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm LIB_DEPENDS= qt\\.1\\.3[1-9]:${PORTSDIR}/x11/qt \ gif\\.[23]\\.:${PORTSDIR}/graphics/giflib \ jpeg\\.[67]\\.:${PORTSDIR}/graphics/jpeg \ uu\\.1\\.:${PORTSDIR}/converters/uulib \ kdecore\\.0\\.9[0-9]:${PORTSDIR}/x11/kdelibs \ kdeui\\.0\\.9[1-9]:${PORTSDIR}/x11/kdelibs \ jscript\\.0\\.9[0-9]:${PORTSDIR}/x11/kdelibs \ khtmlw\\.0\\.9[1-9]:${PORTSDIR}/x11/kdelibs \ kfm\\.0\\.9[0-9]:${PORTSDIR}/x11/kdelibs \ mediatool\\.0\\.[6-9]:${PORTSDIR}/x11/kdelibs BROKEN= needs to be updated to beta3 HAS_CONFIGURE= yes CONFIGURE_ARGS= "--prefix=$(PREFIX)" \ "--with-extra-includes=$(PREFIX)/include/giflib" CONFIGURE_ARGS+="--with-install-root=/async/tmp/kde" CONFIGURE_ENV= CXXFLAGS="$(CFLAGS)" \ INSTALL_SCRIPT="install -c -m 555" WRKSRC= ${WRKDIR}/kdenetwork pre-configure: ln -s $(PREFIX)/include/mimepp $(WRKSRC)/mimelib ln -s $(PREFIX)/include/uu.h $(WRKSRC)/krn/uudeview.h .include # --- cut here ---- 8< ---- cut here ---- 8< ---- cut here ---- 8< --- Regards, STefan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 16:25:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA08378 for freebsd-ports-outgoing; Fri, 20 Feb 1998 16:25:01 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA08278; Fri, 20 Feb 1998 16:24:36 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id QAA22256; Fri, 20 Feb 1998 16:23:59 -0800 (PST) To: Stefan Esser cc: ports@FreeBSD.ORG Subject: Re: Breakage with kdelibs In-reply-to: Your message of "Fri, 20 Feb 1998 23:20:23 +0100." <19980220232023.53896@mi.uni-koeln.de> Date: Fri, 20 Feb 1998 16:23:59 -0800 Message-ID: <22252.888020639@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > The configure script should fail if "moc" can't > be located. Please check the output of configure > (or send it to me). Here ya go - found it! ===> Configuring for kdelibs-3.1b creating cache ./config.cache checking host system type... i386-unknown-freebsd3.0 ... checking for QT... libraries /usr/X11R6/lib, headers /usr/X11R6/include/X11/qt checking if Qt compiles without flags... yes checking for moc... test: syntax error /usr/bin/moc checking for KDE... will be installed in /usr/local ... root@test-> ls -l /usr/X11R6/bin/moc -r-xr-xr-x 1 bin bin 122880 Feb 21 00:14 /usr/X11R6/bin/moc This occurs whether or not /usr/X11R6/bin is in the user's path. 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 20 16:50:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13592 for freebsd-ports-outgoing; Fri, 20 Feb 1998 16:50:35 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from peloton.physics.montana.edu (peloton.physics.montana.edu [153.90.192.177]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA13565 for ; Fri, 20 Feb 1998 16:50:21 -0800 (PST) (envelope-from brett@peloton.physics.montana.edu) Received: from localhost (brett@localhost) by peloton.physics.montana.edu (8.8.8/8.8.7) with SMTP id RAA14638 for ; Fri, 20 Feb 1998 17:50:02 -0700 (MST) (envelope-from brett@peloton.physics.montana.edu) Date: Fri, 20 Feb 1998 17:50:02 -0700 (MST) From: Brett Taylor Reply-To: Brett Taylor To: ports@FreeBSD.ORG Subject: problems w/ porting Maelstrom 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'm busy trying to port Maelstrom, originally Mac shareware (similar, but better than asteroids), that has now been ported to Linux. I'm essentially done BUT I am having trouble w/ the audio portion of the compilation. I can comment out the offending line and get a playable game but w/ no sound. There are 3 options for compiling the sound portion of the program which is set in a configuration file. The options are: - DMA audio support (more on this later) - NAS audio support (this requires linux specific include audio files ?) - default audio support If I compile w/ DMA audio, I get a "can't open sound card: No such file or directory" error and the program stops (this compiles - the error occurs during program run). The code (from mixer-dma.cpp) it is hanging on is : /* Open the sound device (don't hang) */ if ( (dsp_fd=open(dsp_device, (O_RDWR|O_NONBLOCK), 0)) < 0 ) { if ( complain ) perror("Mixer: Can't open sound card"); return(-1); } I assume this is because Linux labels their devices differently than us?!? The code which seems to grab for the audio device is (from the same file): /* Set the sound card device */ /* AUDIODEV is a Solaris-2.4 recommended environment variable */ if ( (dsp_device=getenv("AUDIODEV")) == NULL ) { if ( device ) dsp_device = device; else dsp_device = _PATH_DEV_DSP; } I (stupidly) wasn't paying attention to all of the talk about Luigi's sound code moving into stable so maybe that would help... If you think so let me know where to get Luigi's stuff. On the other hand if I try to compile w/ "standard" sound I get an error in the compile during the compile of mixer-std.cpp: g++ -O6 -fomit-frame-pointer -Ifastlogic -I/usr/X11R6/include -DASYNCHRONOUS_IO -DUSE_POSIX_SIGNALS -DAUDIO_16BIT -DFORCE_XSHM -DSYSTEM=\"FreeBSD\" -DLIBDIR=\"/usr/local/lib/Maelstrom\" -c mixer.cpp mixer.cpp: In method `int Mixer::DSPopen(int)': mixer.cpp:288: `O_SYNC' undeclared (first use this function) mixer.cpp:288: (Each undeclared identifier is reported only once mixer.cpp:288: for each function it appears in.) The associated code : /* This is necessary so that the sound server stays in sync */ long flags; flags = fcntl(dsp_fd, F_GETFL, 0); flags |= O_SYNC; (void) fcntl(dsp_fd, F_SETFL, flags); If I comment out the O_SYNC line the compile will finish but you will have no sound when playing. I unfortunately don't remember enough c/c++ to be able to guess what O_SYNC might be. This is the only place it's found in any of the source. Any idea what I should set this to be? I'd appreciate any help - like I need another time waster. :-) ********************************************************* Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ When you wake up in the morning With the blues in your fingertips Get out that ol' guitar and play It's the only way to scratch that itch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 17:25:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA21680 for freebsd-ports-outgoing; Fri, 20 Feb 1998 17:25:33 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from misery.sdf.com (misery.sdf.com [204.244.213.32]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA21594; Fri, 20 Feb 1998 17:25:17 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0y63Pz-0007Ed-00; Fri, 20 Feb 1998 17:07:51 -0800 Date: Fri, 20 Feb 1998 17:07:50 -0800 (PST) From: Tom To: "Jordan K. Hubbard" cc: Stefan Esser , ports@FreeBSD.ORG Subject: Re: Breakage with kdelibs In-Reply-To: <22252.888020639@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 20 Feb 1998, Jordan K. Hubbard wrote: > > The configure script should fail if "moc" can't > > be located. Please check the output of configure > > (or send it to me). > > Here ya go - found it! > > ===> Configuring for kdelibs-3.1b > creating cache ./config.cache > checking host system type... i386-unknown-freebsd3.0 > ... > checking for QT... libraries /usr/X11R6/lib, headers /usr/X11R6/include/X11/qt > checking if Qt compiles without flags... yes > checking for moc... test: syntax error > /usr/bin/moc > checking for KDE... will be installed in /usr/local > ... > > root@test-> ls -l /usr/X11R6/bin/moc > -r-xr-xr-x 1 bin bin 122880 Feb 21 00:14 /usr/X11R6/bin/moc > > This occurs whether or not /usr/X11R6/bin is in the user's path. This old problem? The "test: syntax error" is caused by a /bin/sh bug. I submitted a pr on this, which includes a sample script, and the output from our /bin/sh and bash. I was hoping that someone would fix this /bin/sh problem soon... > Jordan > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 17:26:41 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22007 for freebsd-ports-outgoing; Fri, 20 Feb 1998 17:26:41 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from misery.sdf.com (misery.sdf.com [204.244.213.32]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA21958; Fri, 20 Feb 1998 17:26:21 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0y63R1-0007Ek-00; Fri, 20 Feb 1998 17:08:55 -0800 Date: Fri, 20 Feb 1998 17:08:55 -0800 (PST) From: Tom To: Stefan Esser cc: "Jordan K. Hubbard" , ports@FreeBSD.ORG Subject: Re: Breakage with kdelibs In-Reply-To: <19980220232023.53896@mi.uni-koeln.de> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 20 Feb 1998, Stefan Esser wrote: > On 1998-02-20 11:20 -0800, "Jordan K. Hubbard" wrote: > > ===> Building for kdelibs-3.1b > > make all-recursive > > Making all in kdecore > > /usr/bin/moc kconfig.h -o kconfig.moc > > /usr/bin/moc: not found > > *** Error code 1 > > > > Stop. > > > > /usr/bin/moc?? :-) > > No idea what's going on on your system ... > > The moc binary is built as part of the Qt library, > and it should be installed in /usr/X11R6/bin. > > The configure script should fail if "moc" can't > be located. Please check the output of configure > (or send it to me). > > Regards, STefan > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-ports" in the body of the message > > Expect that /bin/sh is broken, and sometimes configure can't find things. If your /bin/sh is bash, everything will work fine, BTW. Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 18:10:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA00745 for freebsd-ports-outgoing; Fri, 20 Feb 1998 18:10:03 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA00736; Fri, 20 Feb 1998 18:10:01 -0800 (PST) (envelope-from gnats) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA00536; Fri, 20 Feb 1998 18:09:01 -0800 (PST) (envelope-from nobody) Message-Id: <199802210209.SAA00536@hub.freebsd.org> Date: Fri, 20 Feb 1998 18:09:01 -0800 (PST) From: giffunip@asme.org To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/5805: New astro port: saoimage Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5805 >Category: ports >Synopsis: New astro port: saoimage >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 20 18:10:00 PST 1998 >Last-Modified: >Originator: Pedro F. Giffuni >Organization: U. Nacional de Colombia >Release: 2.2.5-R >Environment: >Description: A utility to observe FITS images: these are generated by radiotelescopes and are available in selected websites. Can be configured as a helper application for Netscape. >How-To-Repeat: uuencoded port follows. >Fix: begin 644 saoimage.tar.gz M'XL(`.DU[C0``^U<;7/B.!*>K_`K>B>Y.I@%8YNWA-UL+4G(#+5)R`&9G:N[ MJYQL"W!A;)\EA[!7^]^O6[9YF9#)W&V2V=E#-0$LM5K2T]U22RV/8($[8V-> M>?5\"6IZLUZ'5P!&LVZL?V=)!VC4FM5:%0EK6&Q4#>,5U)^Q3\L4"\DB@%J-4>E+]A&HU4_F:UT6AB3E6O5U^! M_@Q]N9?^S^6_!Y=\#F$020%VX'GMB\Z1ZD>9;TLJQZ=M(>=M[U^MS,XRC$AHR!_T1X,._V;07=(>2,9MBH5 M>\3*^$N;L.B618[&G;@2QE9E+.S*H-U+3"./5;N70_SK](^VC`&+?^J<=<\[ M1[D,MWS[_/QFV.Z_[0R/#TWSW\& MAV2Y_OKCC/G4WN7YT5(JFI?/AQ$OATS:DU8^MU\XN2K"?N'G_D^#_DFQLFQ# MQ/ZV[(VF%28#5@R$+*<] MQ;H(N8N"*ESUD>Y#L8+CJ"SU**^YONW%#H?O+>%HI'[:;/I#_DM;P_]?6L[_ MX73\7#[`YZ__1E-'0EP1].9N_7^1M"'_T\[@I/_T;3RR_N-B;R3RKU8-O4K^ MG]FLZ;OU_R52MLA!(8P"/XA]FSLP*+?+>EGE%\%Q1>BQA0"UBOK!S+69!ZI0 MX,H$$M?D#X:1G[N^$\R!^[(\+QCO7 M$U@Z(2<#.1`9D\0L/YBYLQ"_O%9'XBE9\@';L\G\\W_`01C.2<17RYK&D3.<.U..4[X5[XV]EI MN-KCP@K!"#ONDH^&BZ;Z#A>1.YY(-RU%E;UT'$7B-VN.* MUZK_Q)#?43,"L)H["ST729!/Q'RY0$"[2N&3`=K8;XOC`)F#FAZA^^LM2DD] M(G*89`HNI`F9$,A(3B+4J0FPO,]F^!RZ(5K/M>_>%:D>D;N>%=Q!X?W%H`BC M*)A!M]\^RPP))!-3H4%F>?ET%`@&>"S"1@7/W'`$(@@3I`B"7P*T/G]%449"Q1'Q,#8B0V^X(Y46-:'"- M(LNC^?"(V:F`$/TQ]S'#\Q!_'F$_:-29IL`LB`4O@86H3_G""E"=\\Q##C[R MO.4)!Y0CFO_2$E`&P\0*4Y2YF,H`K25Q"D4I0='/A)".()EAJ!!;D[1+X7Z< M1RRX1YD9&=;Q<4P\HDPL5>,EZ'#0(QYQG.(2Q@D2#!1V8+%(R[?3!ZD,=ARQ M<)(VFVF*I:0O(0[)[FS/M0E4")*)<(V5&J(=1]B@A-MTVX0"78Z:Y@9OKF;6 MY11QZS+L5.`O"%;`G8G2GSRQOK$ZB\>1UDSX'L#9)2G!0Q:8_(KMU5MK.-?]CI@W_[Z1W<=&Y'#YU&X_X?P!- M,_7_FGJSJMW\E\$\MD>::EZ,-N0OA#I`W[OSKO#I[<^C_# M_K$P._^MU\S=_N\%T\:QW(SY%?SS5EL03QO_LK/T/W!:VK_:#CW/">!GG_^9 M>MTTE?W7]-WYWXNDC^0_&K3RO_CZ*'S[,"_!?W M/\RFWE#^7[6YF_]?(MV3O_HN,_:$;7QZ_C?,>MU<^O]ZE>)_M5J]OIO_7R*] M>?-F=0DAO:B@!9$[SIU%KKK"8>I@'+;,@U:MFESG*)?+]ZI\1%VOM>K-A/K- M9J)G,$IU4`\`>_EO8`\VKBC0\4)VQIG;@P%FS8-H*K*802SHP!6S>P.H:6_4 M(>Y%=P@?/-=2'/$/A@&DMQCP*?7\N(G-%`U@1%3\*QA&; M`1/@[)V7G[[0#[:T[UAL1*+J.(%-O/4 M?9"$Z**]A6BY%44:[$C_A$BV,D(P*M0@K#JLZ+):17VY2M8990^Y?*-J([ M8A0K01P8B(60?(9`\D@%$[%X%"01(F8)%3&&'N9'6,A\%0,LJ:`CL4)K\AWF M!3[B'?)H&:Z-_8GK.\C1T1(HNPG(1U`^/>L.!_C5ZY[A9S+<9.A[<*&H6B2+ M"85KT=00F0B-:!D44\%635$#UA]<7T(YG7=P&*&*(`(%`4O0[70Z,/("[!5: M>ABXOD05L.(TVD9SV#(ZEO$['QPC/VLA.8@Y"]4LHCI<>-_^H*J==DZR.:2X MZL9?!^^QGH@M(5T92Y[$!L=<.BIJ)=Q?>*&HZJ.B1IX[MP;P%3 M/YC[2WY7@Y-^]VJ(+"?8.Q58AB"68:R4G,%5(.3`CMQ00ABIV"`4N"=PY(&J M0152);Y8(:_`6O$^_XM+64 M0\J`F';5+(/*YL_IE&Q"P?DT1(E3<7LX[%P.N[W+%O20Y&<5):2YGD="TS3L MWY)5UKESI6`N2@SU6X**J2<1WMK.Q9K>S;E-M%M]]MGR(S?B8L7A**]VV-!XEUE)73I[R+(.W&`DF$X@2CF.YL8/4/Y]WC5(KT MD\;OT94M%&KV?+X!+3:5D'P&K-CZ6;.9L<6?^-E5G]?-)I6>KU`_5H9F9TAW M+D]1?R"]%]VF1M`:KS`;6X1!9WA]I<'19R;%L2NS*PZ$W#I*A!!W$+[EK2?E M?R47C>C"5@I0NW_R3OD[N!7!G/,N]H0>/=+.LD5V]M-E[Y2R*JBEE1G:.>T\[X(DD4)F*GHWU&72+#I/$@"KM#F5)MLR:=+`-H$ M:P^&_>N3(=:=)*$#(:/8EE@G?;;BT8A'JV=U-6K]T9=1@*S@[]3?5780.6M4 M<236:Z47([/'Y&J6ZL[/O?Y/`[5-46.B%R"2'A;76B3W9JV+N'KRR%]C9POD MI;:!NH%P+GVL_PG.Q$X>`G5+Z1\?VFV:6],/2C5CI;DYW#J+"EWFLX([#1]` M9:A;?1LY(?.SY[^O*EK2WZ!2V&SDJ%M]6VJFMQ#7JB8(X6\4+=U'1.=2"W(M M>HF&("G>-P^D$(N90OX;Y/M`.7)4P!)/X:%DUYFF^4H9DOR'4,\PIAK<1PV) MO,WN(1:TVT]N2V:J73-TQ'NEVE\=WOR_]$GO]O30^?]3O@?Z MV/N?58KYJO@OYE,LP*C5=O=_7B;1#$S*B_8_U>Q[)_^ZWJHV6\;!ZN1_1?PQ MW4&KWOC$F7^]63(:R^V/2N0:^;0U%]]E639NZN`-V1AM^;]#8WX#?W/_T5(G M`'30JHX#+$[.&+/)3^,.O*$#S7\K%EZ`!;AOYM-"$6M3=;D(N7+M'&Y[C(Y* MT/W]7BR$NO.@37Z@^M^`JNZ."FGMD5."`G$K)CTLP?G-@-[-_!YT**:M`=V( MCX*H\%I5>EW,QE&X#5RG.%);^5%!2`?)2O#ZA/E_EDD#\"='G4J(UZ44`ZRL MP@T*J&7(X3F`^A;VW)%/\^[-3>JRWMS\1OCV<#_OCGX/('YID_JJTD/SO_V$ M;3QV_Z>A9^__->O-6A+_-7?QWQ=)&_'?+;._;K9JS?MQWPTJHV7H+;/VB;D? M77S#J"9SOYKC5,9RCF-AX'G!S:QQ,&VM[[;2_,;!P8%)&ZQOLPUV"SX[[2WC MKH$/75]R#Z=.-T1>RV;6W\//B/?I_<+N1?MMLNE[=[3_8[++FX3T'QE@VH-W M?.YQ*5V7[VHB5NG M'+UC*K%Q_$'!%?R1;,,2L\-M6(X.TRQL6F/944ONP9,K.MG;.(W9&C58/Y6! M/0KPK)U?)@W3_V:!]HRLBFKH2>^SS?-O[?W]*,1SC^%+*]PN[=(N[=(N_2[2 *?P`MK+R\`%```&:! ` end >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 18:33:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA04347 for freebsd-ports-outgoing; Fri, 20 Feb 1998 18:33:28 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA04249; Fri, 20 Feb 1998 18:33:18 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id SAA22826; Fri, 20 Feb 1998 18:32:41 -0800 (PST) To: Tom cc: Stefan Esser , ports@FreeBSD.ORG Subject: Re: Breakage with kdelibs In-reply-to: Your message of "Fri, 20 Feb 1998 17:07:50 PST." Date: Fri, 20 Feb 1998 18:32:41 -0800 Message-ID: <22823.888028361@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > This old problem? The "test: syntax error" is caused by a /bin/sh bug. > I submitted a pr on this, which includes a sample script, and the output > from our /bin/sh and bash. PR#? 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 20 18:34:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA04518 for freebsd-ports-outgoing; Fri, 20 Feb 1998 18:34:01 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA04479; Fri, 20 Feb 1998 18:33:55 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id SAA22840; Fri, 20 Feb 1998 18:33:17 -0800 (PST) To: Tom cc: Stefan Esser , ports@FreeBSD.ORG Subject: Re: Breakage with kdelibs In-reply-to: Your message of "Fri, 20 Feb 1998 17:08:55 PST." Date: Fri, 20 Feb 1998 18:33:17 -0800 Message-ID: <22837.888028397@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > If your /bin/sh is bash, everything will work fine, BTW. In *this* instance, yes, though it'll almost certainly break something else. Not a solution. :-) 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 20 19:31:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA13905 for freebsd-ports-outgoing; Fri, 20 Feb 1998 19:31:37 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from misery.sdf.com (misery.sdf.com [204.244.213.32]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id TAA13882; Fri, 20 Feb 1998 19:31:19 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0y65Np-0007Iy-00; Fri, 20 Feb 1998 19:13:45 -0800 Date: Fri, 20 Feb 1998 19:13:40 -0800 (PST) From: Tom To: "Jordan K. Hubbard" cc: Stefan Esser , ports@FreeBSD.ORG Subject: Re: Breakage with kdelibs In-Reply-To: <22823.888028361@time.cdrom.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 20 Feb 1998, Jordan K. Hubbard wrote: > > This old problem? The "test: syntax error" is caused by a /bin/sh bug. > > I submitted a pr on this, which includes a sample script, and the output > > from our /bin/sh and bash. > > PR#? #5263 submitted Dec 9. This bugs breaks lots of configure scripts. > Jordan Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 19:58:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA18091 for freebsd-ports-outgoing; Fri, 20 Feb 1998 19:58:51 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mirageport.com (mirageport.com [204.134.94.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA18039; Fri, 20 Feb 1998 19:58:32 -0800 (PST) (envelope-from cowan@mirageport.com) Received: from hercules.mirageport.com (hercules.mirageport.com [204.134.94.35]) by mirageport.com (8.8.8/8.8.8) with SMTP id VAA17929; Fri, 20 Feb 1998 21:00:09 -0700 (MST) Message-ID: <019801bd3e7c$e5540ec0$235e86cc@hercules.mirageport.com> From: "Cowan Bowman" To: "Doug White" Cc: "FreeBSD Ports" , "FreeBSD Questions" Subject: Re: Have KDE ports been updated to Beta3? Date: Fri, 20 Feb 1998 20:57:56 -0700 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 4.72.2106.4 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----Original Message----- From: Doug White To: Cowan Bowman Cc: FreeBSD Ports ; FreeBSD Questions Date: Friday, February 20, 1998 3:34 PM Subject: Re: Have KDE ports been updated to Beta3? >On Thu, 19 Feb 1998, Cowan Bowman wrote: > >> Doug White wrote: >> >Most of the ports have been updated; kdenetwork is currently marked BROKEN >> >until it's updated. >> >> >> What part of it is broken, I was able to get the source from kde.org to >> compile just fine on my 2.2.5 machine. Although I haven't tested everything >> about KDE yet to see anything broken. > >Hm, you must have gotten the mimelib stuff along the way -- that's what >I'm missing. Do you know if it came through kdesupport? Yep.. I received the mimelib through kdesupport which I also downloaded and compiled from kde.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 20 20:10:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA20105 for freebsd-ports-outgoing; Fri, 20 Feb 1998 20:10:09 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA20060; Fri, 20 Feb 1998 20:10:03 -0800 (PST) (envelope-from gnats) Date: Fri, 20 Feb 1998 20:10:03 -0800 (PST) Message-Id: <199802210410.UAA20060@hub.freebsd.org> To: freebsd-ports Cc: From: Jun Kuriyama Subject: Re: ports/5753: fwtk port outdated Reply-To: Jun Kuriyama Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/5753; it has been noted by GNATS. From: Jun Kuriyama To: freebsd-gnats-submit@freebsd.org, igor@zynaps.ru Cc: Jun Kuriyama Subject: Re: ports/5753: fwtk port outdated Date: Sat, 21 Feb 1998 13:07:32 +0900 I tried to create port for fwtk-2.0 (http://www.phys.waseda.ac.jp/ opt/kuriyama/tmp/fwtk-980221.tar.gz). This includes TIS's official patches in patches/patch-b[a-f]. These patches (except patch-bf) have RCS tag such as '$Id$', so should be added to repository with -kb option. But I have tested this only 2.1.7.1-RELEASE. Thanks. Jun Kuriyama To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 20:23:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA22250 for freebsd-ports-outgoing; Fri, 20 Feb 1998 20:23:04 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA22210; Fri, 20 Feb 1998 20:22:51 -0800 (PST) (envelope-from steve) Date: Fri, 20 Feb 1998 20:22:51 -0800 (PST) From: Steve Price Message-Id: <199802210422.UAA22210@hub.freebsd.org> To: andy@icc.surw.chel.su, steve, freebsd-ports, steve Subject: Re: ports/5696 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: net/lftp State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Feb 20 20:22:03 PST 1998 State-Changed-Why: Already updated by jseger. Responsible-Changed-From-To: freebsd-ports->steve Responsible-Changed-By: steve Responsible-Changed-When: Fri Feb 20 20:22:03 PST 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 20:26:30 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA22792 for freebsd-ports-outgoing; Fri, 20 Feb 1998 20:26:30 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA22755; Fri, 20 Feb 1998 20:26:10 -0800 (PST) (envelope-from steve) Date: Fri, 20 Feb 1998 20:26:10 -0800 (PST) From: Steve Price Message-Id: <199802210426.UAA22755@hub.freebsd.org> To: marcus@miami.edu, steve, freebsd-ports Subject: Re: ports/5597 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port gone-1.2.4 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Feb 20 20:24:44 PST 1998 State-Changed-Why: Superceded by ports/5630. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 21:15:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA28340 for freebsd-ports-outgoing; Fri, 20 Feb 1998 21:15:53 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA28313; Fri, 20 Feb 1998 21:15:37 -0800 (PST) (envelope-from steve) Date: Fri, 20 Feb 1998 21:15:37 -0800 (PST) From: Steve Price Message-Id: <199802210515.VAA28313@hub.freebsd.org> To: lioux@gns.com.br, steve, freebsd-ports Subject: Re: ports/5412 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: An updated port file for xwpe (Devel) State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Feb 20 21:15:08 PST 1998 State-Changed-Why: Patch applied. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 21:26:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA29849 for freebsd-ports-outgoing; Fri, 20 Feb 1998 21:26:57 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA29817; Fri, 20 Feb 1998 21:26:40 -0800 (PST) (envelope-from steve) Date: Fri, 20 Feb 1998 21:26:40 -0800 (PST) From: Steve Price Message-Id: <199802210526.VAA29817@hub.freebsd.org> To: sheldonh@iafrica.com, steve, freebsd-ports Subject: Re: ports/5376 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: emulators/xzx: rm patches/patch-ab State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Feb 20 21:26:06 PST 1998 State-Changed-Why: Patch removed as suggested. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Feb 20 21:32:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00697 for freebsd-ports-outgoing; Fri, 20 Feb 1998 21:32:29 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA00591; Fri, 20 Feb 1998 21:32:01 -0800 (PST) (envelope-from steve) Date: Fri, 20 Feb 1998 21:32:01 -0800 (PST) From: Steve Price Message-Id: <199802210532.VAA00591@hub.freebsd.org> To: saken@rmta.ml.org, steve, freebsd-ports Subject: Re: ports/5360 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update libident to version 0.21 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Fri Feb 20 21:31:29 PST 1998 State-Changed-Why: Already upgraded to 0.21 by torstenb@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 21 00:14:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA14854 for freebsd-ports-outgoing; Sat, 21 Feb 1998 00:14:10 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA14827; Sat, 21 Feb 1998 00:13:51 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id AAA24188; Sat, 21 Feb 1998 00:13:15 -0800 (PST) To: Tom cc: Stefan Esser , ports@FreeBSD.ORG Subject: Re: Breakage with kdelibs In-reply-to: Your message of "Fri, 20 Feb 1998 19:13:40 PST." Date: Sat, 21 Feb 1998 00:13:15 -0800 Message-ID: <24185.888048795@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Ah. I was kind of hoping there was a fix attached - no wonder this one hasn't been closed yet. :-( The number of people who have the time and inclination to work on sh is regrettably small and I have my doubts about this one getting fixed anytime soon. Jordan > > On Fri, 20 Feb 1998, Jordan K. Hubbard wrote: > > > > This old problem? The "test: syntax error" is caused by a /bin/sh bug. > > > I submitted a pr on this, which includes a sample script, and the output > > > from our /bin/sh and bash. > > > > PR#? > > #5263 submitted Dec 9. This bugs breaks lots of configure scripts. > > > Jordan > > Tom > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 00:35:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA18155 for freebsd-ports-outgoing; Sat, 21 Feb 1998 00:35:18 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from misery.sdf.com (misery.sdf.com [204.244.213.32]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id AAA18150; Sat, 21 Feb 1998 00:35:12 -0800 (PST) (envelope-from tom@sdf.com) Received: from tom by misery.sdf.com with smtp (Exim 1.73 #1) id 0y6A82-0007S9-00; Sat, 21 Feb 1998 00:17:46 -0800 Date: Sat, 21 Feb 1998 00:17:46 -0800 (PST) From: Tom To: "Jordan K. Hubbard" cc: Stefan Esser , ports@FreeBSD.ORG Subject: Re: Breakage with kdelibs In-Reply-To: <24185.888048795@time.cdrom.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 Sat, 21 Feb 1998, Jordan K. Hubbard wrote: > Ah. I was kind of hoping there was a fix attached - no wonder this > one hasn't been closed yet. :-( The number of people who have the time > and inclination to work on sh is regrettably small and I have my > doubts about this one getting fixed anytime soon. > > Jordan Why re-invent the wheel? These configure scripts work fine with bash. Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 00:49:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA19604 for freebsd-ports-outgoing; Sat, 21 Feb 1998 00:49:17 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA19593; Sat, 21 Feb 1998 00:49:10 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id AAA25918; Sat, 21 Feb 1998 00:48:34 -0800 (PST) To: Tom cc: Stefan Esser , ports@FreeBSD.ORG Subject: Re: Breakage with kdelibs In-reply-to: Your message of "Sat, 21 Feb 1998 00:17:46 PST." Date: Sat, 21 Feb 1998 00:48:34 -0800 Message-ID: <25914.888050914@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Why re-invent the wheel? These configure scripts work fine with bash. If you want to hack the configure scripts in question to use bash rather than sh then that would be an acceptable work-around. On the other hand, I hope that you're not actually suggesting that we replace /bin/sh with bash officially since that would be a suggestion so insane that we'd have no choice but to back away from you very slowly and carefully and call for the white coated guys with the big net. :) Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 05:50:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA27266 for freebsd-ports-outgoing; Sat, 21 Feb 1998 05:50:56 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mtigwc04.worldnet.att.net (mtigwc04.worldnet.att.net [204.127.131.33]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA27260 for ; Sat, 21 Feb 1998 05:50:55 -0800 (PST) (envelope-from PhilmoreW@worldnet.att.net) Received: from 30.dallas-01.tx.dial-access.att.net ([12.67.0.30]) by mtigwc04.worldnet.att.net (post.office MTA v2.0 0613 ) with SMTP id AAA2831 for ; Sat, 21 Feb 1998 13:50:23 +0000 Received: by 30.dallas-01.tx.dial-access.att.net with Microsoft Mail id <01BD3E9D.08488580@30.dallas-01.tx.dial-access.att.net>; Sat, 21 Feb 1998 07:48:00 -0600 Message-ID: <01BD3E9D.08488580@30.dallas-01.tx.dial-access.att.net> From: Phil Welch To: "'ports@freebsd.org'" Subject: Netscape4 installation Date: Thu, 19 Feb 1998 19:27:25 -0600 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by hub.freebsd.org id FAA27261 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have installed all port selections and have attempted to install Netscape4. Messages spew forth indicating that Netscape4 files cannot be found after much searching. The CDROM containing Netscape4 is available and ready. Regards, Phil Welch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 07:48:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA04784 for freebsd-ports-outgoing; Sat, 21 Feb 1998 07:48:35 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA04744; Sat, 21 Feb 1998 07:48:28 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 07:48:28 -0800 (PST) From: Steve Price Message-Id: <199802211548.HAA04744@hub.freebsd.org> To: kiri@kiri.toba-cmt.ac.jp, steve, freebsd-ports Subject: Re: ports/5252 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update the port(ocaml-1.06):lang/ocaml. State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 07:48:03 PST 1998 State-Changed-Why: Patch committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 07:49:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA04880 for freebsd-ports-outgoing; Sat, 21 Feb 1998 07:49:06 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA04862; Sat, 21 Feb 1998 07:49:01 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 07:49:01 -0800 (PST) From: Steve Price Message-Id: <199802211549.HAA04862@hub.freebsd.org> To: kiri@kiri.toba-cmt.ac.jp, steve, freebsd-ports Subject: Re: ports/5375 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update the port: ocaml-1.07(lang/ocaml) State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 07:48:34 PST 1998 State-Changed-Why: Patch committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 09:40:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19048 for freebsd-ports-outgoing; Sat, 21 Feb 1998 09:40:04 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA19038; Sat, 21 Feb 1998 09:40:01 -0800 (PST) (envelope-from gnats) Received: from pcmita.isen.fr (pcmita.isen.fr [192.134.17.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA18487 for ; Sat, 21 Feb 1998 09:33:33 -0800 (PST) (envelope-from mita@pcmita.isen.fr) Received: (from mita@localhost) by pcmita.isen.fr (8.8.7/8.8.7) id SAA23557; Sat, 21 Feb 1998 18:28:02 +0100 (CET) (envelope-from mita) Message-Id: <199802211728.SAA23557@pcmita.isen.fr> Date: Sat, 21 Feb 1998 18:28:02 +0100 (CET) From: MITA Yoshio Reply-To: MITA Yoshio To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5808: ja-tgif port for JIS support Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5808 >Category: ports >Synopsis: Added support for JIS encoded PostScript >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: support >Submitter-Id: current-users >Arrival-Date: Sat Feb 21 09:40:01 PST 1998 >Last-Modified: >Originator: MITA Yoshio >Organization: Le Centre National de la Recherche Scientifique >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: +XFree86 3.3.1 >Description: Some problems are known in some printers concerning EUC-JP encoded PostScript files. It's also known that there's a patch which solve that problem. This PR enables japanese/tgif port to use the patch. Patch is not applied in BATCH=yes mode, nor interactive mode selecting "EUC-JP(default)". >How-To-Repeat: >Fix: diff -ruN japanese/tgif.orig/Makefile japanese/tgif/Makefile --- japanese/tgif.orig/Makefile Sun Sep 14 23:33:35 1997 +++ japanese/tgif/Makefile Sat Feb 21 18:13:22 1998 @@ -9,8 +9,10 @@ DISTNAME= tgif-3.0-p13 PKGNAME= ja-tgif-3.0.13 CATEGORIES= japanese -MASTER_SITES= ${MASTER_SITE_XCONTRIB} +MASTER_SITES= ${MASTER_SITE_XCONTRIB} \ + http://www.jp.freebsd.org/~mita/LOCAL_PORTS/ MASTER_SITE_SUBDIR= applications/tgif +DISTFILES= tgif-3.0-p13.tar.gz tgif-3.0J0.12-p13-JIS-patch.gz PATCH_SITES= ftp://ftp.mei.co.jp/free/X11/X/applications/drawing/tgif/ PATCHFILES= tgif-3.0J0.12-p13-patch.gz @@ -28,5 +30,10 @@ PATCH_DIST_STRIP= -p1 MAN1= tgif.1 prtgif.1 MANCOMPRESSED= yes +EXTRACT_ONLY= tgif-3.0-p13.tar.gz + +post-patch: + ${SETENV} DISTDIR="${DISTDIR}" GZCAT="${GZCAT}" \ + PATCH="${PATCH}" PATCH_DIST_ARGS="${PATCH_DIST_ARGS}" ${SH} ${FILESDIR}/setup.sh .include diff -ruN japanese/tgif.orig/files/md5 japanese/tgif/files/md5 --- japanese/tgif.orig/files/md5 Sat Aug 30 20:33:48 1997 +++ japanese/tgif/files/md5 Sat Dec 6 10:09:09 1997 @@ -1,2 +1,3 @@ MD5 (tgif-3.0-p13.tar.gz) = d862c6bdf9c4e0f3852fdfe8646e50fc MD5 (tgif-3.0J0.12-p13-patch.gz) = 399e09ddb139a4840fa83de9307aee20 +MD5 (tgif-3.0J0.12-p13-JIS-patch.gz) = 2e88c8c70e33605900eb7a724752a387 diff -ruN japanese/tgif.orig/files/setup.sh japanese/tgif/files/setup.sh --- japanese/tgif.orig/files/setup.sh Thu Jan 1 01:00:00 1970 +++ japanese/tgif/files/setup.sh Sat Feb 21 16:57:13 1998 @@ -0,0 +1,25 @@ +#!/bin/sh +# tgif configuration shell script +# usage: /bin/sh setup + +if [ X"${BATCH}" != X"yes" ] ; then +/usr/bin/dialog --title "Tgif port setup for Kanji code selection" --radiolist \ +"You can select EUC kanji code (Default) or JIS kanji code. \n \ +EUC kanji code is compatible to former Tgif ports. \n \ +Recently there are many printers which do not understand \n \ +EUC encoded PS files correctly. In that case choose JIS." -1 -1 2 \ +"EUC" "EUC-JP mode" ON \ +"JIS" "JIS mode" OFF 2>/tmp/TGIF.kanji.selection + +if [ X`cat /tmp/TGIF.kanji.selection` = "XJIS" ] + then + echo 'JIS is selected' + echo 'Remember to change X resources entry for TgifNihongoFonts' + echo 'If you have already set' + ${GZCAT} ${DISTDIR}/tgif-3.0J0.12-p13-JIS-patch.gz | \ + ${PATCH} ${PATCH_DIST_ARGS} + else + echo 'EUC-JP mode (default) is selected' + fi +fi +rm -f /tmp/TGIF.kanji.selection diff -ruN japanese/tgif.orig/patches/patch-aa japanese/tgif/patches/patch-aa --- japanese/tgif.orig/patches/patch-aa Sat Aug 30 20:33:48 1997 +++ japanese/tgif/patches/patch-aa Sat Dec 6 10:10:52 1997 @@ -1,7 +1,7 @@ -*** Imakefile.orig Mon Jul 21 22:52:14 1997 ---- Imakefile Mon Jul 21 22:52:25 1997 +*** Imakefile.orig Sat Dec 6 10:09:50 1997 +--- Imakefile Sat Dec 6 10:10:12 1997 *************** -*** 87,93 **** +*** 94,100 **** LOCAL_LIBRARIES = $(XLIB) XCOMM LOCAL_LIBRARIES = $(XMULIB) $(XTOOLLIB) $(XLIB) DEPLIBS = $(DEPXLIB) @@ -9,7 +9,7 @@ XCOMM -D_NO_GETTIMEOFDAY XCOMM Include the above line if you do not have the gettimeofday() ---- 87,93 ---- +--- 94,100 ---- LOCAL_LIBRARIES = $(XLIB) XCOMM LOCAL_LIBRARIES = $(XMULIB) $(XTOOLLIB) $(XLIB) DEPLIBS = $(DEPXLIB) -- MITA Yoshio >Audit-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 21 10:24:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA24997 for freebsd-ports-outgoing; Sat, 21 Feb 1998 10:24:43 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA24986 for ; Sat, 21 Feb 1998 10:24:42 -0800 (PST) (envelope-from fenner@FreeBSD.org) From: Bill Fenner Received: (from fenner@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA14918 for ports@freebsd.org; Sat, 21 Feb 1998 10:00:10 -0800 (PST) Date: Sat, 21 Feb 1998 10:00:10 -0800 (PST) Message-Id: <199802211800.KAA14918@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://www.freebsd.org/~fenner/portsurvey/ . In particular, the list of ports with no MAINTAINER with distfile problems is http://www.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. 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 Sat Feb 21 11:33:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA06368 for freebsd-ports-outgoing; Sat, 21 Feb 1998 11:33:35 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA06295; Sat, 21 Feb 1998 11:33:22 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 11:33:22 -0800 (PST) From: Steve Price Message-Id: <199802211933.LAA06295@hub.freebsd.org> To: mvh@netcom.com, steve, freebsd-ports Subject: Re: ports/5584 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: 'gnats' port install cat pages, but not man pages State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 11:31:58 PST 1998 State-Changed-Why: The current gnats port does indeed install the man pages. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 12:28:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA11885 for freebsd-ports-outgoing; Sat, 21 Feb 1998 12:28:51 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA11857; Sat, 21 Feb 1998 12:28:39 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 12:28:39 -0800 (PST) From: Steve Price Message-Id: <199802212028.MAA11857@hub.freebsd.org> To: Lars.Koeller@Uni-Bielefeld.DE, steve, freebsd-ports Subject: Re: ports/5438 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update xperfmon port State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 12:27:43 PST 1998 State-Changed-Why: Updated as requested with a few minor mods to make this port compile in both 3.0 and 2.2.5-STABLE. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 12:35:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13158 for freebsd-ports-outgoing; Sat, 21 Feb 1998 12:35:22 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13121; Sat, 21 Feb 1998 12:35:08 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 12:35:08 -0800 (PST) From: Steve Price Message-Id: <199802212035.MAA13121@hub.freebsd.org> To: scott@sabami.seaslug.org, steve, freebsd-ports Subject: Re: ports/5356 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mail/nmh port update to nmh-0.18 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 12:34:26 PST 1998 State-Changed-Why: This port has since been updated to version 0.19. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 13:28:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA20842 for freebsd-ports-outgoing; Sat, 21 Feb 1998 13:28:48 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from sag.space.lockheed.com (sag.space.lockheed.com [192.68.162.134]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id NAA20815 for ; Sat, 21 Feb 1998 13:28:46 -0800 (PST) (envelope-from handy@sag.space.lockheed.com) Received: from localhost by sag.space.lockheed.com; (5.65v3.2/1.1.8.2/21Nov95-0423PM) id AA11374; Sat, 21 Feb 1998 13:27:52 -0800 Date: Sat, 21 Feb 1998 13:27:52 -0800 (PST) From: Brian Handy To: ports@FreeBSD.ORG Subject: Two distfiles, two subdirs? Message-Id: X-Files: The truth is out there Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hey folks, Quick porting question. I'm working on updating the WindowMaker port, and there are two files I need: The windowmaker distfile, and this thing called libProbList.tar.gz. The two distfiles come from different subdirs on the master site, so it doesn't seem like I can just specify two distfiles. I'm hunting through the ports tree for another example of how this gets handled, but I haven't found it yet. (I don't think libPropList merits its own port, but that would be one solution. The @%^ distfile doesn't come with a version number.) Any advice? Thanks, Brian To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 13:30:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21115 for freebsd-ports-outgoing; Sat, 21 Feb 1998 13:30:02 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21035; Sat, 21 Feb 1998 13:29:41 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 13:29:41 -0800 (PST) From: Steve Price Message-Id: <199802212129.NAA21035@hub.freebsd.org> To: dirk.meyer@dinoex.sub.org, steve, freebsd-ports Subject: Re: ports/5329 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: fix for emulators/frodo State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 13:28:47 PST 1998 State-Changed-Why: New port committed. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 14:40:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27629 for freebsd-ports-outgoing; Sat, 21 Feb 1998 14:40:04 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27623; Sat, 21 Feb 1998 14:40:02 -0800 (PST) (envelope-from gnats) Received: from ve7tcp.ampr.org (ve7tcp.ampr.org [198.161.92.132]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA27237 for ; Sat, 21 Feb 1998 14:32:53 -0800 (PST) (envelope-from lyndon@ve7tcp.ampr.org) Received: (from lyndon@localhost) by ve7tcp.ampr.org (8.8.8/8.8.4) id PAA12395; Sat, 21 Feb 1998 15:32:51 -0700 (MST) Message-Id: <199802212232.PAA12395@ve7tcp.ampr.org> Date: Sat, 21 Feb 1998 15:32:51 -0700 (MST) From: Lyndon Nerenberg Reply-To: lyndon@ve7tcp.ampr.org To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/5811: netatalk SIOCADDMULTI failure Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 5811 >Category: ports >Synopsis: netatalk ioctl(SIOCADDMULTI) failure >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Feb 21 14:40:02 PST 1998 >Last-Modified: >Originator: Lyndon Nerenberg >Organization: The ESYS Corporation >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: atalkd tries to ioctl(SIOCADDMULTI) all the interfaces it can find. For reasons unknown to me, this call fails. >How-To-Repeat: Start atalkd and watch it fail with an "addmulti" error message. >Fix: The workaround I applied was to wrap the offending statement in an '#ifndef __FreeBSD__'. It's not a proper fix, but it's been working in our production environment since late December. The offending statement is an "if (ifconfig(...,SIOCADDMULTI,..." around line 1155 of etc/atalkd/main.c. Hopefully someone can come up with a real fix. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 14:40:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27717 for freebsd-ports-outgoing; Sat, 21 Feb 1998 14:40:53 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hwcn.org (ac199@james.hwcn.org [199.212.94.66]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA27695 for ; Sat, 21 Feb 1998 14:40:47 -0800 (PST) (envelope-from hoek@hwcn.org) Received: from localhost (ac199@localhost) by hwcn.org (8.8.8/8.8.8) with SMTP id RAA02601; Sat, 21 Feb 1998 17:36:42 -0500 (EST) Date: Sat, 21 Feb 1998 17:36:42 -0500 (EST) From: Tim Vanderhoek To: Brian Handy cc: ports@FreeBSD.ORG Subject: Re: Two distfiles, two subdirs? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, 21 Feb 1998, Brian Handy wrote: > The two distfiles come from different subdirs on the master site, so it > doesn't seem like I can just specify two distfiles. I'm hunting through > the ports tree for another example of how this gets handled, but I haven't What happens if you set DISTFILES to DISTFILES=subdir/libProbList.tar.gz other_sub/wm-9.9.9.tar.gz ? Glancing through bsd.port.mk, this'll probably cause a problem with the do-extract rule, but that's a bug in bsd.port.mk, not in the method used. :) If do-extract is the only place it causes problems, you can supply your own do-extract, but I'd prefer to see bsd.port.mk fixed. > found it yet. (I don't think libPropList merits its own port, but that > would be one solution. The @%^ distfile doesn't come with a version > number.) If would be a better solution if it does merit its own port. :) -- Outnumbered? Maybe. Outspoken? Never! tIM...HOEk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 14:46:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA28796 for freebsd-ports-outgoing; Sat, 21 Feb 1998 14:46:07 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from alpha.xerox.com (firewall-user@alpha.Xerox.COM [13.1.64.93]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id OAA28790 for ; Sat, 21 Feb 1998 14:46:06 -0800 (PST) (envelope-from fenner@parc.xerox.com) Received: from crevenia.parc.xerox.com ([13.2.116.11]) by alpha.xerox.com with SMTP id <52620(1)>; Sat, 21 Feb 1998 14:46:04 PST Received: by crevenia.parc.xerox.com id <177476>; Sat, 21 Feb 1998 14:46:02 -0800 From: Bill Fenner To: handy@sag.space.lockheed.com, hoek@hwcn.org Subject: Re: Two distfiles, two subdirs? Cc: ports@FreeBSD.ORG Message-Id: <98Feb21.144602pst.177476@crevenia.parc.xerox.com> Date: Sat, 21 Feb 1998 14:45:55 PST Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In general, the "solution" is to put both subdirs in MASTER_SITES and put the files without subdirectory names in DISTFILES. This causes a not-really-a-problem because it could try to fetch each file from the wrong directory and get a "no such file", but 2 out of the 4 URL's are right so it kinda works. My vision of the solution to this kind of problem (including the more general "this file is available from site A and the others are available from site B") is to have the ability to have several MASTER_SITES and DISTFILES variables, e.g. MASTER_SITES= http://somewhere/subdir1 DISTFILES= libProbList.tar.gz MASTER_SITES_1= http://somewhere/other_subdir DISTFILES_1= wm-9.9.9.tar.gz I think this only really requires modifying the fetch target (and the other targets to concatenate all of the distfiles* variables together) but haven't really gotten my hands dirty with it. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 15:19:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA05411 for freebsd-ports-outgoing; Sat, 21 Feb 1998 15:19:59 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA05372; Sat, 21 Feb 1998 15:19:25 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 15:19:25 -0800 (PST) From: Steve Price Message-Id: <199802212319.PAA05372@hub.freebsd.org> To: dmlb@ragnet.demon.co.uk, steve, freebsd-ports Subject: Re: ports/5282 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update tkdesk port to latest tkdesk release State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 15:18:35 PST 1998 State-Changed-Why: Port updated to version 1.0b5. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 15:26:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA07199 for freebsd-ports-outgoing; Sat, 21 Feb 1998 15:26:17 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from peloton.physics.montana.edu (peloton.physics.montana.edu [153.90.192.177]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA07177 for ; Sat, 21 Feb 1998 15:26:14 -0800 (PST) (envelope-from brett@peloton.physics.montana.edu) Received: from localhost (brett@localhost) by peloton.physics.montana.edu (8.8.8/8.8.7) with SMTP id QAA09088 for ; Sat, 21 Feb 1998 16:24:23 -0700 (MST) (envelope-from brett@peloton.physics.montana.edu) Date: Sat, 21 Feb 1998 16:24:23 -0700 (MST) From: Brett Taylor To: freebsd-ports@FreeBSD.ORG Subject: porting question #10,001 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 Or so it seems. :-) I'm attempting to upgrade the dotfile port which has been upgraded and I thought I could essentially change the version #'s and make sure the patches still worked but... They've added support for procmailrc files, but the procmail portion needs a gnu configure script to be run in addition to the one that runs for the main program. I've set up the Makefile like: pre-fetch: .if !defined(PROCMAIL) @${ECHO_MSG} "If you would like to use dotfile to help make procmailrc files, please compile with \"make PROCMAIL=yes\"." @${ECHO_MSG} "If you decide to install procmail later, you will need to run the configure script in ${PREFIX}/${DISTNAME}/procmail." .endif post-configure: .if defined(PROCMAIL) now do some kind of call to run the configure script there .endif I've tried the following to replace the above line and it doesn't work: @${CD} ${WRKSRC}/Modules/procmail @${CONFIGURE} I've tried a few other things similar to this and they also didn't work. Actually the above runs it just puts all of the configured stuff in /usr/ports/dotfile which isn't so useful. :-) I thought I could do this in a do-configure area and just have multiple configure files (as the bsd.port.mk says it can run multiple ones) if procmail is defined otherwise just do a normal configure. However I looked and I couldn't see any examples of multiple configure files being run - how would you set that up? Something like: CONFIGURE_SCRIPT= configure ${WRKSRC}/Modules/procmail/configure didn't work - it ignored the extra argument. I suppose I need some delimiter, but what I can't tell. Brett ********************************************************* Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ When you wake up in the morning With the blues in your fingertips Get out that ol' guitar and play It's the only way to scratch that itch To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 15:57:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11065 for freebsd-ports-outgoing; Sat, 21 Feb 1998 15:57:55 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA11037; Sat, 21 Feb 1998 15:57:33 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 15:57:33 -0800 (PST) From: Steve Price Message-Id: <199802212357.PAA11037@hub.freebsd.org> To: mita@jp.FreeBSD.org, steve, freebsd-ports Subject: Re: ports/2974 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: updated Makefile and patch-ab of jp-dvi2ps State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 15:56:22 PST 1998 State-Changed-Why: Stale PR for a port that has been long since updated. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 16:00:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA11325 for freebsd-ports-outgoing; Sat, 21 Feb 1998 16:00:02 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA11317; Sat, 21 Feb 1998 16:00:01 -0800 (PST) (envelope-from gnats) Date: Sat, 21 Feb 1998 16:00:01 -0800 (PST) Message-Id: <199802220000.QAA11317@hub.freebsd.org> To: freebsd-ports Cc: From: Steve Price Subject: Re: ports/2571: Maxima lacks pkg directory Reply-To: Steve Price Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/2571; it has been noted by GNATS. From: Steve Price To: freebsd-gnats-submit@freebsd.org, giffunip@asme.org Cc: Subject: Re: ports/2571: Maxima lacks pkg directory Date: Sat, 21 Feb 1998 17:52:18 -0600 Hi Pedro, Is it ok if I nuke this port? Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 16:02:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA11558 for freebsd-ports-outgoing; Sat, 21 Feb 1998 16:02:24 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA11463; Sat, 21 Feb 1998 16:01:54 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 16:01:54 -0800 (PST) From: Steve Price Message-Id: <199802220001.QAA11463@hub.freebsd.org> To: blank@fox.uni-trier.de, steve, freebsd-ports Subject: Re: ports/3052 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: /usr/ports/lang/expect does not find tkConfig.sh State-Changed-From-To: analyzed-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 16:00:44 PST 1998 State-Changed-Why: Stale PR. This port now uses version 5.25 of expect and 8.0 of tcl/tk. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 16:27:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA14954 for freebsd-ports-outgoing; Sat, 21 Feb 1998 16:27:28 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA14812; Sat, 21 Feb 1998 16:26:44 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 16:26:44 -0800 (PST) From: Steve Price Message-Id: <199802220026.QAA14812@hub.freebsd.org> To: pgiffuni@fps.biblos.unal.edu.co, steve, freebsd-ports Subject: Re: ports/2571 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Maxima lacks pkg directory State-Changed-From-To: feedback-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 16:26:05 PST 1998 State-Changed-Why: This maxima port has been nuked. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 16:31:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA15512 for freebsd-ports-outgoing; Sat, 21 Feb 1998 16:31:46 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA15493; Sat, 21 Feb 1998 16:31:40 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 16:31:40 -0800 (PST) From: Steve Price Message-Id: <199802220031.QAA15493@hub.freebsd.org> To: norita-i@is.aist-nara.ac.jp, steve, freebsd-ports Subject: Re: ports/3597 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: jp-groff-0.99 port macro update State-Changed-From-To: feedback-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 16:30:26 PST 1998 State-Changed-Why: Problem fixed by Satoshi along with ports/3635. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 16:34:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16137 for freebsd-ports-outgoing; Sat, 21 Feb 1998 16:34:43 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16087; Sat, 21 Feb 1998 16:34:35 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 16:34:35 -0800 (PST) From: Steve Price Message-Id: <199802220034.QAA16087@hub.freebsd.org> To: handy@lambic.space.lockheed.com, steve, freebsd-ports Subject: Re: ports/3870 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Upgrade tkdesk 1.0b3 --> 1.0b4 State-Changed-From-To: feedback-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 16:33:34 PST 1998 State-Changed-Why: I just upgraded this port to version 1.0b5. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 16:37:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16759 for freebsd-ports-outgoing; Sat, 21 Feb 1998 16:37:58 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16736; Sat, 21 Feb 1998 16:37:50 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 16:37:50 -0800 (PST) From: Steve Price Message-Id: <199802220037.QAA16736@hub.freebsd.org> To: meissner@tu-harburg.d400.de, steve, freebsd-ports Subject: Re: ports/4103 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Should I or should I not ? State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 16:36:47 PST 1998 State-Changed-Why: Please send-pr these new ports if you still have them around. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 16:41:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17215 for freebsd-ports-outgoing; Sat, 21 Feb 1998 16:41:00 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA17160; Sat, 21 Feb 1998 16:40:41 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 16:40:41 -0800 (PST) From: Steve Price Message-Id: <199802220040.QAA17160@hub.freebsd.org> To: rssh@cki.ipri.kiev.ua, steve, freebsd-ports Subject: Re: ports/4067 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: wrong formats of files in offix.tar State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 16:39:33 PST 1998 State-Changed-Why: Note taken. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 16:50:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18067 for freebsd-ports-outgoing; Sat, 21 Feb 1998 16:50:02 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from gnats@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA18061; Sat, 21 Feb 1998 16:50:00 -0800 (PST) (envelope-from gnats) Date: Sat, 21 Feb 1998 16:50:00 -0800 (PST) Message-Id: <199802220050.QAA18061@hub.freebsd.org> To: freebsd-ports Cc: From: Steve Price Subject: Re: ports/3991: set of OffiX ports Reply-To: Steve Price Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/3991; it has been noted by GNATS. From: Steve Price To: freebsd-gnats-submit@freebsd.org, rssh@cki.ipri.kiev.ua Cc: Subject: Re: ports/3991: set of OffiX ports Date: Sat, 21 Feb 1998 18:43:21 -0600 As Ruslan pointed out in ports/4067. Beware of the contents of offix.tar. The contents appear to be gzipped tarballs, but they are not gzipped for some reason. Steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 17:03:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19095 for freebsd-ports-outgoing; Sat, 21 Feb 1998 17:03:25 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19083; Sat, 21 Feb 1998 17:03:22 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 17:03:22 -0800 (PST) From: Steve Price Message-Id: <199802220103.RAA19083@hub.freebsd.org> To: mattp@nbc.netcom.ca, steve, freebsd-ports Subject: Re: ports/5471 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Problem with patches for port graphics/tiff34 State-Changed-From-To: analyzed-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 17:02:53 PST 1998 State-Changed-Why: Problem no longer exists. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 17:26:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22820 for freebsd-ports-outgoing; Sat, 21 Feb 1998 17:26:36 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA22782 for ; Sat, 21 Feb 1998 17:26:29 -0800 (PST) (envelope-from imp@village.org) Received: from pencil-box.village.org [10.0.0.22] by rover.village.org with esmtp (Exim 1.71 #1) id 0y6QAp-0003FV-00; Sat, 21 Feb 1998 18:25:43 -0700 Received: from pencil-box.village.org (localhost [127.0.0.1]) by pencil-box.village.org (8.8.8/8.8.3) with ESMTP id NAA00546 for ; Fri, 20 Feb 1998 13:00:50 -0700 (MST) Message-Id: <199802202000.NAA00546@pencil-box.village.org> To: ports@FreeBSD.ORG Subject: make install Date: Fri, 20 Feb 1998 13:00:49 -0700 From: "M. Warner Losh" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ok. I install foo-1.2 via the ports system with make install. it has lots of files in /usr/local/mumble/foo-1.2. At a later point in time foo 1.3 comes out. I do a cvs update in /usr/ports/mumble/foo and a make install. It installs the new version just fine, but doesn't remove the old version first. I still have /usr/local/mumble/foo-1.2 files around (as well as /var/db/pkg/foo-1.2 and now a /var/db/pkg/foo-1.3). I can understand that in some cases you want this behavior (tk and tcl come to mind). However for others (most I'd say), you just want the latest version. My thoughts on the matter are that you'd want to make those ports that can have multiple versions installed somehow. In addition, you might need to propigate this to the packages as well. Beyond that, I've not really thought things through yet. Comments? Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 17:29:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23581 for freebsd-ports-outgoing; Sat, 21 Feb 1998 17:29:32 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: (from steve@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23494; Sat, 21 Feb 1998 17:29:16 -0800 (PST) (envelope-from steve) Date: Sat, 21 Feb 1998 17:29:16 -0800 (PST) From: Steve Price Message-Id: <199802220129.RAA23494@hub.freebsd.org> To: andrsn.stanford.edu@andrsn.stanford.edu, steve, freebsd-ports Subject: Re: ports/4227 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: cops perl script produces errors State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sat Feb 21 17:28:33 PST 1998 State-Changed-Why: Patch added to make the perl version work. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 17:35:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA24680 for freebsd-ports-outgoing; Sat, 21 Feb 1998 17:35:27 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA24671 for ; Sat, 21 Feb 1998 17:35:23 -0800 (PST) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.6.9) with ESMTP id RAA23955; Sat, 21 Feb 1998 17:34:50 -0800 (PST) To: "M. Warner Losh" cc: ports@FreeBSD.ORG Subject: Re: make install In-reply-to: Your message of "Fri, 20 Feb 1998 13:00:49 MST." <199802202000.NAA00546@pencil-box.village.org> Date: Sat, 21 Feb 1998 17:34:49 -0800 Message-ID: <23951.888111289@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > ok. I install foo-1.2 via the ports system with make install. it has > lots of files in /usr/local/mumble/foo-1.2. At a later point in time > foo 1.3 comes out. I do a cvs update in /usr/ports/mumble/foo and a > make install. It installs the new version just fine, but doesn't > remove the old version first. I still have /usr/local/mumble/foo-1.2 > files around (as well as /var/db/pkg/foo-1.2 and now a > /var/db/pkg/foo-1.3). Yep. Debian "solves" this by having the upgrade system automatically deinstall all previous versions before installing the new, but this apparently pisses a lot of folks off when an auto-deinstallation is overly destructive or doesn't quite do what was expected (imagine a deinstall of a port that has other ports depending on it, or depends on other ports which now need to potentially be upgraded). It's a nasty can of worms. :) Probably the only truly non-hostile way of handling it would be to give each subsequent version of a port an "upgrade" hook which would do very specific and specialized things to upgrade it, removing only those components which were known to be dreck in the new port and selectively upgrading other components as necessary (each component also having its own semi-intelligent update procedure). In other words, try to encapsulate the kind of work that an expert user would do by hand in upgrading the port. But that's also a lot of work. :-( Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Feb 21 20:24:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA08022 for freebsd-ports-outgoing; Sat, 21 Feb 1998 20:24:18 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from rover.village.org (rover.village.org [204.144.255.49]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id UAA08016 for ; Sat, 21 Feb 1998 20:24:16 -0800 (PST) (envelope-from imp@village.org) Received: from harmony [10.0.0.6] by rover.village.org with esmtp (Exim 1.71 #1) id 0y6SxT-0003IX-00; Sat, 21 Feb 1998 21:24:07 -0700 Received: from harmony.village.org (localhost [127.0.0.1]) by harmony.village.org (8.8.8/8.8.3) with ESMTP id VAA27120; Sat, 21 Feb 1998 21:24:37 -0700 (MST) Message-Id: <199802220424.VAA27120@harmony.village.org> To: "Jordan K. Hubbard" Subject: Re: make install Cc: ports@FreeBSD.ORG In-reply-to: Your message of "Sat, 21 Feb 1998 17:34:49 PST." <23951.888111289@time.cdrom.com> References: <23951.888111289@time.cdrom.com> Date: Sat, 21 Feb 1998 21:24:37 -0700 From: Warner Losh Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <23951.888111289@time.cdrom.com> "Jordan K. Hubbard" writes: : Probably the only truly non-hostile way of handling it would be to : give each subsequent version of a port an "upgrade" hook which would : do very specific and specialized things to upgrade it, removing only : those components which were known to be dreck in the new port and : selectively upgrading other components as necessary (each component : also having its own semi-intelligent update procedure). In other words, : try to encapsulate the kind of work that an expert user would do by : hand in upgrading the port. But that's also a lot of work. :-( Heck, I'd by happy with a warning and/or an option to remove the old port before installing the new. However, that, as you said, has its own problems. the ssh host key is currently spammed on each new install, which is an annoying problem :-(. Warner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message