From owner-freebsd-ports Sun Nov 8 00:40:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA14752 for freebsd-ports-outgoing; Sun, 8 Nov 1998 00:40: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 AAA14738 for ; Sun, 8 Nov 1998 00:39:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA17898; Sun, 8 Nov 1998 00:40:00 -0800 (PST) Received: from waru.life.nthu.edu.tw (waru.life.nthu.edu.tw [140.114.98.13]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA14195 for ; Sun, 8 Nov 1998 00:29:47 -0800 (PST) (envelope-from frankch@waru.life.nthu.edu.tw) Received: (from frankch@localhost) by waru.life.nthu.edu.tw (8.8.8/8.8.8) id QAA13812; Sun, 8 Nov 1998 16:29:01 +0800 (CST) (envelope-from frankch) Message-Id: <199811080829.QAA13812@waru.life.nthu.edu.tw> Date: Sun, 8 Nov 1998 16:29:01 +0800 (CST) From: frankch@waru.life.nthu.edu.tw Reply-To: frankch@waru.life.nthu.edu.tw To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8600: mastersite change for biology/kinemage Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8600 >Category: ports >Synopsis: master site changes for biology/kinemage >Confidential: yes >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 8 00:40:00 PST 1998 >Last-Modified: >Originator: Chen Hsiung Chan >Organization: Department of Life Science, National Tsing Hua University >Release: FreeBSD 2.2.7-STABLE i386 >Environment: >Description: Master site/directory for ports/biology/kinemage has changed. This change causes an unfetchable distfile. >How-To-Repeat: >Fix: The patch is attached below: diff -ruN kinemage.orig/Makefile kinemage/Makefile --- kinemage.orig/Makefile Sun Nov 8 16:24:50 1998 +++ kinemage/Makefile Sun Nov 8 16:25:25 1998 @@ -9,7 +9,7 @@ DISTNAME= MAGE_4_2.LINUX PKGNAME= kinemage-4.2 CATEGORIES= biology -MASTER_SITES= ftp://suna.biochem.duke.edu/pub/LINUXprograms/ +MASTER_SITES= ftp://kinemage.biochem.duke.edu/LINUXprograms/ EXTRACT_SUFX= .Z MAINTAINER= frankch@waru.life.nthu.edu.tw >Audit-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 Nov 8 01:05:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA16812 for freebsd-ports-outgoing; Sun, 8 Nov 1998 01:05:29 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from duey.hs.wolves.k12.mo.us (duey.hs.wolves.k12.mo.us [207.160.214.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA16802; Sun, 8 Nov 1998 01:05:26 -0800 (PST) (envelope-from cdillon@wolves.k12.mo.us) Received: from duey.hs.wolves.k12.mo.us (cdillon@duey.hs.wolves.k12.mo.us [207.160.214.9]) by duey.hs.wolves.k12.mo.us (8.8.7/8.8.7) with ESMTP id DAA15947; Sun, 8 Nov 1998 03:05:12 -0600 (CST) (envelope-from cdillon@wolves.k12.mo.us) Date: Sun, 8 Nov 1998 03:05:11 -0600 (CST) From: Chris Dillon X-Sender: cdillon@duey.hs.wolves.k12.mo.us To: Satoshi Asami cc: freebsd-ports@FreeBSD.ORG Subject: Re: Way to fetch distfiles for all dependancies? In-Reply-To: <199811080645.WAA03738@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 Sat, 7 Nov 1998, Satoshi Asami wrote: > * > make fetch DEPENDS_TARGET=fetch > * > > * > * Doesn't work here. I think the reason is that only FETCH_DEPENDS are > * fetched with the fetch target, but not {BUILD|RUN|LIB}_DEPENDS or > * DEPENDS. If I were to do a 'make all DEPENDS_TARGET=fetch', it would at > > You're right, sorry. Try this: > > make fetch depends DEPENDS_TARGET=fetch > > with this patch: [patch snipped] Aaah, considerably simpler solution than what I had. It works, fetching all dependancies, _but_ if the port is installed locally, it doesn't do the fetch. If I've installed the port but deleted the distfile, it'll be missed. Also, if an older version of the port is installed, the check to see if the dependancy is installed may succeed and never fetch the newest distfile. It doesn't look like there is a way to do that in bsd.port.mk as-is (I'm looking at a very recent version... 1.294). Here's how I hacked aroud that... just define SKIP_DEPEND_INSTALLED_CHECK=1 (too long.. ugh) Index: bsd.port.mk =================================================================== RCS file: /devel/ncvs/src/share/mk/bsd.port.mk,v retrieving revision 1.294 diff -u -r1.294 bsd.port.mk --- bsd.port.mk 1998/10/30 08:28:02 1.294 +++ bsd.port.mk 1998/11/08 09:00:14 @@ -1845,7 +1845,7 @@ notfound=1; \ fi; \ fi; \ - if [ $$notfound != 0 ]; then \ + if [ $$notfound != 0 -o ${SKIP_DEPEND_INSTALLED_CHECK} ]; then \ ${ECHO_MSG} "===> Verifying $$target for $$prog in $$dir"; \ if [ ! -d "$$dir" ]; then \ ${ECHO_MSG} " >> No directory for $$prog. Skipping.."; \ @@ -1876,7 +1876,7 @@ else \ target=${DEPENDS_TARGET}; \ fi; \ - if ${LDCONFIG} -r | ${GREP} -qwF -e "-l$$lib"; then \ + if [ ! ${SKIP_DEPEND_INSTALLED_CHECK} ] && ${LDCONFIG} -r | ${GREP} -qwF -e "-l$$lib"; then \ ${ECHO_MSG} "===> ${PKGNAME} depends on shared library: $$lib - found"; \ else \ ${ECHO_MSG} "===> ${PKGNAME} depends on shared library: $$lib - not found"; \ Run it with make fetch depends checksum DEPENDS_TARGET="fetch" SKIP_DEPEND_INSTALLED_CHECK=1 and it works like a charm. Only thing still missing is the checksum for the depends (not done in this case, since DEPENDS_TARGET is only 'fetch'). I'll figure that out shortly, I think. After I sleep. :-) What you gave me plus the above made it work. Thanks! -- Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net /* FreeBSD: The fastest and most stable server OS on the planet. For Intel x86 and compatibles (SPARC and Alpha under development) ( http://www.freebsd.org ) */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 03:22:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA27972 for freebsd-ports-outgoing; Sun, 8 Nov 1998 03:22:09 -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 DAA27945 for ; Sun, 8 Nov 1998 03:21:57 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca6-19.ix.netcom.com [205.186.213.19]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id DAA21009 for ; Sun, 8 Nov 1998 03:21:23 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id DAA04535; Sun, 8 Nov 1998 03:21:20 -0800 (PST) Date: Sun, 8 Nov 1998 03:21:20 -0800 (PST) Message-Id: <199811081121.DAA04535@silvia.hip.berkeley.edu> To: ports@FreeBSD.ORG Subject: bsd.port.{pre,post}.mk From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Folks, I'm working on splitting up bsd.port.mk to two parts, one to be included before the port Makefile (to define stuff like PREFIX and PORTOBJFORMAT) and one to be included after it. I think adding two new files, bsd.port.{pre,post}.mk, which define a dummy variable and include bsd.port.mk is the easiest way for people, since it will allow them to track only one file (bsd.port.mk) most of the time. It is also easier for me to maintain the file too. One thing to note that it bsd.port.pre.mk actually has to be included after some variable definitions (most notably, USE_X_PREFIX and friends) for it to be useful, otherwise things like PREFIX will come out wrong. So we can't just add the file right after the leading comments. (Too bad, that would have been nice.) So, your Makefile will look like this: === # New ports collection makefile for: oneko : MAN6= oneko.6 .include .if ("${PORTOBJFORMAT}" == "elf") OBJS= elf.o .else OBJS= aout.o .endif .if exists(${PREFIX}/lib/X11/config/FreeBSD.cf.orig) laugh: @echo "Tee hee, you forgot to delete an .orig file!" .endif pre-configure: @echo "MANSUFFIX=6" >>${WRKSRC}/Imakefile .include === The general rule is, if you need the pre.mk and post.mk separation, put pre.mk after variable definitions (except for those that need variables defined in pre.mk). Then comes the rules, then post.mk. If you only need one, then bsd.port.mk can be used just like before, included at the end. Here's bsd.port.pre.mk: === BEFOREPORTMK= yes .include .undef BEFOREPORTMK === and here's bsd.port.post.mk: === AFTERPORTMK= yes .include .undef AFTERPORTMK === Here's a patch to bsd.port.mk itself and Makefile. I had to move some stuff around, but basically all it does is to surround the first part with ".if !defined(AFTERPORTMK)" and the rest with ".if !defined(BEFOREPORTMK)". === Index: Makefile =================================================================== RCS file: /usr/cvs/src/share/mk/Makefile,v retrieving revision 1.13.2.3 diff -u -r1.13.2.3 Makefile --- Makefile 1998/05/30 22:40:58 1.13.2.3 +++ Makefile 1998/11/08 10:54:35 @@ -4,7 +4,8 @@ FILES= bsd.README FILES+= bsd.dep.mk bsd.doc.mk bsd.info.mk bsd.kern.mk bsd.kmod.mk FILES+= bsd.lib.mk bsd.libnames.mk bsd.man.mk bsd.obj.mk bsd.own.mk -FILES+= bsd.port.mk bsd.port.subdir.mk bsd.prog.mk bsd.sgml.mk bsd.subdir.mk +FILES+= bsd.port.mk bsd.port.post.mk bsd.port.pre.mk bsd.port.subdir.mk +FILES+= bsd.prog.mk bsd.sgml.mk bsd.subdir.mk FILES+= sys.mk NOOBJ= noobj Index: bsd.port.mk =================================================================== RCS file: /usr/cvs/src/share/mk/bsd.port.mk,v retrieving revision 1.227.2.59 diff -u -r1.227.2.59 bsd.port.mk --- bsd.port.mk 1998/11/08 10:30:53 1.227.2.59 +++ bsd.port.mk 1998/11/08 11:14:03 @@ -36,6 +36,7 @@ # makefile is being used on. Automatically set to # "FreeBSD," "NetBSD," or "OpenBSD" as appropriate. # OSREL - The release version (numeric) of the operating system. +# OSVER - __FreeBSD_version. # PORTOBJFORMAT - The object format ("aout" or "elf"). # # These variables are used to identify your port. @@ -393,6 +394,9 @@ # a different checksum and you intend to verify if # the port still works with it. +# Start of pre-makefile section. +.if !defined(AFTERPORTMK) + # Get the architecture ARCH!= uname -m @@ -401,14 +405,12 @@ # Get the operating system revision OSREL!= uname -r | sed -e 's/[-(].*//' -PLIST_SUB+= OSREL=${OSREL} + +# Get __FreeBSD_version +OSVER!= sysctl -n kern.osreldate # Get the object format. PORTOBJFORMAT!= test -x /usr/bin/objformat && /usr/bin/objformat || echo aout -CONFIGURE_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} -SCRIPTS_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} -MAKE_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} -PLIST_SUB+= PORTOBJFORMAT=${PORTOBJFORMAT} # If they exist, include Makefile.inc, then architecture/operating # system specific Makefiles, then local Makefile.local. @@ -494,6 +496,25 @@ PKGDIR?= ${.CURDIR}/pkg .endif +.if defined(USE_X_PREFIX) +PREFIX?= ${X11BASE} +.else +PREFIX?= ${LOCALBASE} +.endif + +.endif +# End of pre-makefile section. + +# Start of post-makefile section. +.if !defined(BEFOREPORTMK) + +PLIST_SUB+= OSREL=${OSREL} + +CONFIGURE_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} +SCRIPTS_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} +MAKE_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} +PLIST_SUB+= PORTOBJFORMAT=${PORTOBJFORMAT} + .if defined(MANCOMPRESSED) .if ${MANCOMPRESSED} != yes && ${MANCOMPRESSED} != no && \ ${MANCOMPRESSED} != maybe @@ -515,11 +536,6 @@ .if defined(USE_X_PREFIX) USE_XLIB= yes .endif -.if defined(USE_X_PREFIX) -PREFIX?= ${X11BASE} -.else -PREFIX?= ${LOCALBASE} -.endif .if defined(USE_GMAKE) BUILD_DEPENDS+= gmake:${PORTSDIR}/devel/gmake @@ -2189,3 +2210,6 @@ .if !target(tags) tags: .endif + +.endif +# End of post-makefile section. === I left most of the pathname definitions in pre.mk, as I thought exists() check is what they are needed for, although I'm not sure if PKGDIR and stuff are that useful that early. As for non-pathname stuff, only these five are defined in pre.mk: === ARCH!= uname -m OPSYS!= uname -s OSREL!= uname -r | sed -e 's/[-(].*//' OSVER!= sysctl -n kern.osreldate PORTOBJFORMAT!= test -x /usr/bin/objformat && /usr/bin/objformat || echo aout === OSVER is new, and can be used for numeric comparisons. I'm not so sure about putting pre.mk right in the middle. Since it only needs USE_IMAKE and USE_X_PREFIX, maybe we can ask people to put it right at the top after those. Something like: === # New ports collection makefile for: oneko # Version required: 1.2 # Date created: 5 December 1994 # Whom: asami # # $Id: Makefile,v 1.11 1998/10/04 18:11:54 jseger Exp $ # USE_IMAKE= yes .include : (everything else) : .include === This looks pretty ugly though. Also it means USE_IMAKE/USE_X_PREFIX could appear in two different places, depending on whether the port needs pre/post.mk or just bsd.port.mk. I think putting it in the middle is fine, as there really aren't that many ports that need the split. Any ideas? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 03:35:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA29974 for freebsd-ports-outgoing; Sun, 8 Nov 1998 03:35:08 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from it.sivma.ru (sivmac.dialup.ru [194.87.17.172]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA29961 for ; Sun, 8 Nov 1998 03:34:58 -0800 (PST) (envelope-from FreeBSDml@sivma.ru) Received: from valeric.sivma.ru (VALERY.SIVMA.RU [10.10.10.3]) by it.sivma.ru (8.8.8/8.8.8) with SMTP id OAA08054 for ; Sun, 8 Nov 1998 14:36:04 +0300 (MSK) (envelope-from FreeBSDml@sivma.ru) Message-ID: <007801be0b0b$d8142fe0$030a0a0a@valeric.sivma.ru> From: "Sivma" To: Subject: communicator crash Date: Sun, 8 Nov 1998 14:35:01 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 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 Netscape navigator crash when I try to write in edit box in browser window. It crash because it receive signal 10 (SIGBUS). Maybe I need to change my kernel? Valery Lobachev valery@sivma.ru To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 03:44:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA00741 for freebsd-ports-outgoing; Sun, 8 Nov 1998 03:44:40 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from smtp03.wxs.nl (smtp03.wxs.nl [195.121.6.37]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA00726 for ; Sun, 8 Nov 1998 03:44:32 -0800 (PST) (envelope-from asmodai@wxs.nl) Received: from chronias.ninth-circle.org ([195.121.59.121]) by smtp03.wxs.nl (Netscape Messaging Server 3.6) with ESMTP id AAA6FE9; Sun, 8 Nov 1998 12:44:06 +0100 Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <007801be0b0b$d8142fe0$030a0a0a@valeric.sivma.ru> Date: Sun, 08 Nov 1998 12:48:06 +0100 (CET) Organization: Ninth Circle Enterprises From: Jeroen Ruigrok/Asmodai To: Sivma Subject: RE: communicator crash Cc: ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 08-Nov-98 Sivma wrote: > Netscape navigator crash when I try to write in edit box in browser window. > It crash because it receive signal 10 (SIGBUS). Maybe I need to change my > kernel? What version? Kernel and Netscape... --- Jeroen Ruigrok van der Werven/Asmodai asmodai(at)wxs.nl Junior Network/Security Specialist *BSD & picoBSD: The Power to Serve... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 03:53:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA01401 for freebsd-ports-outgoing; Sun, 8 Nov 1998 03:53:00 -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 DAA01201 for ; Sun, 8 Nov 1998 03:52:35 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca6-19.ix.netcom.com [205.186.213.19]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id DAA21038 for ; Sun, 8 Nov 1998 03:51:28 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id DAA04642; Sun, 8 Nov 1998 03:51:26 -0800 (PST) Date: Sun, 8 Nov 1998 03:51:26 -0800 (PST) Message-Id: <199811081151.DAA04642@silvia.hip.berkeley.edu> To: ports@FreeBSD.ORG In-reply-to: <199811081121.DAA04535@silvia.hip.berkeley.edu> (asami@cs.berkeley.edu) Subject: Re: bsd.port.{pre,post}.mk From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Here's a patch to bsd.port.mk itself and Makefile. I had to move some Oops, try this one. The previous one didn't propagate USE_IMAKE to USE_X_PREFIX properly. === Index: Makefile =================================================================== RCS file: /home/ncvs/src/share/mk/Makefile,v retrieving revision 1.13.2.3 diff -u -r1.13.2.3 Makefile --- Makefile 1998/05/30 22:40:58 1.13.2.3 +++ Makefile 1998/11/08 11:23:26 @@ -4,7 +4,8 @@ FILES= bsd.README FILES+= bsd.dep.mk bsd.doc.mk bsd.info.mk bsd.kern.mk bsd.kmod.mk FILES+= bsd.lib.mk bsd.libnames.mk bsd.man.mk bsd.obj.mk bsd.own.mk -FILES+= bsd.port.mk bsd.port.subdir.mk bsd.prog.mk bsd.sgml.mk bsd.subdir.mk +FILES+= bsd.port.mk bsd.port.post.mk bsd.port.pre.mk bsd.port.subdir.mk +FILES+= bsd.prog.mk bsd.sgml.mk bsd.subdir.mk FILES+= sys.mk NOOBJ= noobj Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/src/share/mk/bsd.port.mk,v retrieving revision 1.227.2.59 diff -u -r1.227.2.59 bsd.port.mk --- bsd.port.mk 1998/11/08 10:30:53 1.227.2.59 +++ bsd.port.mk 1998/11/08 11:47:00 @@ -36,6 +36,7 @@ # makefile is being used on. Automatically set to # "FreeBSD," "NetBSD," or "OpenBSD" as appropriate. # OSREL - The release version (numeric) of the operating system. +# OSVER - __FreeBSD_version. # PORTOBJFORMAT - The object format ("aout" or "elf"). # # These variables are used to identify your port. @@ -393,6 +394,9 @@ # a different checksum and you intend to verify if # the port still works with it. +# Start of pre-makefile section. +.if !defined(AFTERPORTMK) + # Get the architecture ARCH!= uname -m @@ -401,14 +405,12 @@ # Get the operating system revision OSREL!= uname -r | sed -e 's/[-(].*//' -PLIST_SUB+= OSREL=${OSREL} + +# Get __FreeBSD_version +OSVER!= sysctl -n kern.osreldate # Get the object format. PORTOBJFORMAT!= test -x /usr/bin/objformat && /usr/bin/objformat || echo aout -CONFIGURE_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} -SCRIPTS_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} -MAKE_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} -PLIST_SUB+= PORTOBJFORMAT=${PORTOBJFORMAT} # If they exist, include Makefile.inc, then architecture/operating # system specific Makefiles, then local Makefile.local. @@ -494,6 +496,31 @@ PKGDIR?= ${.CURDIR}/pkg .endif +.if defined(USE_IMAKE) +USE_X_PREFIX= yes +.endif +.if defined(USE_X_PREFIX) +USE_XLIB= yes +.endif +.if defined(USE_X_PREFIX) +PREFIX?= ${X11BASE} +.else +PREFIX?= ${LOCALBASE} +.endif + +.endif +# End of pre-makefile section. + +# Start of post-makefile section. +.if !defined(BEFOREPORTMK) + +PLIST_SUB+= OSREL=${OSREL} + +CONFIGURE_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} +SCRIPTS_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} +MAKE_ENV+= PORTOBJFORMAT=${PORTOBJFORMAT} +PLIST_SUB+= PORTOBJFORMAT=${PORTOBJFORMAT} + .if defined(MANCOMPRESSED) .if ${MANCOMPRESSED} != yes && ${MANCOMPRESSED} != no && \ ${MANCOMPRESSED} != maybe @@ -509,18 +536,6 @@ MANCOMPRESSED?= no .endif -.if defined(USE_IMAKE) -USE_X_PREFIX= yes -.endif -.if defined(USE_X_PREFIX) -USE_XLIB= yes -.endif -.if defined(USE_X_PREFIX) -PREFIX?= ${X11BASE} -.else -PREFIX?= ${LOCALBASE} -.endif - .if defined(USE_GMAKE) BUILD_DEPENDS+= gmake:${PORTSDIR}/devel/gmake .endif # Loop through several options for package building @@ -2189,3 +2209,6 @@ .if !target(tags) tags: .endif + +.endif +# End of post-makefile section. === Also, here's a real life example, graphics/xanim. === Index: Makefile =================================================================== RCS file: /home/ncvs/ports/graphics/xanim/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- Makefile 1998/09/27 09:18:30 1.15 +++ Makefile 1998/11/08 11:44:14 @@ -18,22 +18,13 @@ EXTRACT_ONLY= ${DISTNAME}.tar.gz USE_IMAKE= yes MAN1= xanim.1 -MANCOMPRESSED= yes - -post-extract: - @for file in ${EXTRA_FILES}; do \ - ${CP} ${DISTDIR}/$$file ${WRKSRC}; \ - uncompress ${WRKSRC}/$$file; \ - done - ${CP} ${WRKSRC}/docs/xanim.man ${WRKSRC} - -MAKE_ENV+= XA_IV32_DEF=-DXA_INDEO \ +MAKE_ENV= XA_IV32_DEF=-DXA_INDEO \ XA_CVID_DEF=-DXA_CINEPAK \ XA_CYUV_DEF=-DXA_CYUV -.include +.include -.if ${PORTOBJFORMAT} != elf +.if ${PORTOBJFORMAT} == aout EXTRA_FILES= xa2.0_cvid_netbsd386.o.Z xa2.0_iv32_netbsd386.o.Z \ xa1.0_cyuv_netbsd386.o.Z MAKE_ENV+= XA_IV32_LIB=xa2.0_cvid_netbsd386.o \ @@ -46,3 +37,12 @@ XA_CVID_LIB=xa2.0_iv32_linuxELF.o \ XA_CYUV_LIB=xa1.0_cyuv_linuxELF.o .endif + +post-extract: + @for file in ${EXTRA_FILES}; do \ + ${CP} ${DISTDIR}/$$file ${WRKSRC}; \ + uncompress ${WRKSRC}/$$file; \ + done + ${CP} ${WRKSRC}/docs/xanim.man ${WRKSRC} + +.include === (The stupid diff thinks I moved post-extract but actually I moved the EXTRA_FILES= and MAKE_ENV+= lines.) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 04:20:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA06314 for freebsd-ports-outgoing; Sun, 8 Nov 1998 04:20: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 EAA06299 for ; Sun, 8 Nov 1998 04:19:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA25281; Sun, 8 Nov 1998 04:20:00 -0800 (PST) Date: Sun, 8 Nov 1998 04:20:00 -0800 (PST) Message-Id: <199811081220.EAA25281@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Tom Hukins Subject: Re: ports/8393: klyx can not create new documents Reply-To: Tom Hukins Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/8393; it has been noted by GNATS. From: Tom Hukins To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/8393: klyx can not create new documents Date: Sun, 8 Nov 1998 12:10:42 +0000 > The entry "new" form the file menu doesn't create a new document but > open the open dialog requesting an existing lyx file. Upgrading the KLyX port (see ports/8579) should solve this problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 04:20:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA06313 for freebsd-ports-outgoing; Sun, 8 Nov 1998 04:20: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 EAA06300 for ; Sun, 8 Nov 1998 04:19:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA25286; Sun, 8 Nov 1998 04:20:01 -0800 (PST) Date: Sun, 8 Nov 1998 04:20:01 -0800 (PST) Message-Id: <199811081220.EAA25286@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Tom Hukins Subject: Re: ports/7853: new port klyx v0.9.7 Reply-To: Tom Hukins Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7853; it has been noted by GNATS. From: Tom Hukins To: freebsd-gnats-submit@freebsd.org Cc: Subject: Re: ports/7853: new port klyx v0.9.7 Date: Sun, 8 Nov 1998 12:12:07 +0000 This PR should be closed. It has been superceded by ports/8579. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 07:14:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA19560 for freebsd-ports-outgoing; Sun, 8 Nov 1998 07:14:03 -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 HAA19538; Sun, 8 Nov 1998 07:13:58 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA00798; Sun, 8 Nov 1998 07:14:01 -0800 (PST) Date: Sun, 8 Nov 1998 07:14:01 -0800 (PST) Message-Id: <199811081514.HAA00798@freefall.freebsd.org> To: taoka@infonets.hiroshima-u.ac.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8024 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: misc/p5-mkttfdir.pl State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Sun Nov 8 07:13:43 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 Nov 8 07:21:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA19928 for freebsd-ports-outgoing; Sun, 8 Nov 1998 07:21:20 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from bachue.usc.unal.edu.co (bachue.usc.unal.edu.co [168.176.3.20]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA19923 for ; Sun, 8 Nov 1998 07:21:19 -0800 (PST) (envelope-from pfgiffun@bachue.usc.unal.edu.co) Received: from bachue.usc.unal.edu.co ([168.176.3.48]) by bachue.usc.unal.edu.co (Netscape Messaging Server 3.0) with ESMTP id AAA5802 for ; Sun, 8 Nov 1998 10:24:00 +0500 Message-ID: <3645B755.6C1EC4FA@bachue.usc.unal.edu.co> Date: Sun, 08 Nov 1998 10:23:01 -0500 From: "Pedro F. Giffuni" Organization: U. Nacional de Colombia X-Mailer: Mozilla 4.05 [en] (X11; U; FreeBSD 2.2.7-RELEASE i386) MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: Anyone interested in FreeWAIS-sf ?? Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Howdy, I have two problems maintaining FreeWAIS-sf: 1) It seems like our old port was an unofficial release, and the site that carried it has disappeared. 2) The latest version doesn't build on FreeBSD-2.2.7 (might work on current but I'm not sure). I don't use this anymore, I'd be grateful if an interested party wants to take over the port.The latest version is available at: ftp://ftp.leo.org/pub/comp/general/infosys/wais/freeWAIS/freeWAI S-sf-2.2/ ftp://ftp.germany.eu.net/pub/infosystems/wais/Unido-LS6/freeWAIS -sf-2.2/ it is unsupported. If there is no one interested in this I'll leave the old port as is, and wait for it to die :-(. Pedro. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 07:39:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA21273 for freebsd-ports-outgoing; Sun, 8 Nov 1998 07:39:59 -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 HAA21266 for ; Sun, 8 Nov 1998 07:39:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA01727; Sun, 8 Nov 1998 07:40:00 -0800 (PST) Received: from point.osg.gov.bc.ca (point.osg.gov.bc.ca [142.32.102.44]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA20742 for ; Sun, 8 Nov 1998 07:31:31 -0800 (PST) (envelope-from cy@cschuber.net.gov.bc.ca) Received: (from daemon@localhost) by point.osg.gov.bc.ca (8.9.1/8.8.8) id HAA07918 for ; Sun, 8 Nov 1998 07:31:18 -0800 Received: from passer.osg.gov.bc.ca(142.32.110.29) via SMTP by point.osg.gov.bc.ca, id smtpda07916; Sun Nov 8 07:31:04 1998 Received: (from uucp@localhost) by passer.osg.gov.bc.ca (8.9.1/8.9.1) id HAA01972 for ; Sun, 8 Nov 1998 07:31:04 -0800 (PST) Received: from cschuber.net.gov.bc.ca(142.31.240.113), claiming to be "cwsys.cwsent.com" via SMTP by passer.osg.gov.bc.ca, id smtpdAO1970; Sun Nov 8 07:30:14 1998 Received: (from cy@localhost) by cwsys.cwsent.com (8.9.1/8.9.1) id HAA09198; Sun, 8 Nov 1998 07:30:12 -0800 (PST) Message-Id: <199811081530.HAA09198@cwsys.cwsent.com> Date: Sun, 8 Nov 1998 07:30:12 -0800 (PST) From: cschuber@uumail.gov.bc.ca Reply-To: cschuber@uumail.gov.bc.ca To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8601: krb5kdc from krb5 port bus error Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8601 >Category: ports >Synopsis: krb5 port krb5kdc bus errror >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 8 07:40:00 PST 1998 >Last-Modified: >Originator: Cy Schubert >Organization: ITSD, Province of British Columbia >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: FreeBSD cwsys 2.2.7-RELEASE FreeBSD 2.2.7-RELEASE #0: Sat Oct 31 09:57:33 PST 1998 root@cwsys:/opt/usr_src/sys/compile/CWSYS i386 >Description: krb5kdc has a bus error. Running it like, krb5kdc or /usr/local/krb5/sbin/krb5kdc causes it to fail on a bus error. A circumvention is: LD__LIBRARY_PATH=/usr/local/krb5/lib:/usr/lib krb5kdc krb5kdc works, e.g. no bus error and serves tickets, when compiled with virgin MIT code and also works when compiled with Dima Rubin's patches on burka.rdy.com. >How-To-Repeat: See description. >Fix: See description for circumvention. Altering patch-ab to sort (lorder $FILES | tsort -q) the list of files in the shared library has no effect on fixing the problem. patch-ab uses ld instead of cc to link. Is it possible that the manner in which cc calls ld, e.g. arguments, as opposed to the manner used in patch-ab is responsible. I may try to completely replace patch-ab with the portion of Dima Rubin's patch that performs the same. Next plan of action, will be to remove or take a look at patch-aa, patch-am, and/or patch-aw. >Audit-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 Nov 8 08:08:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA23159 for freebsd-ports-outgoing; Sun, 8 Nov 1998 08:08:42 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from alpha.xerox.com (omega.Xerox.COM [13.1.64.95]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id IAA23152; Sun, 8 Nov 1998 08:08:39 -0800 (PST) (envelope-from fenner@parc.xerox.com) Received: from mango.parc.xerox.com ([13.1.102.232]) by alpha.xerox.com with SMTP id <430733(3)>; Sun, 8 Nov 1998 08:08:15 PST Received: from mango.parc.xerox.com (localhost.parc.xerox.com [127.0.0.1]) by mango.parc.xerox.com (8.8.8/8.8.8) with ESMTP id IAA29205; Sun, 8 Nov 1998 08:08:12 -0800 (PST) (envelope-from fenner@mango.parc.xerox.com) Message-Id: <199811081608.IAA29205@mango.parc.xerox.com> To: asami@FreeBSD.ORG (Satoshi Asami) cc: fenner@parc.xerox.com, ports@FreeBSD.ORG Subject: Re: cvs commit: ports/misc/display Makefile In-reply-to: Your message of "Sat, 07 Nov 1998 16:33:16 PST." <199811080033.QAA03013@silvia.hip.berkeley.edu> Date: Sun, 8 Nov 1998 08:08:12 PST From: Bill Fenner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199811080033.QAA03013@silvia.hip.berkeley.edu>you write: >And the one that the distfile survey was getting was an old version. I'm confused. It was the one on the MASTER_SITE that you claimed not to be able to fetch. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 08:10:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA23398 for freebsd-ports-outgoing; Sun, 8 Nov 1998 08:10:26 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from iconmail.bellatlantic.net (iconmail.bellatlantic.net [199.173.162.30]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA23376; Sun, 8 Nov 1998 08:10:22 -0800 (PST) (envelope-from dmm125@bellatlantic.net) Received: from client201-122-14.bellatlantic.net (client201-122-14.bellatlantic.net [151.201.122.14]) by iconmail.bellatlantic.net (IConNet Sendmail) with ESMTP id LAA26093; Sun, 8 Nov 1998 11:06:36 -0500 (EST) Newsgroups: comp.unix.bsd.freebsd.misc Date: Sun, 8 Nov 1998 11:05:27 +0000 (GMT) From: Donn Miller X-Sender: dmm125@localhost To: ports@FreeBSD.ORG, current@FreeBSD.ORG Subject: Ports/patches for X332servonly 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 Just trying to find out if anyone did a port and/or patch for X332servonly.tgz. It's like the full source for XFree86 but it doesn't include the stuff for building shared libs. I need the source code so I can modify it to make a driver for my chipset, which is unsupported. BTW, building XFree86 from sratch is pretty nasty. One minor change to any of the config files in xc/config/cf sometimes throws the whole build out of whack. The shared/static libs build OK, but when it comes time to link all the object files and libs together to produce the X-server, massive amounts of errors about "undefined reference to ..." come pouring out like crazy. This is in the subdir xc/programs/Xserver/hw... I tried building it w/out changing any source at first, just to see if it would compile, and it won't compile. So anyone successfully built the XFree86 servers from source on 3.0-R? Thanks for any help you can provide, Donn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 08:13:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA23868 for freebsd-ports-outgoing; Sun, 8 Nov 1998 08:13:00 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from istari.home.net (cc158233-a.catv1.md.home.com [24.3.25.17]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA23859; Sun, 8 Nov 1998 08:12:58 -0800 (PST) (envelope-from sjr@home.net) Received: (from sjr@localhost) by istari.home.net (8.9.1/8.8.6) id LAA00823; Sun, 8 Nov 1998 11:12:46 -0500 (EST) Date: Sun, 8 Nov 1998 11:12:46 -0500 (EST) From: "Stephen J. Roznowski" Message-Id: <199811081612.LAA00823@istari.home.net> To: asami@FreeBSD.ORG Subject: Re: cvs commit: ports/misc/display Makefile In-Reply-To: Mail from 'asami@FreeBSD.ORG (Satoshi Asami)' dated: Sat, 7 Nov 1998 19:18:11 -0800 (PST) Cc: ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > From: asami@FreeBSD.ORG (Satoshi Asami) > > * Could we add the following to bsd.port.mk (if there are other sites, they > * should be added also...): > * > * MASTER_SITE_COMP_SOURCES_MISC+= > * ftp://gatekeeper.dec.com/pub/usenet/comp.sources.misc/%SUBDIR%/ \ > * ftp://ftp.uu.net/usenet/comp.sources.misc/%SUBDIR%/ \ > * ftp://rtfm.mit.edu/pub/usenet/comp.sources.misc/%SUBDIR%/ > * > * MASTER_SITE_COMP_SOURCES_UNIX+= > * ftp://gatekeeper.dec.com/pub/usenet/comp.sources.unix/%SUBDIR%/ \ > * ftp://ftp.uu.net/usenet/comp.sources.unix/%SUBDIR%/ \ > * ftp://rtfm.mit.edu/pub/usenet/comp.sources.unix/%SUBDIR%/ > > Sure, if there are more than a couple of ports that need those. A quick grep of /usr/ports/* shows: comp.sources.x - 4 ports comp.sources.unix - 4 ports [plus at least one that hasn't been committed] Seems like enough for me... :-) Also, the following additional sites seem available: ftp://ftp.lth.se/pub/usenet/comp.sources.unix ftp://ftp.digital.com/pub/usenet/comp.sources.unix ftp://ftp.isnet.is/pub/Usenet/Usenet.src/comp.sources.unix ftp://ftp.wustl.edu/usenet/comp.sources.unix ftp://ftp.lab.kdd.co.jp/Usenet/comp.sources.x ftp://ftp.leo.org:/pub/comp/usenet/comp.sources.x but I haven't verified that these really exist. Thanks, -SR To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 08:29:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA24930 for freebsd-ports-outgoing; Sun, 8 Nov 1998 08:29:24 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from alpha.xerox.com (omega.Xerox.COM [13.1.64.95]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id IAA24924; Sun, 8 Nov 1998 08:29:23 -0800 (PST) (envelope-from fenner@parc.xerox.com) Received: from mango.parc.xerox.com ([13.1.102.232]) by alpha.xerox.com with SMTP id <430762(4)>; Sun, 8 Nov 1998 08:28:58 PST Received: from mango.parc.xerox.com (localhost.parc.xerox.com [127.0.0.1]) by mango.parc.xerox.com (8.8.8/8.8.8) with ESMTP id IAA29451; Sun, 8 Nov 1998 08:28:55 -0800 (PST) (envelope-from fenner@mango.parc.xerox.com) Message-Id: <199811081628.IAA29451@mango.parc.xerox.com> To: asami@FreeBSD.ORG (Satoshi Asami) cc: sjr@home.net, fenner@parc.xerox.com, ports@FreeBSD.ORG Subject: Re: cvs commit: ports/misc/display Makefile In-reply-to: Your message of "Sat, 07 Nov 1998 19:18:11 PST." <199811080318.TAA14446@bubble.didi.com> Date: Sun, 8 Nov 1998 08:28:55 PST From: Bill Fenner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199811080318.TAA14446@bubble.didi.com>you write: >Sure, if there are more than a couple of ports that need those. 3 ports (display, mmv, fping) use comp.sources.unix . 2 ports (xengine and xteddy) use comp.sources.x . None appear to use comp.sources.misc . Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 08:50:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA26979 for freebsd-ports-outgoing; Sun, 8 Nov 1998 08:50:45 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from alpha.xerox.com (omega.Xerox.COM [13.1.64.95]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id IAA26973; Sun, 8 Nov 1998 08:50:42 -0800 (PST) (envelope-from fenner@parc.xerox.com) Received: from mango.parc.xerox.com ([13.1.102.232]) by alpha.xerox.com with SMTP id <430772(3)>; Sun, 8 Nov 1998 08:50:23 PST Received: from mango.parc.xerox.com (localhost.parc.xerox.com [127.0.0.1]) by mango.parc.xerox.com (8.8.8/8.8.8) with ESMTP id IAA29632; Sun, 8 Nov 1998 08:50:16 -0800 (PST) (envelope-from fenner@mango.parc.xerox.com) Message-Id: <199811081650.IAA29632@mango.parc.xerox.com> To: Bill Fenner cc: asami@FreeBSD.ORG (Satoshi Asami), ports@FreeBSD.ORG Subject: Re: cvs commit: ports/misc/display Makefile In-reply-to: Your message of "Sun, 08 Nov 1998 08:08:12 PST." <199811081608.IAA29205@mango.parc.xerox.com> Date: Sun, 8 Nov 1998 08:50:15 PST From: Bill Fenner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Oh, I get it, the one that the ports survey succeeded in fetching for the last year was the auto-uncompressed version of the compressed file on the FTP server, and you changed the port to BROKEN after the port was changed to fetch the compressed version. However, whatever you experienced must have been a temporary outage, since a) removing the "BROKEN=" from the port and typing "make install" works, and b) the distfile checker succeeded in fetching the compressed file on Monday shortly after the port was modified. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 11:10:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA09057 for freebsd-ports-outgoing; Sun, 8 Nov 1998 11:10:05 -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 LAA08995 for ; Sun, 8 Nov 1998 11:09:59 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA09443; Sun, 8 Nov 1998 11:10:02 -0800 (PST) Received: from mail4.svr.freeserve.net (mail4.svr.freeserve.net [195.92.193.211]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA08913 for ; Sun, 8 Nov 1998 11:08:35 -0800 (PST) (envelope-from tom@eborcom.com) Received: from modem-70.aspirin.dialup.pol.co.uk ([62.136.53.70]) by mail4.svr.freeserve.net with esmtp (Exim 2.05iplimit-2 #5) id 0zcaC9-0007qW-00 for FreeBSD-gnats-submit@freebsd.org; Sun, 8 Nov 1998 19:08:17 +0000 Received: (qmail 28619 invoked by uid 5000); 8 Nov 1998 19:02:47 -0000 Message-Id: <19981108190247.28618.qmail@eborcom.com> Date: 8 Nov 1998 19:02:47 -0000 From: tom@eborcom.com Reply-To: tom@eborcom.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8606: update port: www/linux-netscape4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8606 >Category: ports >Synopsis: update port: www/linux-netscape4 >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sun Nov 8 11:10:01 PST 1998 >Last-Modified: >Originator: Tom Hukins >Organization: eBORcOM >Release: FreeBSD 2.2.7-STABLE i386 >Environment: >Description: The www/linux-netscape4 port is broken. Its distfile cannot be fetched. I have fixed the port, upgrading it from version 4.05 to 4.08. I have also changed the port's maintainer from ports@freebsd.org to myself. >How-To-Repeat: >Fix: diff -ruN linux-netscape4.bak/Makefile linux-netscape4/Makefile --- linux-netscape4.bak/Makefile Tue Jun 16 23:30:24 1998 +++ linux-netscape4/Makefile Sun Nov 8 18:53:40 1998 @@ -1,22 +1,23 @@ # New ports collection makefile for: linux-netscape4 -# Version required: 4.05 +# Version required: 4.08 # Date created: 24 Feb 1997 # Whom: ache # -# $Id: Makefile,v 1.5 1998/06/16 13:34:24 asami Exp $ +# $Id$ # -DISTNAME= linux-netscape-4.05 +DISTNAME= linux-netscape-4.08 CATEGORIES= www -MASTER_SITES= ftp://ftp.netscape.com/pub/communicator/4.05/shipping/english/unix/linux12/base_install/ -DISTFILES= communicator-v405-export.x86-unknown-linux1.2.tar.gz +MASTER_SITES= ftp://ftp.netscape.com/pub/communicator/4.08/english/unix/supported/linux12/base_install/ \ + ftp://sunsite.doc.ic.ac.uk/Mirrors/ftp.netscape.com/pub/communicator/4.08/english/unix/supported/linux12/base_install/ +DISTFILES= communicator-v408-export.x86-unknown-linux1.2.tar.gz -MAINTAINER= ports@FreeBSD.ORG +MAINTAINER= tom@eborcom.com RUN_DEPENDS= /compat/linux/lib/ld.so:${PORTSDIR}/emulators/linux_lib BUILD_DEPENDS= /compat/linux/lib/ld.so:${PORTSDIR}/emulators/linux_lib -WRKSRC= ${WRKDIR}/communicator-v405.x86-unknown-linux1.2 +WRKSRC= ${WRKDIR}/communicator-v408.x86-unknown-linux1.2 NO_BUILD= Yes NDIR= ${PREFIX}/lib/netscape @@ -25,12 +26,12 @@ do-install: cd ${WRKSRC} && yes "" | \ LC_TIME=C MOZILLA_HOME="${NDIR}" ./ns-install - mv ${NDIR}/netscape ${NDIR}/netscape.bin + ${MV} ${NDIR}/netscape ${NDIR}/netscape.bin ${INSTALL_SCRIPT} ${WRKSRC}/netscape ${BINDIR} if [ ! -f ${NDIR}/mailcap ] ; then \ ${INSTALL_DATA} ${FILESDIR}/mailcap ${NDIR}; \ fi - rm -rf ${NDIR}/nls ${NDIR}/movemail-src ${NDIR}/XKeysymDB + ${RM} -rf ${NDIR}/nls ${NDIR}/movemail-src ${NDIR}/XKeysymDB chown -R bin.bin ${NDIR} post-install: diff -ruN linux-netscape4.bak/files/md5 linux-netscape4/files/md5 --- linux-netscape4.bak/files/md5 Wed Jun 10 23:31:47 1998 +++ linux-netscape4/files/md5 Sun Nov 8 17:04:03 1998 @@ -1 +1 @@ -MD5 (communicator-v405-export.x86-unknown-linux1.2.tar.gz) = 5866bdeea20fa9ec1e7b3a472a04f19f +MD5 (communicator-v408-export.x86-unknown-linux1.2.tar.gz) = 192ca548aab9c9951d7e0bbc188a6f7e diff -ruN linux-netscape4.bak/patches/patch-aa linux-netscape4/patches/patch-aa --- linux-netscape4.bak/patches/patch-aa Thu Jul 3 02:06:24 1997 +++ linux-netscape4/patches/patch-aa Sun Nov 8 17:33:56 1998 @@ -1,41 +1,25 @@ -*** ns-install.orig Tue Jul 1 23:22:18 1997 ---- ns-install Wed Jul 2 22:55:02 1997 -*************** -*** 103,108 **** ---- 103,109 ---- - # Even though the user has already used gzip to extract the file (or - # we wouldn't be here), make sure we can find it. - # -+ unset GZIP - GZIP="gzip" - flag=1 - while test ${flag} -eq 1 -*************** -*** 264,276 **** - # Is this a virgin install? If so, create the .netscape dir - # and put the default bookmark file in it. - # -! if test ! -d ${HOME}/.netscape -! then -! # New install, or upgrade from 0.x or 1.x. -! mkdir ${HOME}/.netscape -! cp ${TARGET}/bookmark.htm ${HOME}/.netscape/bookmarks.html -! echo "${HOME}/.netscape/bookmarks.html" >> ${LOGFILE} -! fi - fi - - echo "" ---- 265,277 ---- - # Is this a virgin install? If so, create the .netscape dir - # and put the default bookmark file in it. - # -! # if test ! -d ${HOME}/.netscape -! # then -! # # New install, or upgrade from 0.x or 1.x. -! # mkdir ${HOME}/.netscape -! # cp ${TARGET}/bookmark.htm ${HOME}/.netscape/bookmarks.html -! # echo "${HOME}/.netscape/bookmarks.html" >> ${LOGFILE} -! # fi - fi - - echo "" +--- ns-install.orig Tue Nov 3 22:27:09 1998 ++++ ns-install Sun Nov 8 17:33:36 1998 +@@ -120,6 +120,7 @@ + # Even though the user has already used gzip to extract the file (or + # we wouldn't be here), make sure we can find it. + # ++unset GZIP + GZIP="gzip" + flag=1 + while test ${flag} -eq 1 +@@ -324,14 +325,6 @@ + # Is this a virgin install? If so, create the .netscape dir + # and put the default bookmark file in it. + # +- if test ! -d ${HOME}/.netscape +- then +- # New install, or upgrade from 0.x or 1.x. +- mkdir ${HOME}/.netscape +- cp ${TARGET}/bookmark.htm ${HOME}/.netscape/bookmarks.html +- chmod 644 ${HOME}/.netscape/bookmarks.html +- echo "${HOME}/.netscape/bookmarks.html" >> ${LOGFILE} +- fi + fi + + echo "" diff -ruN linux-netscape4.bak/pkg/DIRS linux-netscape4/pkg/DIRS --- linux-netscape4.bak/pkg/DIRS Thu Jan 1 01:00:00 1970 +++ linux-netscape4/pkg/DIRS Sun Nov 8 18:48:11 1998 @@ -0,0 +1,15 @@ +@dirrm lib/netscape/spell lib/netscape/nethelp/netscape/shared +@dirrm lib/netscape/nethelp/netscape/nscal +@dirrm lib/netscape/nethelp/netscape/netcastr +@dirrm lib/netscape/nethelp/netscape/navigatr +@dirrm lib/netscape/nethelp/netscape/messengr +@dirrm lib/netscape/nethelp/netscape/home +@dirrm lib/netscape/nethelp/netscape/confernc +@dirrm lib/netscape/nethelp/netscape/composer +@dirrm lib/netscape/nethelp/netscape/collabra lib/netscape/nethelp/netscape +@dirrm lib/netscape/nethelp lib/netscape/java/classes/irix +@dirrm lib/netscape/java/classes/hpux lib/netscape/java/classes/aix +@dirrm lib/netscape/java/classes.old/irix lib/netscape/java/classes.old/hpux +@dirrm lib/netscape/java/classes.old/aix lib/netscape/java/classes.old +@dirrm lib/netscape/java/classes lib/netscape/java lib/netscape/ + diff -ruN linux-netscape4.bak/pkg/PLIST linux-netscape4/pkg/PLIST --- linux-netscape4.bak/pkg/PLIST Tue Sep 23 21:50:39 1997 +++ linux-netscape4/pkg/PLIST Sun Nov 8 18:48:37 1998 @@ -1,17 +1,123 @@ -bin/netscape -lib/netscape/LICENSE lib/netscape/README -lib/netscape/netscape.bin +lib/netscape/LICENSE lib/netscape/mailcap +lib/netscape/Netscape.ad lib/netscape/movemail lib/netscape/bookmark.htm -lib/netscape/Netscape.ad +lib/netscape/java/classes/awt.properties +lib/netscape/java/classes/font.properties +lib/netscape/java/classes/font.properties.cs +lib/netscape/java/classes/font.properties.el +lib/netscape/java/classes/font.properties.hu +lib/netscape/java/classes/font.properties.ja +lib/netscape/java/classes/font.properties.ko +lib/netscape/java/classes/font.properties.lt +lib/netscape/java/classes/font.properties.lv +lib/netscape/java/classes/font.properties.pl +lib/netscape/java/classes/font.properties.ru +lib/netscape/java/classes/font.properties.tr +lib/netscape/java/classes/font.properties.zh +lib/netscape/java/classes/font.properties.zh_GB2312 +lib/netscape/java/classes/font.properties.zh_TW +lib/netscape/java/classes/font.properties.zh_TW_Big5 +lib/netscape/java/classes/aix/font.properties +lib/netscape/java/classes/aix/font.properties.cs +lib/netscape/java/classes/aix/font.properties.hu +lib/netscape/java/classes/aix/font.properties.ja +lib/netscape/java/classes/aix/font.properties.ko +lib/netscape/java/classes/aix/font.properties.pl +lib/netscape/java/classes/aix/font.properties.ru +lib/netscape/java/classes/aix/font.properties.zh +lib/netscape/java/classes/aix/font.properties.zh_TW +lib/netscape/java/classes/hpux/font.properties +lib/netscape/java/classes/hpux/font.properties.bg +lib/netscape/java/classes/hpux/font.properties.cs +lib/netscape/java/classes/hpux/font.properties.el +lib/netscape/java/classes/hpux/font.properties.hr +lib/netscape/java/classes/hpux/font.properties.hu +lib/netscape/java/classes/hpux/font.properties.ja +lib/netscape/java/classes/hpux/font.properties.ko +lib/netscape/java/classes/hpux/font.properties.pl +lib/netscape/java/classes/hpux/font.properties.ro +lib/netscape/java/classes/hpux/font.properties.ru +lib/netscape/java/classes/hpux/font.properties.sk +lib/netscape/java/classes/hpux/font.properties.sl +lib/netscape/java/classes/hpux/font.properties.tr +lib/netscape/java/classes/hpux/font.properties.zh_GB2312 +lib/netscape/java/classes/hpux/font.properties.zh_TW_Big5 +lib/netscape/java/classes/hpux/font.properties.zh_TW_CNS11643 +lib/netscape/java/classes/font.properties.zh_TW_CNS11643 +lib/netscape/java/classes/irix/font.properties +lib/netscape/java/classes/irix/font.properties.cs +lib/netscape/java/classes/irix/font.properties.el +lib/netscape/java/classes/irix/font.properties.hu +lib/netscape/java/classes/irix/font.properties.ja +lib/netscape/java/classes/irix/font.properties.ko +lib/netscape/java/classes/irix/font.properties.zh_GB2312 +lib/netscape/java/classes/irix/font.properties.zh_TW_Big5 +lib/netscape/java/classes/irix/font.properties.zh_TW_CNS11643 lib/netscape/java/classes/ifc11.jar lib/netscape/java/classes/iiop10.jar lib/netscape/java/classes/jae40.jar lib/netscape/java/classes/java40.jar lib/netscape/java/classes/jio40.jar lib/netscape/java/classes/jsd10.jar +lib/netscape/java/classes/ldap10.jar +lib/netscape/java/classes/scd10.jar +lib/netscape/java/classes.old/awt.properties +lib/netscape/java/classes.old/font.properties +lib/netscape/java/classes.old/font.properties.cs +lib/netscape/java/classes.old/font.properties.el +lib/netscape/java/classes.old/font.properties.hu +lib/netscape/java/classes.old/font.properties.ja +lib/netscape/java/classes.old/font.properties.ko +lib/netscape/java/classes.old/font.properties.lt +lib/netscape/java/classes.old/font.properties.lv +lib/netscape/java/classes.old/font.properties.pl +lib/netscape/java/classes.old/font.properties.ru +lib/netscape/java/classes.old/font.properties.tr +lib/netscape/java/classes.old/font.properties.zh +lib/netscape/java/classes.old/font.properties.zh_GB2312 +lib/netscape/java/classes.old/font.properties.zh_TW +lib/netscape/java/classes.old/font.properties.zh_TW_Big5 +lib/netscape/java/classes.old/aix/font.properties +lib/netscape/java/classes.old/aix/font.properties.cs +lib/netscape/java/classes.old/aix/font.properties.hu +lib/netscape/java/classes.old/aix/font.properties.ja +lib/netscape/java/classes.old/aix/font.properties.ko +lib/netscape/java/classes.old/aix/font.properties.pl +lib/netscape/java/classes.old/aix/font.properties.ru +lib/netscape/java/classes.old/aix/font.properties.zh +lib/netscape/java/classes.old/aix/font.properties.zh_TW +lib/netscape/java/classes.old/hpux/font.properties +lib/netscape/java/classes.old/hpux/font.properties.bg +lib/netscape/java/classes.old/hpux/font.properties.cs +lib/netscape/java/classes.old/hpux/font.properties.el +lib/netscape/java/classes.old/hpux/font.properties.hr +lib/netscape/java/classes.old/hpux/font.properties.hu +lib/netscape/java/classes.old/hpux/font.properties.ja +lib/netscape/java/classes.old/hpux/font.properties.ko +lib/netscape/java/classes.old/hpux/font.properties.pl +lib/netscape/java/classes.old/hpux/font.properties.ro +lib/netscape/java/classes.old/hpux/font.properties.ru +lib/netscape/java/classes.old/hpux/font.properties.sk +lib/netscape/java/classes.old/hpux/font.properties.sl +lib/netscape/java/classes.old/hpux/font.properties.tr +lib/netscape/java/classes.old/hpux/font.properties.zh_GB2312 +lib/netscape/java/classes.old/hpux/font.properties.zh_TW_Big5 +lib/netscape/java/classes.old/hpux/font.properties.zh_TW_CNS11643 +lib/netscape/java/classes.old/font.properties.zh_TW_CNS11643 +lib/netscape/java/classes.old/irix/font.properties +lib/netscape/java/classes.old/irix/font.properties.cs +lib/netscape/java/classes.old/irix/font.properties.el +lib/netscape/java/classes.old/irix/font.properties.hu +lib/netscape/java/classes.old/irix/font.properties.ja +lib/netscape/java/classes.old/irix/font.properties.ko +lib/netscape/java/classes.old/irix/font.properties.zh_GB2312 +lib/netscape/java/classes.old/irix/font.properties.zh_TW_Big5 +lib/netscape/java/classes.old/irix/font.properties.zh_TW_CNS11643 +lib/netscape/java/classes.old/ldap10.jar +lib/netscape/java/classes.old/scd10.jar lib/netscape/nethelp/Back_dep.gif lib/netscape/nethelp/Back_dis.gif lib/netscape/nethelp/Back_sel.gif @@ -30,6 +136,7 @@ lib/netscape/nethelp/Tool_sel.gif lib/netscape/nethelp/Tool_up.gif lib/netscape/nethelp/Wait.gif +lib/netscape/nethelp/netwatch.gif lib/netscape/nethelp/Blank.htm lib/netscape/nethelp/CntTool.htm lib/netscape/nethelp/IdxFill.htm @@ -42,6 +149,8 @@ lib/netscape/nethelp/Status.htm lib/netscape/nethelp/System.htm lib/netscape/nethelp/ToolUI.htm +lib/netscape/nethelp/picsfail.htm +lib/netscape/nethelp/picsfail.jar lib/netscape/nethelp/Button.js lib/netscape/nethelp/CntData.js lib/netscape/nethelp/CntTool.js @@ -114,3 +223,20 @@ lib/netscape/spell/netscape.dic lib/netscape/spell/pen4s324.dat lib/netscape/vreg +lib/netscape/registry +lib/netscape/netscape.bin +lib/netscape/vreg.old +@dirrm lib/netscape/spell lib/netscape/nethelp/netscape/shared +@dirrm lib/netscape/nethelp/netscape/nscal +@dirrm lib/netscape/nethelp/netscape/netcastr +@dirrm lib/netscape/nethelp/netscape/navigatr +@dirrm lib/netscape/nethelp/netscape/messengr +@dirrm lib/netscape/nethelp/netscape/home +@dirrm lib/netscape/nethelp/netscape/confernc +@dirrm lib/netscape/nethelp/netscape/composer +@dirrm lib/netscape/nethelp/netscape/collabra lib/netscape/nethelp/netscape +@dirrm lib/netscape/nethelp lib/netscape/java/classes/irix +@dirrm lib/netscape/java/classes/hpux lib/netscape/java/classes/aix +@dirrm lib/netscape/java/classes.old/irix lib/netscape/java/classes.old/hpux +@dirrm lib/netscape/java/classes.old/aix lib/netscape/java/classes.old +@dirrm lib/netscape/java/classes lib/netscape/java lib/netscape/ >Audit-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 Nov 8 12:36:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18355 for freebsd-ports-outgoing; Sun, 8 Nov 1998 12:36:22 -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 MAA18346 for ; Sun, 8 Nov 1998 12:36:19 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca6-19.ix.netcom.com [205.186.213.19]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id MAA21539; Sun, 8 Nov 1998 12:36:04 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id MAA15566; Sun, 8 Nov 1998 12:36:00 -0800 (PST) (envelope-from asami) Date: Sun, 8 Nov 1998 12:36:00 -0800 (PST) Message-Id: <199811082036.MAA15566@bubble.didi.com> To: fenner@parc.xerox.com CC: fenner@parc.xerox.com, ports@FreeBSD.ORG In-reply-to: <199811081608.IAA29205@mango.parc.xerox.com> (message from Bill Fenner on Sun, 8 Nov 1998 08:08:12 PST) Subject: Re: cvs commit: ports/misc/display Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * In message <199811080033.QAA03013@silvia.hip.berkeley.edu>you write: * >And the one that the distfile survey was getting was an old version. * * I'm confused. It was the one on the MASTER_SITE that you claimed * not to be able to fetch. Yes. The master site may have been up before, but it was down after the Makefile was updated. And it has been down for many hours, more time than I can afford to spend. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 12:56:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA20745 for freebsd-ports-outgoing; Sun, 8 Nov 1998 12:56:55 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from alpha.xerox.com (omega.Xerox.COM [13.1.64.95]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id MAA20735; Sun, 8 Nov 1998 12:56:54 -0800 (PST) (envelope-from fenner@parc.xerox.com) Received: from mango.parc.xerox.com ([13.1.102.232]) by alpha.xerox.com with SMTP id <430858(3)>; Sun, 8 Nov 1998 12:56:38 PST Received: from mango.parc.xerox.com (localhost.parc.xerox.com [127.0.0.1]) by mango.parc.xerox.com (8.8.8/8.8.8) with ESMTP id MAA01040; Sun, 8 Nov 1998 12:56:34 -0800 (PST) (envelope-from fenner@mango.parc.xerox.com) Message-Id: <199811082056.MAA01040@mango.parc.xerox.com> To: asami@FreeBSD.ORG (Satoshi Asami) cc: fenner@parc.xerox.com, ports@FreeBSD.ORG Subject: Re: cvs commit: ports/misc/display Makefile In-reply-to: Your message of "Sun, 08 Nov 1998 12:36:00 PST." <199811082036.MAA15566@bubble.didi.com> Date: Sun, 8 Nov 1998 12:56:34 PST From: Bill Fenner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In message <199811082036.MAA15566@bubble.didi.com> you write: >Yes. The master site may have been up before, but it was down after >the Makefile was updated. And it has been down for many hours, more >time than I can afford to spend. I guess I just don't understand why you have to mark a port BROKEN if it's not fetchable during the time that you have available to try to fetch it. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 13:08:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA21983 for freebsd-ports-outgoing; Sun, 8 Nov 1998 13:08:26 -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 NAA21975 for ; Sun, 8 Nov 1998 13:08:25 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca6-19.ix.netcom.com [205.186.213.19]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id NAA21569; Sun, 8 Nov 1998 13:08:03 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id NAA15636; Sun, 8 Nov 1998 13:07:59 -0800 (PST) (envelope-from asami) Date: Sun, 8 Nov 1998 13:07:59 -0800 (PST) Message-Id: <199811082107.NAA15636@bubble.didi.com> To: fenner@parc.xerox.com CC: fenner@parc.xerox.com, ports@FreeBSD.ORG In-reply-to: <199811082056.MAA01040@mango.parc.xerox.com> (message from Bill Fenner on Sun, 8 Nov 1998 12:56:34 PST) Subject: Re: cvs commit: ports/misc/display Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * I guess I just don't understand why you have to mark a port BROKEN if * it's not fetchable during the time that you have available to try to * fetch it. Because if I can't fetch it, it's not going to be on ftp.freebsd.org, and it's likely to trip up other people's builds as well. When you take over maintaining the distfiles dir, hopefully this problem will go away for good. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 13:12:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22412 for freebsd-ports-outgoing; Sun, 8 Nov 1998 13:12:43 -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 NAA22407 for ; Sun, 8 Nov 1998 13:12:42 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca6-19.ix.netcom.com [205.186.213.19]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id NAA21576; Sun, 8 Nov 1998 13:12:28 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id NAA15649; Sun, 8 Nov 1998 13:12:19 -0800 (PST) (envelope-from asami) Date: Sun, 8 Nov 1998 13:12:19 -0800 (PST) Message-Id: <199811082112.NAA15649@bubble.didi.com> To: fenner@parc.xerox.com CC: sjr@home.net, fenner@parc.xerox.com, ports@FreeBSD.ORG In-reply-to: <199811081628.IAA29451@mango.parc.xerox.com> (message from Bill Fenner on Sun, 8 Nov 1998 08:28:55 PST) Subject: Re: cvs commit: ports/misc/display Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * 3 ports (display, mmv, fping) use comp.sources.unix . 2 ports * (xengine and xteddy) use comp.sources.x . None appear to use * comp.sources.misc . Ok. If you can send me patches to bsd.port.mk, I will be grateful. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 15:10:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA04494 for freebsd-ports-outgoing; Sun, 8 Nov 1998 15:10:12 -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 PAA04415 for ; Sun, 8 Nov 1998 15:09:59 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA11904; Sun, 8 Nov 1998 15:10:00 -0800 (PST) Received: from point.osg.gov.bc.ca (point.osg.gov.bc.ca [142.32.102.44]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA03794 for ; Sun, 8 Nov 1998 15:00:15 -0800 (PST) (envelope-from cy@cschuber.net.gov.bc.ca) Received: (from daemon@localhost) by point.osg.gov.bc.ca (8.9.1/8.8.8) id NAA08223 for ; Sun, 8 Nov 1998 13:48:27 -0800 Received: from passer.osg.gov.bc.ca(142.32.110.29) via SMTP by point.osg.gov.bc.ca, id smtpda08221; Sun Nov 8 13:48:11 1998 Received: (from uucp@localhost) by passer.osg.gov.bc.ca (8.9.1/8.9.1) id NAA02462 for ; Sun, 8 Nov 1998 13:48:11 -0800 (PST) Received: from cschuber.net.gov.bc.ca(142.31.240.113), claiming to be "cwsys.cwsent.com" via SMTP by passer.osg.gov.bc.ca, id smtpdWC2460; Sun Nov 8 13:47:12 1998 Received: (from cy@localhost) by cwsys.cwsent.com (8.9.1/8.9.1) id NAA00545; Sun, 8 Nov 1998 13:47:10 -0800 (PST) Message-Id: <199811082147.NAA00545@cwsys.cwsent.com> Date: Sun, 8 Nov 1998 13:47:10 -0800 (PST) From: Cy Schubert Reply-To: cschuber@uumail.gov.bc.ca To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8609: krb5 port eklogin error Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8609 >Category: ports >Synopsis: eklogin service (kerberos klogind) fails to print DES msg >Confidential: no >Severity: critical >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 8 15:10:00 PST 1998 >Last-Modified: >Originator: Cy Schubert >Organization: ITSD, Province of British Columbia >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: FreeBSD cwsys 2.2.7-RELEASE FreeBSD 2.2.7-RELEASE #0: Sat Oct 31 09:57:33 PST 1998 root@cwsys:/opt/usr_src/sys/compile/CWSYS i386 >Description: When logging into encrypted login (eklogin) service, kerberos klogind, approximately 9 times out of 10 the following message does NOT display: This rlogin session is using DES encryption for all data transmissions. Even though the message is NOT displayed 9 times out of 10, I have been able to verify, via tcpdump, that packets are still encrypted. Just the message is not displayed 9/10 times. >How-To-Repeat: Log into an eklogin service using: krlogin -x servername The DES encryption message is not displayed 9/10 or more times. >Fix: Remove patch-al and rebuild krb5-1.0.5. >Audit-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 Nov 8 15:18:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA05163 for freebsd-ports-outgoing; Sun, 8 Nov 1998 15:18:20 -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 PAA05158 for ; Sun, 8 Nov 1998 15:18:15 -0800 (PST) (envelope-from grog@freebie.lemis.com) Received: from freebie.lemis.com (freebie.lemis.com [192.109.197.137]) by allegro.lemis.com (8.9.1/8.9.0) with ESMTP id JAA08487; Mon, 9 Nov 1998 09:47:42 +1030 (CST) Received: (from grog@localhost) by freebie.lemis.com (8.9.1/8.9.0) id JAA07473; Mon, 9 Nov 1998 09:47:42 +1030 (CST) Message-ID: <19981109094741.X499@freebie.lemis.com> Date: Mon, 9 Nov 1998 09:47:41 +1030 From: Greg Lehey To: Sivma , ports@FreeBSD.ORG Subject: Re: communicator crash References: <007801be0b0b$d8142fe0$030a0a0a@valeric.sivma.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.91.1i In-Reply-To: <007801be0b0b$d8142fe0$030a0a0a@valeric.sivma.ru>; from Sivma on Sun, Nov 08, 1998 at 02:35:01PM +0300 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 Sunday, 8 November 1998 at 14:35:01 +0300, Sivma wrote: > Netscape navigator crash when I try to write in edit box in browser window. > It crash because it receive signal 10 (SIGBUS). Maybe I need to change my > kernel? No. Maybe you need to describe your configuration. But this was a known bug in an early version 4 Netscrape. Read the documentation files that came with it. There was something about setting your environment correctly. Greg -- See complete headers for address, home page and phone numbers finger grog@lemis.com for PGP public key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 17:08:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA15989 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:08:47 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from alpha.xerox.com (omega.Xerox.COM [13.1.64.95]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA15978; Sun, 8 Nov 1998 17:08:44 -0800 (PST) (envelope-from fenner@parc.xerox.com) Received: from mango.parc.xerox.com ([13.1.102.232]) by alpha.xerox.com with SMTP id <430621(4)>; Sun, 8 Nov 1998 17:08:22 PST Received: from mango.parc.xerox.com (localhost.parc.xerox.com [127.0.0.1]) by mango.parc.xerox.com (8.8.8/8.8.8) with ESMTP id RAA02289; Sun, 8 Nov 1998 17:08:03 -0800 (PST) (envelope-from fenner@mango.parc.xerox.com) Message-Id: <199811090108.RAA02289@mango.parc.xerox.com> To: asami@FreeBSD.ORG (Satoshi Asami) cc: sjr@home.net, fenner@parc.xerox.com, ports@FreeBSD.ORG Subject: Re: cvs commit: ports/misc/display Makefile In-reply-to: Your message of "Sat, 07 Nov 1998 19:18:11 PST." <199811080318.TAA14446@bubble.didi.com> Date: Sun, 8 Nov 1998 17:08:03 PST From: Bill Fenner Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > * MASTER_SITE_COMP_SOURCES_MISC+= > * ftp://gatekeeper.dec.com/pub/usenet/comp.sources.misc/%SUBDIR%/ \ > * ftp://ftp.uu.net/usenet/comp.sources.misc/%SUBDIR%/ \ > * ftp://rtfm.mit.edu/pub/usenet/comp.sources.misc/%SUBDIR%/ I have a suggestion that might be a little confusing, but consider this instead: MASTER_SITE_COMP_SOURCES+= \ ftp://gatekeeper.dec.com/pub/usenet/comp.sources.%SUBDIR%/ \ ftp://ftp.uu.net/usenet/comp.sources.%SUBDIR%/ \ ftp://rtfm.mit.edu/pub/usenet/comp.sources.%SUBDIR%/ Yes, I put the %SUBDIR% in the wrong place on purpose. This way, you can say MASTER_SITE= ${MASTER_SITE_COMP_SOURCES} MASTER_SITE_SUBDIR= unix/foo/bar and MASTER_SITE= ${MASTER_SITE_COMP_SOURCES} MASTER_SITE_SUBDIR= x/bar/baz instead of having to have a ${MASTER_SITE_COMP_SOURCES_{foo}} for all foo when they're all the same set of sites. Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 17:10:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA16410 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:10:21 -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 RAA16404; Sun, 8 Nov 1998 17:10:18 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA16142; Sun, 8 Nov 1998 17:10:21 -0800 (PST) Date: Sun, 8 Nov 1998 17:10:21 -0800 (PST) Message-Id: <199811090110.RAA16142@freefall.freebsd.org> To: steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, jkoshy@FreeBSD.ORG Subject: Re: ports/6445 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: `fhist' Responsible-Changed-From-To: freebsd-ports->jkoshy Responsible-Changed-By: steve Responsible-Changed-When: Sun Nov 8 17:09:40 PST 1998 Responsible-Changed-Why: Let Joseph take care of his own PR. :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 17:13:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA16832 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:13:06 -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 RAA16813; Sun, 8 Nov 1998 17:12:56 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA16372; Sun, 8 Nov 1998 17:12:59 -0800 (PST) Date: Sun, 8 Nov 1998 17:12:59 -0800 (PST) Message-Id: <199811090112.RAA16372@freefall.freebsd.org> To: ap@noses.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8422 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: pib tries loading a non-existant .so State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Nov 8 17:12:49 PST 1998 State-Changed-Why: Fixed, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 17:15:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA17115 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:15:25 -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 RAA17101; Sun, 8 Nov 1998 17:15:09 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA16542; Sun, 8 Nov 1998 17:15:12 -0800 (PST) Date: Sun, 8 Nov 1998 17:15:12 -0800 (PST) Message-Id: <199811090115.RAA16542@freefall.freebsd.org> To: kaj@interbizz.se, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8468 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update print/enscript to 1.6.1 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Nov 8 17:14:13 PST 1998 State-Changed-Why: New patches submitted, thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 17:17:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA17303 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:17:11 -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 RAA17297; Sun, 8 Nov 1998 17:17:06 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA16676; Sun, 8 Nov 1998 17:17:09 -0800 (PST) Date: Sun, 8 Nov 1998 17:17:09 -0800 (PST) Message-Id: <199811090117.RAA16676@freefall.freebsd.org> To: billf@jade.chc-chimes.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8581 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: graphics/g2 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Nov 8 17:16:55 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 Nov 8 17:22:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA17962 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:22: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 RAA17936; Sun, 8 Nov 1998 17:22:02 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA17178; Sun, 8 Nov 1998 17:22:04 -0800 (PST) Date: Sun, 8 Nov 1998 17:22:04 -0800 (PST) Message-Id: <199811090122.RAA17178@freefall.freebsd.org> To: andy@icc.surw.chel.su, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8551 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: lang/ptoc State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Nov 8 17:21:06 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 Nov 8 17:26:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA18701 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:26:46 -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 RAA18689; Sun, 8 Nov 1998 17:26:41 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA17511; Sun, 8 Nov 1998 17:26:44 -0800 (PST) Date: Sun, 8 Nov 1998 17:26:44 -0800 (PST) Message-Id: <199811090126.RAA17511@freefall.freebsd.org> To: achow@transoft.net, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8503 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: tidy-0.1.98.9 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Nov 8 17:24:41 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 Sun Nov 8 17:31:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19165 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:31:24 -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 RAA19159; Sun, 8 Nov 1998 17:31:20 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA17863; Sun, 8 Nov 1998 17:31:23 -0800 (PST) Date: Sun, 8 Nov 1998 17:31:23 -0800 (PST) Message-Id: <199811090131.RAA17863@freefall.freebsd.org> To: billf@jade.chc-chimes.com, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7874 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: graphics/qiv State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Nov 8 17:31:04 PST 1998 State-Changed-Why: Superceded by PR #8557. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 17:31:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19197 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:31: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 RAA19137; Sun, 8 Nov 1998 17:30:53 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA17775; Sun, 8 Nov 1998 17:30:56 -0800 (PST) Date: Sun, 8 Nov 1998 17:30:56 -0800 (PST) Message-Id: <199811090130.RAA17775@freefall.freebsd.org> To: steve@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: pending/8557 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update to ports/7874 Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Sun Nov 8 17:30: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 Sun Nov 8 17:37:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19841 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:37:14 -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 RAA19717; Sun, 8 Nov 1998 17:35:17 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA18088; Sun, 8 Nov 1998 17:35:19 -0800 (PST) Date: Sun, 8 Nov 1998 17:35:19 -0800 (PST) Message-Id: <199811090135.RAA18088@freefall.freebsd.org> To: steve@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: pending/8585 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Old Synopsis: New Synopsis: bktr driver does not correctly identify I2C devices in some cases Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Sun Nov 8 17:31:33 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 Sun Nov 8 17:39:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20016 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:39:03 -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 RAA19967; Sun, 8 Nov 1998 17:38:31 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA18461; Sun, 8 Nov 1998 17:38:34 -0800 (PST) Date: Sun, 8 Nov 1998 17:38:34 -0800 (PST) Message-Id: <199811090138.RAA18461@freefall.freebsd.org> To: steve@FreeBSD.ORG, gnats-admin@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: pending/8545 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ttt build fails with incorrect library dependencies Responsible-Changed-From-To: gnats-admin->freebsd-ports Responsible-Changed-By: steve Responsible-Changed-When: Sun Nov 8 17:37:18 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 Sun Nov 8 17:40:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20264 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:40:04 -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 RAA20183 for ; Sun, 8 Nov 1998 17:39:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA18515; Sun, 8 Nov 1998 17:40:01 -0800 (PST) Received: from nsx.kgc.co.jp (nsx.kgc.co.jp [210.226.77.146]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA19145 for ; Sun, 8 Nov 1998 17:31:10 -0800 (PST) (envelope-from candy@kgc.co.jp) Received: (qmail 18742 invoked from network); 9 Nov 1998 10:30:54 +0900 Received: from ssm.kgc.co.jp (qmailr@172.16.1.8) by nsx.kgc.co.jp with SMTP; 9 Nov 1998 10:30:54 +0900 Received: (qmail 15836 invoked from network); 9 Nov 1998 10:30:54 +0900 Received: from xxx.kgc.co.jp (172.31.2.3) by ssm.kgc.co.jp with SMTP; 9 Nov 1998 10:30:54 +0900 Received: by xxx.kgc.co.jp (8.8.8/3.3W8:95062916) id KAA12903; Mon, 9 Nov 1998 10:30:54 +0900 (JST) Message-Id: <199811090130.KAA12903@xxx.kgc.co.jp> Date: Mon, 9 Nov 1998 10:30:54 +0900 (JST) From: candy@kgc.co.jp Reply-To: candy@kgc.co.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8612: xipmsg port fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8612 >Category: ports >Synopsis: MASTER_SITES moved >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 Nov 8 17:40:01 PST 1998 >Last-Modified: >Originator: user & >Organization: Keisokugiken corp. >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: >Description: >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 Nov 8 17:40:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20287 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:40:05 -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 RAA20186 for ; Sun, 8 Nov 1998 17:39:59 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA18524; Sun, 8 Nov 1998 17:40:01 -0800 (PST) Received: from nsx.kgc.co.jp (nsx.kgc.co.jp [210.226.77.146]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA19390 for ; Sun, 8 Nov 1998 17:32:25 -0800 (PST) (envelope-from candy@kgc.co.jp) Received: (qmail 18777 invoked from network); 9 Nov 1998 10:32:11 +0900 Received: from ssm.kgc.co.jp (qmailr@172.16.1.8) by nsx.kgc.co.jp with SMTP; 9 Nov 1998 10:32:11 +0900 Received: (qmail 15875 invoked from network); 9 Nov 1998 10:32:11 +0900 Received: from xxx.kgc.co.jp (172.31.2.3) by ssm.kgc.co.jp with SMTP; 9 Nov 1998 10:32:11 +0900 Received: by xxx.kgc.co.jp (8.8.8/3.3W8:95062916) id KAA13043; Mon, 9 Nov 1998 10:32:11 +0900 (JST) Message-Id: <199811090132.KAA13043@xxx.kgc.co.jp> Date: Mon, 9 Nov 1998 10:32:11 +0900 (JST) From: candy@kgc.co.jp Reply-To: candy@kgc.co.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8613: xtimer port fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8613 >Category: ports >Synopsis: MASTER_SITES moved >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 Nov 8 17:40:01 PST 1998 >Last-Modified: >Originator: user & >Organization: Keisokugiken corp. >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: >Description: >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 Nov 8 17:40:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20306 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:40:06 -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 RAA20194 for ; Sun, 8 Nov 1998 17:39:59 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA18533; Sun, 8 Nov 1998 17:40:02 -0800 (PST) Received: from nsx.kgc.co.jp (nsx.kgc.co.jp [210.226.77.146]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA19952 for ; Sun, 8 Nov 1998 17:38:02 -0800 (PST) (envelope-from candy@kgc.co.jp) Received: (qmail 19031 invoked from network); 9 Nov 1998 10:37:47 +0900 Received: from ssm.kgc.co.jp (qmailr@172.16.1.8) by nsx.kgc.co.jp with SMTP; 9 Nov 1998 10:37:47 +0900 Received: (qmail 16182 invoked from network); 9 Nov 1998 10:37:47 +0900 Received: from xxx.kgc.co.jp (172.31.2.3) by ssm.kgc.co.jp with SMTP; 9 Nov 1998 10:37:47 +0900 Received: by xxx.kgc.co.jp (8.8.8/3.3W8:95062916) id KAA13158; Mon, 9 Nov 1998 10:37:47 +0900 (JST) Message-Id: <199811090137.KAA13158@xxx.kgc.co.jp> Date: Mon, 9 Nov 1998 10:37:47 +0900 (JST) From: candy@kgc.co.jp Reply-To: candy@kgc.co.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8614: xipmsg port fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8614 >Category: ports >Synopsis: MASTER_SITES moved >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 Nov 8 17:40:01 PST 1998 >Last-Modified: >Originator: user & >Organization: keisokugiken corp. >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: >Description: >How-To-Repeat: >Fix: --- Makefile.orig Wed Sep 23 07:45:55 1998 +++ Makefile Mon Nov 9 10:22:05 1998 @@ -9,9 +9,9 @@ DISTNAME= xtimer-8087 PKGNAME= xtimer-0.8087 CATEGORIES= x11-clocks -MASTER_SITES= http://spock.vector.co.jp/authors/VA004959/xtimer/ +MASTER_SITES= http://hp.vector.co.jp/authors/VA004959/xtimer/ -MAINTAINER= candy@fct.kgc.co.jp +MAINTAINER= candy@kgc.co.jp USE_IMAKE= yes MAN1= xtimer.1 >Audit-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 Nov 8 17:40:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAB20320 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:40:07 -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 RAA20225 for ; Sun, 8 Nov 1998 17:40:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA18542; Sun, 8 Nov 1998 17:40:02 -0800 (PST) Received: from nsx.kgc.co.jp (nsx.kgc.co.jp [210.226.77.146]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA20022 for ; Sun, 8 Nov 1998 17:39:04 -0800 (PST) (envelope-from candy@kgc.co.jp) Received: (qmail 19034 invoked from network); 9 Nov 1998 10:38:49 +0900 Received: from ssm.kgc.co.jp (qmailr@172.16.1.8) by nsx.kgc.co.jp with SMTP; 9 Nov 1998 10:38:49 +0900 Received: (qmail 16193 invoked from network); 9 Nov 1998 10:38:49 +0900 Received: from xxx.kgc.co.jp (172.31.2.3) by ssm.kgc.co.jp with SMTP; 9 Nov 1998 10:38:49 +0900 Received: by xxx.kgc.co.jp (8.8.8/3.3W8:95062916) id KAA13269; Mon, 9 Nov 1998 10:38:49 +0900 (JST) Message-Id: <199811090138.KAA13269@xxx.kgc.co.jp> Date: Mon, 9 Nov 1998 10:38:49 +0900 (JST) From: candy@kgc.co.jp Reply-To: candy@kgc.co.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8615: xtimer port fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8615 >Category: ports >Synopsis: MASTER_SITES moved >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 Nov 8 17:40:02 PST 1998 >Last-Modified: >Originator: user & >Organization: >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: >Description: >How-To-Repeat: >Fix: --- Makefile.orig Wed Sep 23 07:45:55 1998 +++ Makefile Mon Nov 9 10:22:05 1998 @@ -9,9 +9,9 @@ DISTNAME= xtimer-8087 PKGNAME= xtimer-0.8087 CATEGORIES= x11-clocks -MASTER_SITES= http://spock.vector.co.jp/authors/VA004959/xtimer/ +MASTER_SITES= http://hp.vector.co.jp/authors/VA004959/xtimer/ -MAINTAINER= candy@fct.kgc.co.jp +MAINTAINER= candy@kgc.co.jp USE_IMAKE= yes MAN1= xtimer.1 >Audit-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 Nov 8 17:41:09 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20656 for freebsd-ports-outgoing; Sun, 8 Nov 1998 17:41:09 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from rf900.physics.usyd.edu.au (rf900.physics.usyd.edu.au [129.78.129.109]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA20635; Sun, 8 Nov 1998 17:41:01 -0800 (PST) (envelope-from dawes@rf900.physics.usyd.edu.au) Received: (from dawes@localhost) by rf900.physics.usyd.edu.au (8.8.5/8.8.2) id MAA21714; Mon, 9 Nov 1998 12:39:15 +1100 (EST) Message-ID: <19981109123915.A21444@rf900.physics.usyd.edu.au> Date: Mon, 9 Nov 1998 12:39:15 +1100 From: David Dawes To: Donn Miller , ports@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Ports/patches for X332servonly References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: ; from Donn Miller on Sun, Nov 08, 1998 at 11:05:27AM +0000 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Nov 08, 1998 at 11:05:27AM +0000, Donn Miller wrote: >Just trying to find out if anyone did a port and/or patch for >X332servonly.tgz. It's like the full source for XFree86 but it doesn't >include the stuff for building shared libs. I need the source code so I >can modify it to make a driver for my chipset, which is unsupported. > >BTW, building XFree86 from sratch is pretty nasty. One minor change to >any of the config files in xc/config/cf sometimes throws the whole build >out of whack. That surprises you? >The shared/static libs build OK, but when it comes time to link all the >object files and libs together to produce the X-server, massive amounts of >errors about "undefined reference to ..." come pouring out like crazy. >This is in the subdir xc/programs/Xserver/hw... > >I tried building it w/out changing any source at first, just to see if it >would compile, and it won't compile. So anyone successfully built the >XFree86 servers from source on 3.0-R? Patches are required for FreeBSD/ELF (FreeBSD wasn't ELF when 3.3.2 was released). You should be able to use the patches in FreeBSD's XFree86 port. Just ignore any that might be for files not included in X332servonly.tgz Or you could wait for a week or so for XFree86 3.3.3 which will include support for FreeBSD/ELF out of the box. BTW, what chipset are you planning to add support for? David To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 18:00:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA22529 for freebsd-ports-outgoing; Sun, 8 Nov 1998 18:00:10 -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 RAA22473 for ; Sun, 8 Nov 1998 18:00:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA19095; Sun, 8 Nov 1998 18:00:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA21929; Sun, 8 Nov 1998 17:52:53 -0800 (PST) (envelope-from nobody) Message-Id: <199811090152.RAA21929@hub.freebsd.org> Date: Sun, 8 Nov 1998 17:52:53 -0800 (PST) From: eischen@vigrid.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/8616: Update of xmcd port to xmcd-2.4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8616 >Category: ports >Synopsis: Update of xmcd port to xmcd-2.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: Sun Nov 8 18:00:01 PST 1998 >Last-Modified: >Originator: Daniel Eischen >Organization: >Release: -current >Environment: FreeBSD rigel 3.0-BETA FreeBSD 3.0-BETA #2: Sun Oct 18 13:45:32 EDT 1998 deischen@rigel:/opt/b/src/src/sys/compile/rigel i386 >Description: Xmcd-2.4 was just released. This is an update of the port and will prevent me from getting bi-weekly notices from the Fenner fetchable distfile script :-) >How-To-Repeat: NA >Fix: Apply the following patch: diff -ur xmcd.orig/Makefile xmcd/Makefile --- xmcd.orig/Makefile Sat Nov 7 14:50:08 1998 +++ xmcd/Makefile Sun Nov 8 16:25:28 1998 @@ -6,11 +6,11 @@ # $Id: Makefile,v 1.14 1998/08/31 06:56:58 asami Exp $ # -DISTNAME= xmcd-2.3 +DISTNAME= xmcd-2.4 CATEGORIES= audio MASTER_SITES= http://mercury.hypersurf.com/~amb/download/xmcd/src/ -MAINTAINER= deischen@iworks.InterWorks.org +MAINTAINER= eischen@vigrid.com REQUIRES_MOTIF= yes USE_IMAKE= yes @@ -18,7 +18,7 @@ MAN1= cddbcmd.1 wm2xmcd.1 xmcd.1 cda.1 post-install: -.for man in cddbcmd.1 wm2xmcd.1 +.for man in cddbcmd.1 wm2xmcd.1 xmcd.1 cda.1 ${GZIP_CMD} ${PREFIX}/man/man1/${man} .endfor @${CAT} ${PKGDIR}/MESSAGE diff -ur xmcd.orig/files/md5 xmcd/files/md5 --- xmcd.orig/files/md5 Sat Nov 7 14:49:59 1998 +++ xmcd/files/md5 Sat Nov 7 14:51:57 1998 @@ -1 +1 @@ -MD5 (xmcd-2.3.tar.gz) = cd36c43c388f001767495e7edf88182f +MD5 (xmcd-2.4.tar.gz) = 34de843d84620b0e0e593faf0fc0fc2f diff -ur xmcd.orig/patches/patch-ab xmcd/patches/patch-ab --- xmcd.orig/patches/patch-ab Sat Nov 7 14:49:59 1998 +++ xmcd/patches/patch-ab Sun Nov 8 03:28:28 1998 @@ -1,157 +1,17 @@ -*** install.sh.orig Sat May 23 00:31:42 1998 ---- install.sh Wed Aug 12 17:24:14 1998 +*** Imakefile.orig Wed Oct 28 03:03:10 1998 +--- Imakefile Sat Nov 7 15:27:39 1998 *************** -*** 46,51 **** ---- 46,54 ---- - ERRFILE=/tmp/xmcd.err - TMPFILE=/tmp/xmcdinst.$$ - -+ # Flag for indicating we do not want to prompt the user if possible. -+ NO_PROMPT=1 -+ - # - # Utility functions - # -*************** -*** 594,600 **** +*** 66,71 **** - while : - do -! if getstr "\nEnter X binary directory\n[${BINDIR}]:" - then - if [ -d "$ANS" ] - then ---- 597,607 ---- - - while : - do -! if [ -n "$NO_PROMPT" ] -! then -! $ECHO "X binary directory - using ${BINDIR}" -! break -! elif getstr "\nEnter X binary directory\n[${BINDIR}]:" - then - if [ -d "$ANS" ] - then -*************** -*** 642,648 **** + install:: + @BINDIR=$(BINDIR) LIBDIR=$(LIBDIR) MANDIR=$(MANDIR) \ +! MANSUFFIX=$(MANSUFFIX) $(SHELL) ./install.sh -n + + +--- 66,71 ---- + + install:: + @BINDIR=$(BINDIR) LIBDIR=$(LIBDIR) MANDIR=$(MANDIR) \ +! MANSUFFIX=$(MANSUFFIX) $(SHELL) ./install.sh -n -b - while : - do -! if getstr "\nEnter X library directory\n[${LIBDIR}]:" - then - if [ -d "$ANS" ] - then ---- 649,659 ---- - - while : - do -! if [ -n "$NO_PROMPT" ] -! then -! $ECHO "X library directory - using ${LIBDIR}" -! break -! elif getstr "\nEnter X library directory\n[${LIBDIR}]:" - then - if [ -d "$ANS" ] - then -*************** -*** 665,671 **** - APPDEFAULTSDIR=$LIBDIR/app-defaults - while : - do -! if getstr "\nEnter X app-defaults directory\n[${APPDEFAULTSDIR}]:" - then - if [ -d "$ANS" ] - then ---- 676,686 ---- - APPDEFAULTSDIR=$LIBDIR/app-defaults - while : - do -! if [ -n "$NO_PROMPT" ] -! then -! $ECHO "X app-defaults directory - using ${LIBDIR}" -! break -! elif getstr "\nEnter X app-defaults directory\n[${APPDEFAULTSDIR}]:" - then - if [ -d "$ANS" ] - then -*************** -*** 688,694 **** - XMCDLIB=$LIBDIR/xmcd - while : - do -! if getstr "\nEnter xmcd library directory\n[${XMCDLIB}]:" - then - UDIR="$ANS" - if [ -d "$UDIR" ] ---- 703,713 ---- - XMCDLIB=$LIBDIR/xmcd - while : - do -! if [ -n "$NO_PROMPT" ] -! then -! $ECHO "xmcd library directory - using ${XMCDLIB}" -! break -! elif getstr "\nEnter xmcd library directory\n[${XMCDLIB}]:" - then - UDIR="$ANS" - if [ -d "$UDIR" ] -*************** -*** 742,748 **** - $ECHO "\n\nThe on-line manual directory is where the man pages in" - $ECHO "in the xmcd package will be installed." - -! if getstr "\nEnter on-line manual directory\n[${MANDIR}]:" - then - MANDIR=$ANS - fi ---- 761,770 ---- - $ECHO "\n\nThe on-line manual directory is where the man pages in" - $ECHO "in the xmcd package will be installed." - -! if [ -n "$NO_PROMPT" ] -! then -! $ECHO "xmcd on-line manual directory - using ${MANDIR}" -! elif getstr "\nEnter on-line manual directory\n[${MANDIR}]:" - then - MANDIR=$ANS - fi -*************** -*** 767,773 **** - MANSUFFIX=1 - fi - -! if getstr "\nEnter on-line manual file name suffix\n[${MANSUFFIX}]:" - then - MANSUFFIX=$ANS - fi ---- 789,798 ---- - MANSUFFIX=1 - fi - -! if [ -n "$NO_PROMPT" ] -! then -! $ECHO "xmcd on-line manual file name suffix - using ${MANSUFFIX}" -! elif getstr "\nEnter on-line manual file name suffix\n[${MANSUFFIX}]:" - then - MANSUFFIX=$ANS - fi -*************** -*** 939,954 **** - fi - # Run device-dependent config script -- if [ -r $XMCDLIB/config/config.sh ] -- then -- $SHELL $XMCDLIB/config/config.sh -- if [ $? != 0 ] -- then -- logerr -n "$XMCDLIB/config/config.sh failed." -- fi -- else -- logerr -p "Cannot execute $XMCDLIB/config/config.sh" -- fi - - # Demo cddb file - if [ -d $XMCDLIB/cddb/misc ] ---- 964,969 ---- Only in xmcd.orig/patches: patch-ad diff -ur xmcd.orig/pkg/PLIST xmcd/pkg/PLIST --- xmcd.orig/pkg/PLIST Sat Nov 7 14:49:59 1998 +++ xmcd/pkg/PLIST Sun Nov 8 16:31:04 1998 @@ -1,6 +1,7 @@ bin/xmcd bin/cda bin/cddbcmd +bin/dp2xmcd bin/wm2xmcd lib/X11/app-defaults/XMcd lib/X11/xmcd/docs/ACKS @@ -19,98 +20,100 @@ lib/X11/xmcd/docs/RELNOTES lib/X11/xmcd/docs/WEB lib/X11/xmcd/help/Ab.btn -lib/X11/xmcd/help/DbMode.lbl lib/X11/xmcd/help/DbProg.btn lib/X11/xmcd/help/DdCancel.btn lib/X11/xmcd/help/DdClr.btn -lib/X11/xmcd/help/DdDisc.txw lib/X11/xmcd/help/DdOk.btn -lib/X11/xmcd/help/Disc.lbl -lib/X11/xmcd/help/DiscId.lbl -lib/X11/xmcd/help/DiscTitl.lbl lib/X11/xmcd/help/DpAddPgm.btn lib/X11/xmcd/help/DpCancel.btn lib/X11/xmcd/help/DpClrPgm.btn lib/X11/xmcd/help/DpDExt.btn -lib/X11/xmcd/help/DpDTitle.txw lib/X11/xmcd/help/DpLink.btn lib/X11/xmcd/help/DpLoad.btn -lib/X11/xmcd/help/DpPgmSeq.txw +lib/X11/xmcd/help/DpRmDsbl.btn lib/X11/xmcd/help/DpSave.btn lib/X11/xmcd/help/DpSend.btn lib/X11/xmcd/help/DpTExt.btn -lib/X11/xmcd/help/DpTTitle.txw lib/X11/xmcd/help/DpTimSel.btn -lib/X11/xmcd/help/DpTotTim.lbl -lib/X11/xmcd/help/DpTrk.lsw lib/X11/xmcd/help/DpWeb.btn lib/X11/xmcd/help/DsCancel.btn -lib/X11/xmcd/help/DsDir.lsw lib/X11/xmcd/help/DsOk.btn +lib/X11/xmcd/help/DtAutoTr.btn lib/X11/xmcd/help/DtCancel.btn lib/X11/xmcd/help/DtClr.btn lib/X11/xmcd/help/DtDir.btn lib/X11/xmcd/help/DtOk.btn -lib/X11/xmcd/help/DtTrack.txw lib/X11/xmcd/help/Eject.btn lib/X11/xmcd/help/Ff.btn lib/X11/xmcd/help/Help.btn lib/X11/xmcd/help/HpAbout.btn lib/X11/xmcd/help/HpCancel.btn -lib/X11/xmcd/help/HpText.txw -lib/X11/xmcd/help/HpTopic.opt -lib/X11/xmcd/help/Index.lbl lib/X11/xmcd/help/Keypad.btn -lib/X11/xmcd/help/Keypad.lbl lib/X11/xmcd/help/KpCancel.btn lib/X11/xmcd/help/KpClear.btn lib/X11/xmcd/help/KpEnter.btn lib/X11/xmcd/help/KpNum.btn lib/X11/xmcd/help/KpSel.btn -lib/X11/xmcd/help/KpWarp.scl -lib/X11/xmcd/help/Level.scl lib/X11/xmcd/help/LsCancel.btn -lib/X11/xmcd/help/LsLink.lsw lib/X11/xmcd/help/LsOk.btn -lib/X11/xmcd/help/Main.cbx lib/X11/xmcd/help/Mode.btn lib/X11/xmcd/help/NextDisc.btn lib/X11/xmcd/help/NextIdx.btn lib/X11/xmcd/help/NextTrk.btn -lib/X11/xmcd/help/OpBal.scl lib/X11/xmcd/help/OpBalCtr.btn -lib/X11/xmcd/help/OpChRt.rbx -lib/X11/xmcd/help/OpChgr.cbx -lib/X11/xmcd/help/OpDone.cbx -lib/X11/xmcd/help/OpEject.cbx -lib/X11/xmcd/help/OpExit.rbx -lib/X11/xmcd/help/OpLoad.cbx -lib/X11/xmcd/help/OpLoad.rbx lib/X11/xmcd/help/OpOk.btn lib/X11/xmcd/help/OpReset.btn lib/X11/xmcd/help/OpSave.btn -lib/X11/xmcd/help/OpVolTpr.rbx lib/X11/xmcd/help/Options.btn -lib/X11/xmcd/help/PlayMode.lbl lib/X11/xmcd/help/PlayPaus.btn lib/X11/xmcd/help/PrevDisc.btn lib/X11/xmcd/help/PrevIdx.btn lib/X11/xmcd/help/PrevTrk.btn -lib/X11/xmcd/help/ProgMode.lbl lib/X11/xmcd/help/Quit.btn lib/X11/xmcd/help/Rew.btn -lib/X11/xmcd/help/RptCnt.lbl lib/X11/xmcd/help/Sample.btn lib/X11/xmcd/help/Stop.btn lib/X11/xmcd/help/Time.btn +lib/X11/xmcd/help/WwCancel.btn +lib/X11/xmcd/help/WwGo.btn +lib/X11/xmcd/help/DbMode.lbl +lib/X11/xmcd/help/Disc.lbl +lib/X11/xmcd/help/DiscId.lbl +lib/X11/xmcd/help/DiscTitl.lbl +lib/X11/xmcd/help/DpTotTim.lbl +lib/X11/xmcd/help/Index.lbl +lib/X11/xmcd/help/Keypad.lbl +lib/X11/xmcd/help/PlayMode.lbl +lib/X11/xmcd/help/ProgMode.lbl +lib/X11/xmcd/help/RptCnt.lbl lib/X11/xmcd/help/Time.lbl lib/X11/xmcd/help/TimeMode.lbl lib/X11/xmcd/help/Track.lbl lib/X11/xmcd/help/TrkTitle.lbl -lib/X11/xmcd/help/WwCancel.btn -lib/X11/xmcd/help/WwGo.btn -lib/X11/xmcd/help/WwSearch.opt +lib/X11/xmcd/help/DdDisc.txw +lib/X11/xmcd/help/DpDTitle.txw +lib/X11/xmcd/help/DpPgmSeq.txw +lib/X11/xmcd/help/DpTTitle.txw +lib/X11/xmcd/help/DtTrack.txw +lib/X11/xmcd/help/HpText.txw +lib/X11/xmcd/help/KpWarp.scl +lib/X11/xmcd/help/Level.scl +lib/X11/xmcd/help/OpBal.scl +lib/X11/xmcd/help/DpTrk.lsw +lib/X11/xmcd/help/DsDir.lsw +lib/X11/xmcd/help/LsLink.lsw +lib/X11/xmcd/help/OpChRt.rbx +lib/X11/xmcd/help/OpExit.rbx +lib/X11/xmcd/help/OpLoad.rbx +lib/X11/xmcd/help/OpVolTpr.rbx lib/X11/xmcd/help/WwSelect.rbx +lib/X11/xmcd/help/Main.cbx +lib/X11/xmcd/help/OpChgr.cbx +lib/X11/xmcd/help/OpDone.cbx +lib/X11/xmcd/help/OpEject.cbx +lib/X11/xmcd/help/OpLoad.cbx +lib/X11/xmcd/help/HpTopic.opt +lib/X11/xmcd/help/WwSearch.opt lib/X11/xmcd/pixmaps/xmcd.icon lib/X11/xmcd/pixmaps/xmcd_a.px lib/X11/xmcd/pixmaps/xmcd_b.px @@ -144,7 +147,9 @@ lib/X11/xmcd/config/.tbl/Pioneer lib/X11/xmcd/config/.tbl/Plextor lib/X11/xmcd/config/.tbl/Procom +lib/X11/xmcd/config/.tbl/Regal lib/X11/xmcd/config/.tbl/SGI +lib/X11/xmcd/config/.tbl/Samsung lib/X11/xmcd/config/.tbl/Sanyo lib/X11/xmcd/config/.tbl/Sony lib/X11/xmcd/config/.tbl/Stratus @@ -154,11 +159,15 @@ lib/X11/xmcd/config/.tbl/Toshiba lib/X11/xmcd/config/.tbl/Yamaha lib/X11/xmcd/config/config.sh -@dirrm lib/X11/xmcd/docs -@dirrm lib/X11/xmcd/pixmaps -@dirrm lib/X11/xmcd/help +lib/X11/xmcd/scripts/ncsarmt +lib/X11/xmcd/scripts/ncsawrap +lib/X11/xmcd/scripts/nswrap @dirrm lib/X11/xmcd/config/.tbl @dirrm lib/X11/xmcd/config +@dirrm lib/X11/xmcd/docs +@dirrm lib/X11/xmcd/help +@dirrm lib/X11/xmcd/pixmaps +@dirrm lib/X11/xmcd/scripts @unexec rmdir lib/X11/xmcd/cddb/soundtrack 2>/dev/null || true @unexec rmdir lib/X11/xmcd/cddb/rock 2>/dev/null || true @unexec rmdir lib/X11/xmcd/cddb/reggae 2>/dev/null || true >Audit-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 Nov 8 18:00:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA22533 for freebsd-ports-outgoing; Sun, 8 Nov 1998 18:00:11 -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 SAA22478 for ; Sun, 8 Nov 1998 18:00:01 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA19104; Sun, 8 Nov 1998 18:00:02 -0800 (PST) Received: from nsx.kgc.co.jp (nsx.kgc.co.jp [210.226.77.146]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA22072 for ; Sun, 8 Nov 1998 17:54:28 -0800 (PST) (envelope-from candy@kgc.co.jp) Received: (qmail 19601 invoked from network); 9 Nov 1998 10:54:12 +0900 Received: from ssm.kgc.co.jp (qmailr@172.16.1.8) by nsx.kgc.co.jp with SMTP; 9 Nov 1998 10:54:12 +0900 Received: (qmail 16621 invoked from network); 9 Nov 1998 10:54:11 +0900 Received: from xxx.kgc.co.jp (172.31.2.3) by ssm.kgc.co.jp with SMTP; 9 Nov 1998 10:54:11 +0900 Received: by xxx.kgc.co.jp (8.8.8/3.3W8:95062916) id KAA13467; Mon, 9 Nov 1998 10:54:09 +0900 (JST) Message-Id: <199811090154.KAA13467@xxx.kgc.co.jp> Date: Mon, 9 Nov 1998 10:54:09 +0900 (JST) From: candy@kgc.co.jp Reply-To: candy@kgc.co.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8617: oneko-1.2 port fix Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8617 >Category: ports >Synopsis: MASTER_SITES moved >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 Nov 8 18:00:02 PST 1998 >Last-Modified: >Originator: user & >Organization: keisokugiken corp. >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: >Description: >How-To-Repeat: >Fix: --- Makefile.orig Mon Oct 5 07:32:51 1998 +++ Makefile Mon Nov 9 10:52:42 1998 @@ -9,9 +9,9 @@ DISTNAME= oneko-1.2 CATEGORIES= games MASTER_SITES= ftp://ftp.cin.nihon-u.ac.jp/pub/Linux/PJE/PJE-0.1.2/sources/xclt/ \ - http://www.asahi-net.or.jp/~ZW6T-KND/oneko/ + http://hp.vector.co.jp/authors/VA004959/oneko/ -MAINTAINER= candy@fct.kgc.co.jp +MAINTAINER= candy@kgc.co.jp USE_IMAKE= yes MAN6= oneko.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 Sun Nov 8 18:16:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24137 for freebsd-ports-outgoing; Sun, 8 Nov 1998 18:16: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 SAA24129; Sun, 8 Nov 1998 18:16:11 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA19721; Sun, 8 Nov 1998 18:16:14 -0800 (PST) Date: Sun, 8 Nov 1998 18:16:14 -0800 (PST) Message-Id: <199811090216.SAA19721@freefall.freebsd.org> To: candy@kgc.co.jp, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8612 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MASTER_SITES moved State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Nov 8 18:15:53 PST 1998 State-Changed-Why: See PR #8614. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 18:16:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24218 for freebsd-ports-outgoing; Sun, 8 Nov 1998 18:16:32 -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 SAA24197; Sun, 8 Nov 1998 18:16:27 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA19789; Sun, 8 Nov 1998 18:16:30 -0800 (PST) Date: Sun, 8 Nov 1998 18:16:30 -0800 (PST) Message-Id: <199811090216.SAA19789@freefall.freebsd.org> To: candy@kgc.co.jp, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8613 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MASTER_SITES moved State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Sun Nov 8 18:16:17 PST 1998 State-Changed-Why: See PR #8615. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 18:56:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA27521 for freebsd-ports-outgoing; Sun, 8 Nov 1998 18:56:31 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from iconmail.bellatlantic.net (iconmail.bellatlantic.net [199.173.162.30]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA27499; Sun, 8 Nov 1998 18:56:26 -0800 (PST) (envelope-from dmm125@bellatlantic.net) Received: from bellatlantic.net (client201-122-109.bellatlantic.net [151.201.122.109]) by iconmail.bellatlantic.net (IConNet Sendmail) with ESMTP id VAA12788; Sun, 8 Nov 1998 21:49:12 -0500 (EST) Message-ID: <3646118E.FFF8013E@bellatlantic.net> Date: Sun, 08 Nov 1998 21:47:58 +0000 From: Donn Miller X-Mailer: Mozilla 4.07 [en] (X11; I; FreeBSD 3.0-RELEASE i386) MIME-Version: 1.0 To: David Dawes CC: ports@FreeBSD.ORG, current@FreeBSD.ORG Subject: Re: Ports/patches for X332servonly References: <19981109123915.A21444@rf900.physics.usyd.edu.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org David Dawes wrote: > On Sun, Nov 08, 1998 at 11:05:27AM +0000, Donn Miller wrote: > >Just trying to find out if anyone did a port and/or patch for > >X332servonly.tgz. It's like the full source for XFree86 but it doesn't > >include the stuff for building shared libs. I need the source code so I > >can modify it to make a driver for my chipset, which is unsupported. > > > >BTW, building XFree86 from sratch is pretty nasty. One minor change to > >any of the config files in xc/config/cf sometimes throws the whole build > >out of whack. > > That surprises you? > Well, actually, it was the X332servonly, which is missing the full lib sources for the XFree86 dist., so I did cp xf86site.def host.def And did some changes to host.def. I noticed that if I changed certain things in host.def, the "make World" command would spew out some major errors. Not surprising, considering X332servonly is a subset of the full XF86 sources... It was complaining about an oldX directory missing whenever I changed something. > > >The shared/static libs build OK, but when it comes time to link all the > >object files and libs together to produce the X-server, massive amounts of > >errors about "undefined reference to ..." come pouring out like crazy. > >This is in the subdir xc/programs/Xserver/hw... > > > >I tried building it w/out changing any source at first, just to see if it > >would compile, and it won't compile. So anyone successfully built the > >XFree86 servers from source on 3.0-R? > > Patches are required for FreeBSD/ELF (FreeBSD wasn't ELF when 3.3.2 was > released). You should be able to use the patches in FreeBSD's XFree86 > port. Just ignore any that might be for files not included in > X332servonly.tgz > > Or you could wait for a week or so for XFree86 3.3.3 which will include > support for FreeBSD/ELF out of the box. > > BTW, what chipset are you planning to add support for? > I was going to try to build a driver for SiS 5597/5598. I heard that it might included in the next release of XF86, but I just wanted to see if I could do it on my own. Actually, even though the SiS 5598 is unsupported, I found that using the driver for a related SiS chipset, 86c205, almost works. The only thing is that there's this strange fuzziness/flickering in certain areas of the screen. I thought that maybe it was because the VCO center freq. was a little different than the sis 86c205. I suspected only minor changes to the drivers were needed to give me a "less flickery" screen. Didn't certain ATI chipsets have this problem? I was maybe also hoping to hack the X-server code and do a little tweaking and get some accelerated functions to work. Someone told me the reason that the KDE window manager's problem not refreshing when windows are moved/resized was do to a buggy X-server, and I hoped to correct this as well. But if I did manage to make the X-server work better for my chipset, I would definitely submit the patches to the XFree86 team. I realize that most people don't have the time to make the perfect X-server for every chipset, so I figured I have a lot of free time, I can dedicate a lot of it to tweaking and perfecting the X-server code. (Not that I'm necessarily going to succeed, but I'm definitely going to try). Someone suggested I buy an X-server from Xi or just get a new video card. But I don't believe in paying companies that kind of money when the X source is available. With enough hacking on the freely available source, the sky's the limit. :] Thanks for getting back to me on this. Donn To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 19:00:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA27975 for freebsd-ports-outgoing; Sun, 8 Nov 1998 19:00: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 SAA27947 for ; Sun, 8 Nov 1998 18:59:59 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA21663; Sun, 8 Nov 1998 19:00:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA27833; Sun, 8 Nov 1998 18:57:21 -0800 (PST) (envelope-from nobody) Message-Id: <199811090257.SAA27833@hub.freebsd.org> Date: Sun, 8 Nov 1998 18:57:21 -0800 (PST) From: nakai@TokyoNet.AD.JP To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/8618: Fixed port: set gyve port broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8618 >Category: ports >Synopsis: Fixed port: set gyve port broken >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 Nov 8 19:00:01 PST 1998 >Last-Modified: >Originator: Yukihiro Nakai >Organization: Apricot Computer, Japan >Release: 2.2.7 >Environment: >Description: Gyve-0.1.2.4 is broken with guile-1.3. Mr. Yamato, the author say to wait for the next gyve release. So please set it broken. Yukihiro Nakai -------------- diff -ruN lang/guileobjc.orig/Makefile lang/guileobjc/Makefile --- lang/guileobjc.orig/Makefile Mon Nov 9 11:50:35 1998 +++ lang/guileobjc/Makefile Mon Nov 9 11:51:05 1998 @@ -12,6 +12,8 @@ MAINTAINER= Nakai@technologist.com +BROKEN= This doesn't work with the latest guile. + BUILD_DEPENDS= ${LOCALBASE}/lib/libobjects.a:${PORTSDIR}/lang/libobjects LIB_DEPENDS= guile.4:${PORTSDIR}/lang/guile diff -ruN graphics/gyvekernel.orig/Makefile graphics/gyvekernel/Makefile --- graphics/gyvekernel.orig/Makefile Mon Nov 9 11:49:35 1998 +++ graphics/gyvekernel/Makefile Mon Nov 9 11:51:50 1998 @@ -12,6 +12,8 @@ MAINTAINER= Nakai@technologist.com +BROKEN= guileobjc is broken so wait the next gyve release + LIB_DEPENDS= gtk.1:${PORTSDIR}/x11-toolkits/gtk LIB_DEPENDS+= gtkDPS.1:${PORTSDIR}/graphics/gtkdps BUILD_DEPENDS= pswrap:${PORTSDIR}/x11/dgs >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 Nov 8 19:37:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA01519 for freebsd-ports-outgoing; Sun, 8 Nov 1998 19:37:17 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.redshift.com (redshift.com [209.54.200.6]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA01506 for ; Sun, 8 Nov 1998 19:37:15 -0800 (PST) (envelope-from jmp@redshift.com) Received: from redshift.com (josh226.mry.redshift.com [207.204.193.226]) by mail.redshift.com (8.9.1/8.9.1a) with ESMTP id TAA20398 for ; Sun, 8 Nov 1998 19:36:51 -0800 Message-ID: <36466342.F41F2242@redshift.com> Date: Sun, 08 Nov 1998 19:36:34 -0800 From: Josh Pollock Organization: Redshift Internet Services X-Mailer: Mozilla 4.05 [en]C-NECCK (WinNT; I) MIME-Version: 1.0 To: freebsd-ports@FreeBSD.ORG Subject: half of the prots I got using /stand/sysinstall don't work! Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Half of the prots I got using /stand/sysinstall don't work! Whe I try to run any of the xports,, many of them quit with the following error.. /usr/libexec/ld-elf.so.1: Shared object "libkrb.so.3" not found How can I fix this problem as I really want to run these programs. New to FreeBSD and Love It! Much Thanks Josh jmp@redshift.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 20:10:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA04977 for freebsd-ports-outgoing; Sun, 8 Nov 1998 20:10: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 UAA04970 for ; Sun, 8 Nov 1998 20:09:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA28215; Sun, 8 Nov 1998 20:10:01 -0800 (PST) Received: from beebite.ugh.net.au (ts1m47.the-gc.net [203.17.118.147]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA04140 for ; Sun, 8 Nov 1998 20:03:39 -0800 (PST) (envelope-from andrew@ugh.net.au) Received: (from andrew@localhost) by beebite.ugh.net.au (8.8.8/8.8.8) id FAA00844; Mon, 9 Nov 1998 05:46:09 GMT (envelope-from andrew) Message-Id: <199811090546.FAA00844@beebite.ugh.net.au> Date: Mon, 9 Nov 1998 05:46:09 GMT From: andrew@ugh.net.au Reply-To: andrew@ugh.net.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8620: New option to colorls - -K, color only to a tty Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8620 >Category: ports >Synopsis: New option to colorls - -K, color only to a tty >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 Nov 8 20:10:00 PST 1998 >Last-Modified: >Originator: Andrew >Organization: UgH! >Release: FreeBSD 2.2.7-STABLE i386 >Environment: colorls from the ports collection (both 2.2.5 and 2.2.7). >Description: I have ls aliased to colorls -FG in my shell settings. This works well most of the time but if I type, say ls | more I get the ANSI colour codes showing up, ie I get ^[[31mcolorls*^[[m rather than colorls* in red. I assume more must fail to print the escape character so the terminal dosn't interpret the code. I don't know if that is a bug or a feature of more but I thought it would be nice to have an option to colorls that only displayed colours if it was listing to a terminal. I used -K as -g was taken and it was close to -G. If anyone has a better letter to use feel free to change it. >How-To-Repeat: colorls -G | more >Fix: The colorls port comes with one big patch file that patches everything in one go but I did mine on a file by file basis so to incorporate them, either the big patch will need to be split up into a patch for each file and my patches used to replace the appropriate files or my patches will need to be copied and pasted in with the others. The patches were made in relation to the original ls source so they incorporate asami@FreeBSD.ORG's original changes. --- ls.c.orig Mon Jul 20 16:29:17 1998 +++ ls.c Mon Nov 9 15:19:00 1998 @@ -94,6 +94,7 @@ int f_statustime; /* use time of last mode change */ int f_timesort; /* sort by time vice name */ int f_type; /* add type character for non-regular files */ +int f_color; /* add type in color for non-regular files */ int rval; @@ -131,7 +132,7 @@ f_listdot = 1; fts_options = FTS_PHYSICAL; - while ((ch = getopt(argc, argv, "1ABCFHLPRTWabcdfgikloqrstu")) != -1) { + while ((ch = getopt(argc, argv, "1ABCFGHKLPRTWabcdfgikloqrstu")) != -1) { switch (ch) { /* * The -1, -C and -l options all override each other so shell @@ -169,6 +170,13 @@ case 'H': fts_options |= FTS_COMFOLLOW; break; + case 'G': + f_color = 1; + break; + case 'K': + if (isatty(STDOUT_FILENO)) + f_color = 1; + break; case 'L': fts_options &= ~FTS_PHYSICAL; fts_options |= FTS_LOGICAL; @@ -236,18 +244,21 @@ argc -= optind; argv += optind; + parsecolors(getenv("LSCOLORS")); + /* * If not -F, -i, -l, -s or -t options, don't require stat * information. */ - if (!f_inode && !f_longform && !f_size && !f_timesort && !f_type) + if (!f_inode && !f_longform && !f_size && !f_timesort && !f_type + && !f_color) fts_options |= FTS_NOSTAT; /* * If not -F, -d or -l options, follow any symbolic links listed on * the command line. */ - if (!f_longform && !f_listdir && !f_type) + if (!f_longform && !f_listdir && !f_type && !f_color) fts_options |= FTS_COMFOLLOW; /* If -l or -s, figure out block size. */ --- colorls.1.orig Sun Nov 8 08:47:49 1998 +++ colorls.1 Mon Nov 9 15:18:00 1998 @@ -36,16 +36,26 @@ .\" $Id: ls.1,v 1.5.2.6 1998/07/15 02:01:34 jkh Exp $ .\" .Dd April 18, 1994 -.Dt LS 1 +.Dt COLORLS 1 .Os .Sh NAME .Nm ls -.Nd list directory contents +.Nd list directory contents in color .Sh SYNOPSIS -.Nm ls -.Op Fl ABCFHLPRTWabcdfgikloqrstu1 +.Nm colorls +.Op Fl ABCFGHKLPRTWabcdfgikloqrstu1 .Op Ar file ... .Sh DESCRIPTION +(Note: This man page describes the color version of the program. To +minimize the differences from the original, the program is referred to +as +.Nm ls +in this manual. The new options +.Fl G +and +.Fl K +are for color display.) +.Pp For each operand that names a .Ar file of a type other than @@ -90,6 +100,12 @@ a percent sign (%) after each whiteout, and a vertical bar (|) after each that is a .Tn FIFO . +.It Fl G +Use ANSI color sequences to distinguish file types. (See +.Ev LSCOLORS +below.) In addition to those mentioned above in +.Fl F , +some extra attributes (setuid bit set, etc.) are also displayed. .It Fl H Symbolic links on the command line are followed. This option is assumed if none of the @@ -98,6 +114,10 @@ or .Fl l options are specified. +.It Fl K +Like +.Fl G +but only works if stdout is a terminal. .It Fl L If argument is a symbolic link, list the file or directory the link references rather than the link itself. This option cancels the @@ -373,6 +393,74 @@ See .Xr environ 7 for more information. +.It LSCOLORS +The value of this variable describes what color to use for which +attribute when the color output +.Pq Fl G +is specified. This string is a concatenation of pairs of the format +.Sy fb , +where +.Sy f +is the foreground color and +.Sy b +is the background color. +.Pp +The color designators are as follows: +.Pp +.Bl -tag -width 4n -offset indent -compact +.It Sy 0 +black +.It Sy 1 +red +.It Sy 2 +green +.It Sy 3 +yellow +.It Sy 4 +blue +.It Sy 5 +magenta +.It Sy 6 +cyan +.It Sy 7 +white +.It Sy x +default foreground or background +.El +.Pp +(Note: the above are standard ANSI colors. The actual display may +differ depending on the color capabilities of your terminal.) +.Pp +The order of the attributes are as follows: +.Pp +.Bl -enum -offset indent -compact +.It +directory +.It +symbolic link +.It +socket +.It +pipe +.It +executable +.It +block special +.It +character special +.It +executable with setuid bit set +.It +executable with setgid bit set +.It +directory writable to others, with sticky bit +.It +directory writable to others, without sticky bit +.El +.Pp +The default is "4x5x2x3x1x464301060203", i.e., blue foreground and +default background for regular directories, black foreground and red +background for setuid executables, etc. .El .Sh COMPATIBILITY The group field is now automatically included in the long listing for >Audit-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 Nov 8 20:12:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA05374 for freebsd-ports-outgoing; Sun, 8 Nov 1998 20:12:34 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mrmell (ppp7154.on.bellglobal.com [206.172.224.218]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA05366; Sun, 8 Nov 1998 20:12:21 -0800 (PST) (envelope-from vanderh@ecf.toronto.edu) Received: (from tim@localhost) by mrmell (8.8.8/8.8.8) id XAA05242; Sun, 8 Nov 1998 23:12:32 -0500 (EST) (envelope-from tim) Message-ID: <19981108231231.A3509@mrmell> Date: Sun, 8 Nov 1998 23:12:31 -0500 From: Tim Vanderhoek To: Satoshi Asami , jkh@time.cdrom.com Cc: mike@smith.net.au, mark@grondar.za, sos@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Who built XFree86 with Kerberos? References: <15699.909845800@time.cdrom.com> <199811062257.OAA10011@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199811062257.OAA10011@silvia.hip.berkeley.edu>; from Satoshi Asami on Fri, Nov 06, 1998 at 02:57:48PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Nov 06, 1998 at 02:57:48PM -0800, Satoshi Asami wrote: > > Here's an idea. The only way automation will work is if you start > building every package with an empty /usr/local. If you can get me Yow... Rough estimate, what percentage of the MANUAL_PACKAGE_BUILD ports could be reasonably modified to avoid work nicely? What worries me about a scheme like the above is that the number of conflicting ports will increase too much ( -> more user complaints -> more PRs -> general chaos). I'm tempted to suggest that an automated system could just .if MAN_PKG_BUILD BROKEN=fix me! .endif But I don't want to see the job of fixing 90% of these ports get stuffed onto a couple people again... Not unless those couple people (who know who they are) really want that... ;-) PS. I liked the LOOP stuff. :) -- This .sig is not innovative, witty, or profund. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 20:59:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA09645 for freebsd-ports-outgoing; Sun, 8 Nov 1998 20:59:58 -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 UAA09640 for ; Sun, 8 Nov 1998 20:59:57 -0800 (PST) (envelope-from asami@sunrise.cs.berkeley.edu) Received: from bubble.didi.com (sji-ca6-19.ix.netcom.com [205.186.213.19]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id UAA21932; Sun, 8 Nov 1998 20:59:42 -0800 (PST) Received: (from asami@localhost) by bubble.didi.com (8.8.8/8.8.8) id UAA16474; Sun, 8 Nov 1998 20:59:36 -0800 (PST) (envelope-from asami) Date: Sun, 8 Nov 1998 20:59:36 -0800 (PST) Message-Id: <199811090459.UAA16474@bubble.didi.com> To: fenner@parc.xerox.com CC: sjr@home.net, fenner@parc.xerox.com, ports@FreeBSD.ORG In-reply-to: <199811090108.RAA02289@mango.parc.xerox.com> (message from Bill Fenner on Sun, 8 Nov 1998 17:08:03 PST) Subject: Re: cvs commit: ports/misc/display Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * MASTER_SITE_COMP_SOURCES+= \ * ftp://gatekeeper.dec.com/pub/usenet/comp.sources.%SUBDIR%/ \ * ftp://ftp.uu.net/usenet/comp.sources.%SUBDIR%/ \ * ftp://rtfm.mit.edu/pub/usenet/comp.sources.%SUBDIR%/ * MASTER_SITE_SUBDIR= unix/foo/bar * MASTER_SITE_SUBDIR= x/bar/baz Wonderful. You're a genius! Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 21:19:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA11635 for freebsd-ports-outgoing; Sun, 8 Nov 1998 21:19:59 -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 VAA11625 for ; Sun, 8 Nov 1998 21:19:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA01695; Sun, 8 Nov 1998 21:20:00 -0800 (PST) Received: from n4hhe.ampr.org (tnt2-39.HiWAAY.net [208.147.148.39]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA11146 for ; Sun, 8 Nov 1998 21:15:53 -0800 (PST) (envelope-from dkelly@n4hhe.ampr.org) Received: (from dkelly@localhost) by n4hhe.ampr.org (8.9.1/8.9.1) id WAA02961; Sun, 8 Nov 1998 22:52:20 -0600 (CST) (envelope-from dkelly) Message-Id: <199811090452.WAA02961@n4hhe.ampr.org> Date: Sun, 8 Nov 1998 22:52:20 -0600 (CST) From: dkelly@hiwaay.net Reply-To: dkelly@hiwaay.net To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: dkelly@n4hhe.ampr.org X-Send-Pr-Version: 3.2 Subject: ports/8622: exmh2 has problems with some date formats Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8622 >Category: ports >Synopsis: exmh2 has problems with some date formats >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 8 21:20:00 PST 1998 >Last-Modified: >Originator: David Kelly >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: As installed exmh-2.0.2 has problems with this date header: Date: Sun, 08 Nov 1998, 16:37:35 -0800 >How-To-Repeat: insert the above date header into a message file, then view with exmh-2.0.2. >Fix: The "date.patch" file on the master download site now applies cleanly. Add "date.patch" to PATCHFILES+= in the Makefile. Delete patches/patch-ax. It appears to me patch-ax is a precusor to the current date.patch. Add "MD5 (exmh-2.0.2/date.patch) = 41fba517e559fbb80a554b81c351eb0a" to files/md5. Have submitted this before. Thought I saw it come thru. Checking my /home/ncvs it appears not to have been applied. >Audit-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 Nov 8 22:59:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA19311 for freebsd-ports-outgoing; Sun, 8 Nov 1998 22:59:32 -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 WAA19258; Sun, 8 Nov 1998 22:58:45 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA07204; Sun, 8 Nov 1998 22:58:48 -0800 (PST) Date: Sun, 8 Nov 1998 22:58:48 -0800 (PST) Message-Id: <199811090658.WAA07204@freefall.freebsd.org> To: jkoshy@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, peter@FreeBSD.ORG Subject: Re: ports/8622 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: exmh2 has problems with some date formats Responsible-Changed-From-To: freebsd-ports->peter Responsible-Changed-By: jkoshy Responsible-Changed-When: Sun Nov 8 22:56:56 PST 1998 Responsible-Changed-Why: Peter is hte maintainer of the port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sun Nov 8 23:09:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20480 for freebsd-ports-outgoing; Sun, 8 Nov 1998 23:09:25 -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 XAA20473 for ; Sun, 8 Nov 1998 23:09:24 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca6-19.ix.netcom.com [205.186.213.19]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id XAA22038; Sun, 8 Nov 1998 23:09:05 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id XAA06185; Sun, 8 Nov 1998 23:08:53 -0800 (PST) Date: Sun, 8 Nov 1998 23:08:53 -0800 (PST) Message-Id: <199811090708.XAA06185@silvia.hip.berkeley.edu> To: cdillon@wolves.k12.mo.us CC: freebsd-ports@FreeBSD.ORG In-reply-to: (message from Chris Dillon on Sun, 8 Nov 1998 03:05:11 -0600 (CST)) Subject: Re: Way to fetch distfiles for all dependancies? From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * - if [ $$notfound != 0 ]; then \ * + if [ $$notfound != 0 -o ${SKIP_DEPEND_INSTALLED_CHECK} ]; then \ Eek. I'm not sure about that. For your application, I think you should be doing your fetch in a chrooted environment. If you're burning a CD, you have chroot set up, right? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 02:00:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA08296 for freebsd-ports-outgoing; Mon, 9 Nov 1998 02:00:11 -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 BAA08056; Mon, 9 Nov 1998 01:58:12 -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 BAA15911; Mon, 9 Nov 1998 01:58:15 -0800 (PST) Date: Mon, 9 Nov 1998 01:58:15 -0800 (PST) Message-Id: <199811090958.BAA15911@freefall.freebsd.org> To: dv@home.dv.ru, asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8443 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ports/graphics/xv - make failed during patching State-Changed-From-To: open-closed State-Changed-By: asami State-Changed-When: Mon Nov 9 01:57:57 PST 1998 State-Changed-Why: Closed at originator's request. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 06:49:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA09202 for freebsd-ports-outgoing; Mon, 9 Nov 1998 06:49: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 GAA09197; Mon, 9 Nov 1998 06:49:23 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA07234; Mon, 9 Nov 1998 06:49:26 -0800 (PST) Date: Mon, 9 Nov 1998 06:49:26 -0800 (PST) Message-Id: <199811091449.GAA07234@freefall.freebsd.org> To: taoka@infonets.hiroshima-u.ac.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8035 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New Port: japanese/p5-mkres.pl State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Mon Nov 9 06:49:08 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 Mon Nov 9 06:49:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA09346 for freebsd-ports-outgoing; Mon, 9 Nov 1998 06:49:59 -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 GAA09339 for ; Mon, 9 Nov 1998 06:49:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA07300; Mon, 9 Nov 1998 06:50:00 -0800 (PST) Received: from holly.dons.net.au (holly.dons.net.au [203.31.81.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA08498 for ; Mon, 9 Nov 1998 06:44:44 -0800 (PST) (envelope-from darius@holly.dons.net.au) Received: (from darius@localhost) by holly.dons.net.au (8.9.1/8.8.8) id BAA24339; Tue, 10 Nov 1998 01:14:47 +1030 (CST) (envelope-from darius) Message-Id: <199811091444.BAA24339@holly.dons.net.au> Date: Tue, 10 Nov 1998 01:14:47 +1030 (CST) From: "Daniel J. O'Connor" Reply-To: darius@holly.dons.net.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8626: The devel/glade port won't run Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8626 >Category: ports >Synopsis: The devel/glade port won't run >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 9 06:50:00 PST 1998 >Last-Modified: >Originator: Daniel J. O'Connor >Organization: >Release: FreeBSD 3.0-RELEASE i386 >Environment: 3.0 a.out system made about 2 weeks ago. >Description: When I install the glade port and try and run it, I get [holly 1:10am] /usr/ports/devel/glade> glade /usr/libexec/ld.so: Undefined symbol "__Xsetlocale" called from glade:/usr/X11R6/lib/libgdk11.so.1.3 at 0x2019530c I have tried removing GTK and rebuilding, but I get the same results.. >How-To-Repeat: cd /usr/ports/devel/glade make install /usr/X11R6/bin/glade >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 Mon Nov 9 07:00:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA12043 for freebsd-ports-outgoing; Mon, 9 Nov 1998 07:00:03 -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 GAA11971 for ; Mon, 9 Nov 1998 06:59:59 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA11230; Mon, 9 Nov 1998 07:00:01 -0800 (PST) Received: from Hedgehog.CS.MSU.SU (d6.si.ru [195.128.76.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA09937 for ; Mon, 9 Nov 1998 06:51:38 -0800 (PST) (envelope-from laskavy@Hedgehog.CS.MSU.SU) Received: (from laskavy@localhost) by Hedgehog.CS.MSU.SU (8.8.8/8.8.8) id RAA01291; Mon, 9 Nov 1998 17:51:07 +0300 (MSK) (envelope-from laskavy) Message-Id: <199811091451.RAA01291@Hedgehog.CS.MSU.SU> Date: Mon, 9 Nov 1998 17:51:07 +0300 (MSK) From: laskavy@gambit.msk.su Reply-To: laskavy@gambit.msk.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8627: p5-GIFgraph: new port of http://www.tcp.chem.tue.nl/~tgtcmv/perl/ Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8627 >Category: ports >Synopsis: p5-GIFgraph: new port of http://www.tcp.chem.tue.nl/~tgtcmv/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: Mon Nov 9 07:00:00 PST 1998 >Last-Modified: >Originator: óÅÒÇÅÊ ó. ìÁÓËÁ×ÙÊ >Organization: The FreeBSD Documentation Project >Release: FreeBSD 2.2.7-STABLE i386 >Environment: N/A >Description: This is a port for small package for drawing GIFs from Perl. >How-To-Repeat: N/A >Fix: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # p5-GIFgraph-1.01 # p5-GIFgraph-1.01/Makefile # p5-GIFgraph-1.01/files # p5-GIFgraph-1.01/files/md5 # p5-GIFgraph-1.01/pkg # p5-GIFgraph-1.01/pkg/COMMENT # p5-GIFgraph-1.01/pkg/DESCR # p5-GIFgraph-1.01/pkg/PLIST # echo c - p5-GIFgraph-1.01 mkdir -p p5-GIFgraph-1.01 > /dev/null 2>&1 echo x - p5-GIFgraph-1.01/Makefile sed 's/^X//' >p5-GIFgraph-1.01/Makefile << 'END-of-p5-GIFgraph-1.01/Makefile' XDISTNAME= GIFgraph-1.01 XPKGNAME= p5-GIFgraph-1.01 XCATEGORIES= graphics perl5 XMASTER_SITES= http://www.tcp.chem.tue.nl/~tgtcmv/perl/ X XMAINTAINER= laskavy@gambit.msk.su X XUSE_PERL5= YES X XMANPREFIX= ${PREFIX}/lib/perl5/${PERL_VERSION} XMAN3= GIFgraph.3 GIFgraph::colour.3 X Xdo-configure: X @cd ${WRKSRC}; ${SETENV} ${CONFIGURE_ENV} ${PERL5} Makefile.PL X X.include END-of-p5-GIFgraph-1.01/Makefile echo c - p5-GIFgraph-1.01/files mkdir -p p5-GIFgraph-1.01/files > /dev/null 2>&1 echo x - p5-GIFgraph-1.01/files/md5 sed 's/^X//' >p5-GIFgraph-1.01/files/md5 << 'END-of-p5-GIFgraph-1.01/files/md5' XMD5 (GIFgraph-1.01.tar.gz) = 9fbf10ec9eda820de5d148e0df0641d0 END-of-p5-GIFgraph-1.01/files/md5 echo c - p5-GIFgraph-1.01/pkg mkdir -p p5-GIFgraph-1.01/pkg > /dev/null 2>&1 echo x - p5-GIFgraph-1.01/pkg/COMMENT sed 's/^X//' >p5-GIFgraph-1.01/pkg/COMMENT << 'END-of-p5-GIFgraph-1.01/pkg/COMMENT' Xa Perl package to generate GIF charts END-of-p5-GIFgraph-1.01/pkg/COMMENT echo x - p5-GIFgraph-1.01/pkg/DESCR sed 's/^X//' >p5-GIFgraph-1.01/pkg/DESCR << 'END-of-p5-GIFgraph-1.01/pkg/DESCR' XThis is GIFgraph, a package to generate GIF charts, Xusing Lincoln Stein's GD.pm. END-of-p5-GIFgraph-1.01/pkg/DESCR echo x - p5-GIFgraph-1.01/pkg/PLIST sed 's/^X//' >p5-GIFgraph-1.01/pkg/PLIST << 'END-of-p5-GIFgraph-1.01/pkg/PLIST' Xlib/perl5/site_perl/%%PERL_VER%%/GIFgraph/pie.pm Xlib/perl5/site_perl/%%PERL_VER%%/GIFgraph/utils.pm Xlib/perl5/site_perl/%%PERL_VER%%/GIFgraph/axestype.pm Xlib/perl5/site_perl/%%PERL_VER%%/GIFgraph/colour.pm Xlib/perl5/site_perl/%%PERL_VER%%/GIFgraph/bars.pm Xlib/perl5/site_perl/%%PERL_VER%%/GIFgraph/linespoints.pm Xlib/perl5/site_perl/%%PERL_VER%%/GIFgraph/area.pm Xlib/perl5/site_perl/%%PERL_VER%%/GIFgraph/lines.pm Xlib/perl5/site_perl/%%PERL_VER%%/GIFgraph/points.pm Xlib/perl5/site_perl/%%PERL_VER%%/GIFgraph.pm X@dirrm lib/perl5/site_perl/%%PERL_VER%%/GIFgraph Xlib/perl5/%%PERL_VERSION%%/man/man3/GIFgraph.3 Xlib/perl5/%%PERL_VERSION%%/man/man3/GIFgraph::colour.3 END-of-p5-GIFgraph-1.01/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 Mon Nov 9 07:09:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA14000 for freebsd-ports-outgoing; Mon, 9 Nov 1998 07:09:59 -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 HAA13992 for ; Mon, 9 Nov 1998 07:09:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA11615; Mon, 9 Nov 1998 07:10:01 -0800 (PST) Received: from Hedgehog.CS.MSU.SU (d6.si.ru [195.128.76.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA12477 for ; Mon, 9 Nov 1998 07:01:34 -0800 (PST) (envelope-from laskavy@Hedgehog.CS.MSU.SU) Received: (from laskavy@localhost) by Hedgehog.CS.MSU.SU (8.8.8/8.8.8) id SAA01484; Mon, 9 Nov 1998 18:01:16 +0300 (MSK) (envelope-from laskavy) Message-Id: <199811091501.SAA01484@Hedgehog.CS.MSU.SU> Date: Mon, 9 Nov 1998 18:01:16 +0300 (MSK) From: laskavy@gambit.msk.su Reply-To: laskavy@gambit.msk.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8628: lesstif: port update Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8628 >Category: ports >Synopsis: lesstif: port update >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Nov 9 07:10:01 PST 1998 >Last-Modified: >Originator: óÅÒÇÅÊ ó. ìÁÓËÁ×ÙÊ >Organization: The FreeBSD Documentation Project >Release: FreeBSD 2.2.7-STABLE i386 >Environment: N/A >Description: Here is update of lesstif port for lesstif version 0.86.9 >How-To-Repeat: N/A >Fix: diff -ruN lesstif.orig/Makefile lesstif/Makefile --- lesstif.orig/Makefile Thu Sep 24 13:44:29 1998 +++ lesstif/Makefile Sun Nov 8 22:51:27 1998 @@ -6,7 +6,7 @@ # $Id: Makefile,v 1.25 1998/09/24 09:44:29 tg Exp $ # -DISTNAME= lesstif-0.86.5 +DISTNAME= lesstif-0.86.9 CATEGORIES= x11-toolkits MASTER_SITES= ftp://ftp.lesstif.org/pub/hungry/lesstif/srcdist/ \ ftp://ftp.hungry.com/pub/hungry/lesstif/srcdist/ @@ -26,25 +26,29 @@ MAN1= mwm.1 xmbind.1 lesstif.1 MAN3= XmClipboard.3 LessTifInternals.3 \ XmArrowButton.3 XmArrowButtonGadget.3 XmBulletinBoard.3 \ - XmCascadeButton.3 XmCascadeButtonGCacheObj.3 XmCascadeButtonGadget.3 \ + XmCascadeButton.3 XmCascadeButtonGadget.3 \ XmComboBox.3 XmCommand.3 XmDesktop.3 \ XmDialogShell.3 XmDialogShellExt.3 XmDisplay.3 \ XmDragContext.3 XmDragIcon.3 XmDragOverShell.3 \ XmDrawingArea.3 XmDrawnButton.3 XmDropSiteManager.3 \ XmDropTransfer.3 XmFileSelectionBox.3 XmForm.3 \ XmFrame.3 XmGadget.3 XmGrabShell.3 \ - XmIconGCacheObj.3 XmIconGadget.3 XmLabel.3 \ - XmLabelGCacheObj.3 XmLabelGadget.3 XmList.3 \ + XmIconGadget.3 XmLabel.3 \ + XmLabelGadget.3 XmList.3 \ XmMainWindow.3 XmManager.3 XmMenuShell.3 \ XmMessageBox.3 XmNotebook.3 XmPanedWindow.3 \ XmPrimitive.3 XmProtocol.3 XmPushButton.3 \ - XmPushButtonGCacheObj.3 XmPushButtonGadget.3 XmRowColumn.3 \ + XmPushButtonGadget.3 XmRowColumn.3 \ XmSash.3 XmScale.3 XmScreen.3 \ XmScrollBar.3 XmScrolledWindow.3 XmSelectionBox.3 \ - XmSeparator.3 XmSeparatorGCacheObj.3 XmSeparatorGadget.3 \ + XmSeparator.3 XmSeparatorGadget.3 \ XmSpinBox.3 XmTearOffButton.3 XmText.3 \ - XmTextField.3 XmToggleButton.3 XmToggleButtonGCacheObj.3 \ - XmToggleButtonGadget.3 XmVendorShellExt.3 XmWorld.3 + XmTextField.3 XmToggleButton.3 \ + XmToggleButtonGadget.3 XmVendorShellExt.3 XmWorld.3 \ + ApplicationShell.3 Composite.3 Constraint.3 Core.3 Object.3 \ + OverrideShell.3 Rect.3 Shell.3 TopLevelShell.3 \ + TransientShell.3 UnNamedObj.3 WmShell.3 XtConfigureObject.3 \ + XtDestroyWidget.3 XtManageChild.3 XtUnmanageChild.3 MAN5= mwmrc.5 .if defined(HAVE_MOTIF) diff -ruN lesstif.orig/files/md5 lesstif/files/md5 --- lesstif.orig/files/md5 Thu Sep 24 13:44:30 1998 +++ lesstif/files/md5 Sun Nov 8 17:22:55 1998 @@ -1 +1 @@ -MD5 (lesstif-0.86.5.tar.gz) = 3a8b48b05e8755ba58b7a4ec6a16e71e +MD5 (lesstif-0.86.9.tar.gz) = dbc11a4d2eb086ce33f3464e4f6f75a0 diff -ruN lesstif.orig/patches/patch-ag lesstif/patches/patch-ag --- lesstif.orig/patches/patch-ag Tue Mar 17 14:59:20 1998 +++ lesstif/patches/patch-ag Sun Nov 8 21:51:19 1998 @@ -1,11 +1,11 @@ ---- doc/www.lesstif.org/images/Makefile.in.orig Sat Mar 14 16:50:02 1998 -+++ doc/www.lesstif.org/images/Makefile.in Tue Mar 17 11:36:05 1998 -@@ -102,7 +102,7 @@ +--- doc/www.lesstif.org/images/Makefile.in.orig Fri Oct 30 07:35:09 1998 ++++ doc/www.lesstif.org/images/Makefile.in Sun Nov 8 21:49:25 1998 +@@ -114,7 +114,7 @@ # Lets put the informational stuff in a sub directory to avoid # poluting /usr/local for default installs. # -rootdir= $(exec_prefix)/LessTif/doc/images -+rootdir= $(datadir)/doc/LessTif/doc/images ++rootdir= $(datadir)/doc/LessTif/images root_DATA= hungry.gif \ lesstif-realsmall.gif lesstif-small.gif lesstif.gif \ ltsunlogo.gif diff -ruN lesstif.orig/patches/patch-ah lesstif/patches/patch-ah --- lesstif.orig/patches/patch-ah Tue Mar 17 14:59:22 1998 +++ lesstif/patches/patch-ah Sun Nov 8 21:53:36 1998 @@ -1,11 +1,11 @@ ---- doc/Makefile.in.orig Sat Mar 14 16:50:01 1998 -+++ doc/Makefile.in Tue Mar 17 11:35:12 1998 -@@ -98,7 +98,7 @@ +--- doc/Makefile.in.orig Fri Oct 30 07:35:08 1998 ++++ doc/Makefile.in Sun Nov 8 21:33:35 1998 +@@ -110,7 +110,7 @@ SUBDIRS = www.lesstif.org lessdox -rootdir= $(exec_prefix)/LessTif/doc -+rootdir= $(datadir)/doc/LessTif/doc ++rootdir= $(datadir)/doc/LessTif root_DATA= INSTALL.html mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../include/LTconfig.h diff -ruN lesstif.orig/patches/patch-ai lesstif/patches/patch-ai --- lesstif.orig/patches/patch-ai Wed Jul 1 15:35:33 1998 +++ lesstif/patches/patch-ai Sun Nov 8 21:55:08 1998 @@ -1,6 +1,6 @@ ---- doc/lessdox/clients/Makefile.in.orig Thu Jun 18 22:01:01 1998 -+++ doc/lessdox/clients/Makefile.in Wed Jul 1 12:53:57 1998 -@@ -99,10 +99,10 @@ +--- doc/lessdox/clients/Makefile.in.orig Fri Oct 30 07:35:10 1998 ++++ doc/lessdox/clients/Makefile.in Sun Nov 8 21:54:44 1998 +@@ -108,10 +108,10 @@ EXTRA_DIST = $(man1_DATA) $(man3_DATA) $(man5_DATA) SUFFIXES= .1 .3 .5 .html @@ -10,17 +10,17 @@ -man5dir= $(exec_prefix)/LessTif/doc/man/man5 +mandir= $(prefix)/man +man1dir= $(mandir)/man1 -+#man3dir= $(mandir)/man3 ++man3dir= $(mandir)/man3 +man5dir= $(mandir)/man5 man1_DATA= mwm.1 xmbind.1 lesstif.1 man3_DATA= -@@ -117,7 +117,7 @@ +@@ -126,7 +126,7 @@ # build them. # -htmldir= $(exec_prefix)/LessTif/doc/html -+#htmldir= $(datadir)/doc/LessTif/doc/html ++htmldir= $(datadir)/doc/LessTif @HaveMan2html_TRUE@html_DATA= mwm.html mwmrc.html xmbind.html lesstif.html diff -ruN lesstif.orig/patches/patch-aj lesstif/patches/patch-aj --- lesstif.orig/patches/patch-aj Fri Aug 14 17:41:37 1998 +++ lesstif/patches/patch-aj Sun Nov 8 21:55:44 1998 @@ -1,6 +1,6 @@ ---- doc/www.lesstif.org/Makefile.in.orig Wed Aug 12 03:37:30 1998 -+++ doc/www.lesstif.org/Makefile.in Fri Aug 14 13:35:49 1998 -@@ -105,9 +105,9 @@ +--- doc/www.lesstif.org/Makefile.in.orig Fri Oct 30 07:35:09 1998 ++++ doc/www.lesstif.org/Makefile.in Sun Nov 8 21:34:24 1998 +@@ -113,9 +113,9 @@ # Install some information files # # Lets put the informational stuff in a sub directory to avoid @@ -8,7 +8,7 @@ +# polluting /usr/local for default installs. # -rootdir= $(exec_prefix)/LessTif/doc -+rootdir= $(datadir)/doc/LessTif/doc ++rootdir= $(datadir)/doc/LessTif root_DATA= COPYING.LIB.html FAQ.html apps.html bug-reporting.html \ bugs.html button.html cdrom.html core.html current.html \ cvs.html download.html index.html links.html lists.html \ diff -ruN lesstif.orig/patches/patch-ak lesstif/patches/patch-ak --- lesstif.orig/patches/patch-ak Wed Jul 1 15:35:33 1998 +++ lesstif/patches/patch-ak Sun Nov 8 21:56:44 1998 @@ -1,6 +1,6 @@ ---- doc/lessdox/widgets/Makefile.in.orig Thu Jun 18 22:01:02 1998 -+++ doc/lessdox/widgets/Makefile.in Wed Jul 1 12:59:16 1998 -@@ -98,10 +98,10 @@ +--- doc/lessdox/widgets/Makefile.in.orig Fri Oct 30 07:35:11 1998 ++++ doc/lessdox/widgets/Makefile.in Sun Nov 8 21:45:00 1998 +@@ -107,10 +107,10 @@ MAINTAINERCLEANFILES=Makefile.in SUFFIXES= .1 .3 .5 .html @@ -15,12 +15,21 @@ man1_DATA= man3_DATA= \ -@@ -137,7 +137,7 @@ +@@ -150,7 +150,7 @@ # build them. # -htmldir= $(exec_prefix)/LessTif/doc/html -+#htmldir= $(datadir)/doc/LessTif/doc/html ++htmldir= $(datadir)/doc/LessTif @HaveMan2html_TRUE@html_DATA= ${man1_DATA:.1=.html} ${man3_DATA:.3=.html} \ @HaveMan2html_TRUE@ ${man5_DATA:.5=.html} +@@ -344,7 +344,7 @@ + # in both the http://www.lesstif.org and the locally installed case. + # + install-data-hook: +- if [ ! -h $(exec_prefix)/LessTif/doc/Lessdox ]; then ln -s $(htmldir) $(exec_prefix)/LessTif/doc/Lessdox; fi ++ if [ ! -h $(exec_prefix)/LessTif/doc/Lessdox ]; then echo ln -s $(htmldir) $(exec_prefix)/LessTif/doc/Lessdox; fi + + # Tell versions [3.59,3.63) of GNU make to not export all variables. + # Otherwise a system limit (for SysV at least) may be exceeded. diff -ruN lesstif.orig/patches/patch-al lesstif/patches/patch-al --- lesstif.orig/patches/patch-al Fri Aug 14 17:41:37 1998 +++ lesstif/patches/patch-al Sun Nov 8 21:57:27 1998 @@ -1,6 +1,6 @@ ---- doc/www.lesstif.org/imgs/Makefile.in.orig Wed Aug 12 03:37:31 1998 -+++ doc/www.lesstif.org/imgs/Makefile.in Fri Aug 14 13:34:35 1998 -@@ -104,9 +104,9 @@ +--- doc/www.lesstif.org/imgs/Makefile.in.orig Fri Oct 30 07:35:09 1998 ++++ doc/www.lesstif.org/imgs/Makefile.in Sun Nov 8 21:49:45 1998 +@@ -112,9 +112,9 @@ # Install some information files # # Lets put the informational stuff in a sub directory to avoid @@ -8,7 +8,7 @@ +# polluting /usr/local for default installs. # -rootdir= $(exec_prefix)/LessTif/doc/imgs -+rootdir= $(datadir)/doc/LessTif/doc/images ++rootdir= $(datadir)/doc/LessTif/images root_DATA= lesstif.jpg ltsunlogo.gif mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = ../../../include/LTconfig.h diff -ruN lesstif.orig/patches/patch-an lesstif/patches/patch-an --- lesstif.orig/patches/patch-an Sat Sep 19 23:06:45 1998 +++ lesstif/patches/patch-an Thu Jan 1 03:00:00 1970 @@ -1,44 +0,0 @@ ---- ltmain.sh.orig Sat Sep 19 12:33:38 1998 -+++ ltmain.sh Sat Sep 19 12:34:16 1998 -@@ -982,6 +982,16 @@ - versuffix="$current.$revision" - ;; - -+ freebsd) -+ version_vars="$version_vars major versuffix" -+ major="$current" -+ if [ $PORTOBJFORMAT = elf ]; then -+ versuffix="$current" -+ else -+ versuffix="$current.$revision" -+ fi -+ ;; -+ - *) - $echo "$modename: unknown library version type \`$version_type'" 1>&2 - echo "Fatal configuration error. See the $PACKAGE docs for more information." 1>&2 ---- ltconfig.orig Sat Sep 19 12:33:43 1998 -+++ ltconfig Sat Sep 19 12:35:02 1998 -@@ -1128,10 +1128,21 @@ - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' - ;; - --freebsd2* | freebsd3*) -+freebsd2*) - version_type=sunos - library_names_spec='${libname}${release}.so.$versuffix $libname.so' - finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir' -+ shlibpath_var=LD_LIBRARY_PATH -+ ;; -+ -+freebsd3*) -+ version_type=freebsd -+ library_names_spec='${libname}${release}.so.$versuffix $libname.so' -+ if [ $PORTOBJFORMAT = elf ]; then -+ finish_cmds='PATH="\$PATH:/sbin" OBJFORMAT="$PORTOBJFORMAT" ldconfig -m $libdir' -+ else -+ finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' -+ fi - shlibpath_var=LD_LIBRARY_PATH - ;; - diff -ruN lesstif.orig/patches/patch-zz lesstif/patches/patch-zz --- lesstif.orig/patches/patch-zz Thu Jan 1 03:00:00 1970 +++ lesstif/patches/patch-zz Sun Nov 8 22:25:49 1998 @@ -0,0 +1,26 @@ +--- doc/lessdox/functions/Makefile.in.orig Fri Oct 30 07:35:11 1998 ++++ doc/lessdox/functions/Makefile.in Sun Nov 8 22:21:00 1998 +@@ -107,10 +107,10 @@ + MAINTAINERCLEANFILES=Makefile.in + SUFFIXES= .1 .3 .5 .html + +-mandir= $(exec_prefix)/LessTif/doc/man +-man1dir= $(exec_prefix)/LessTif/doc/man/man1 +-man3dir= $(exec_prefix)/LessTif/doc/man/man3 +-man5dir= $(exec_prefix)/LessTif/doc/man/man5 ++mandir= $(prefix)/man ++man1dir= $(mandir)/man1 ++man3dir= $(mandir)/man3 ++man5dir= $(mandir)/man5 + + man1_DATA= + man3_DATA= \ +@@ -127,7 +127,7 @@ + # build them. + # + +-htmldir= $(exec_prefix)/LessTif/doc/html ++htmldir= $(datadir)/doc/LessTif + + @HaveMan2html_TRUE@html_DATA= ${man1_DATA:.1=.html} ${man3_DATA:.3=.html} \ + @HaveMan2html_TRUE@ ${man5_DATA:.5=.html} >Audit-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 Nov 9 07:14:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA14388 for freebsd-ports-outgoing; Mon, 9 Nov 1998 07:14:52 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA14379; Mon, 9 Nov 1998 07:14:49 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA209824404; Mon, 9 Nov 1998 10:13:24 -0500 Date: Mon, 9 Nov 1998 10:13:24 -0500 (EST) From: Bill Fumerola To: Satoshi Asami Cc: freebsd-ports@FreeBSD.ORG Subject: Re: bsd.port.mk updates and such In-Reply-To: <199811062310.PAA10066@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 Fri, 6 Nov 1998, Satoshi Asami wrote: > Seriously, this is just a case of user misconception. Just doing > "make install" in src/share/mk is not enough. Ports-current is NOT > guaranteed to work with the most recent release. What we need to fix > is the documentation. I would perhaps at least eliminate some of the frequent 'port XXX won't compile and it complains about objformat...' Though trying to eliminate the other problems (install-info, ldconfig) would be something to look into, but other then testing for the release the user is using, I can't think of anything of the top of my head. Also, on the subject of documentation, I have been working on that Makefile variable/macro documentation (Hi Tim!), and hopefuly will have that finished in a couple weeks. - bill fumerola [root/billf]@chc-chimes.com - computer horizons corp - - ph:(800)252.2421 x128 / bfumerol@computerhorizons.com - BF1560 - "Logic, like whiskey, loses its beneficial effect when taken in too large quantities" -Lord Dunsany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 07:50:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17741 for freebsd-ports-outgoing; Mon, 9 Nov 1998 07:50: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 HAA17727 for ; Mon, 9 Nov 1998 07:49:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA13893; Mon, 9 Nov 1998 07:50:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA17546; Mon, 9 Nov 1998 07:46:02 -0800 (PST) (envelope-from nobody) Message-Id: <199811091546.HAA17546@hub.freebsd.org> Date: Mon, 9 Nov 1998 07:46:02 -0800 (PST) From: rom_glsa@ein-hashofet.co.il To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/8630: x11-toolkits/gtk11 appears to be broken. Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8630 >Category: ports >Synopsis: x11-toolkits/gtk11 appears to be broken. >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 9 07:50:01 PST 1998 >Last-Modified: >Originator: Gilad Rom >Organization: ELAC >Release: 3.0-C (ELF) >Environment: FreeBSD pentium 3.0-CURRENT FreeBSD 3.0-CURRENT #9: Sun Nov 8 17:27:08 GMT 1998 lickyou@pentium:/usr/src/sys/compile/KERNEL i386 >Description: x11-toolkits/gtk11 builds and installs fine, yet when I try to link against it I get the following error: /usr/X11R6/lib/libgtk11.so: undefined reference to `_Xsetlocale' Note: I have x11-toolkits/gtk (1.0.6) installed as well. This might be the cause. CVsupped on sunday. thanks -- Gilad. >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 Mon Nov 9 09:36:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA24351 for freebsd-ports-outgoing; Mon, 9 Nov 1998 09:01:26 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from duey.hs.wolves.k12.mo.us (duey.hs.wolves.k12.mo.us [207.160.214.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA24338; Mon, 9 Nov 1998 09:01:24 -0800 (PST) (envelope-from cdillon@wolves.k12.mo.us) Received: from duey.hs.wolves.k12.mo.us (cdillon@duey.hs.wolves.k12.mo.us [207.160.214.9]) by duey.hs.wolves.k12.mo.us (8.8.7/8.8.7) with ESMTP id LAA21747; Mon, 9 Nov 1998 11:01:08 -0600 (CST) (envelope-from cdillon@wolves.k12.mo.us) Date: Mon, 9 Nov 1998 11:01:07 -0600 (CST) From: Chris Dillon X-Sender: cdillon@duey.hs.wolves.k12.mo.us To: Satoshi Asami cc: freebsd-ports@FreeBSD.ORG Subject: Re: Way to fetch distfiles for all dependancies? In-Reply-To: <199811090708.XAA06185@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 Sun, 8 Nov 1998, Satoshi Asami wrote: > * - if [ $$notfound != 0 ]; then \ > * + if [ $$notfound != 0 -o ${SKIP_DEPEND_INSTALLED_CHECK} ]; then \ > > Eek. I'm not sure about that. > > For your application, I think you should be doing your fetch in a > chrooted environment. If you're burning a CD, you have chroot set up, > right? All I do is make a release using the standard release tools (/usr/src/release), copy stuff like the distfiles into the release tree that has been generated, then use JKH's makecdfs.sh script in /usr/share/examples/worm to create the filesystem. No chrooting needed, really. The above hack is just that, a hack, but would it not be a bad idea to have something similar in bsd.port*.mk anyway? There are ways to do just about everything else, it seems. :-) Any better ways you know of to prevent the check for installed dependencies on fetches? Thanks again for the help. -- Chris Dillon - cdillon@wolves.k12.mo.us - cdillon@inter-linc.net /* FreeBSD: The fastest and most stable server OS on the planet. For Intel x86 and compatibles (SPARC and Alpha under development) ( http://www.freebsd.org ) */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 11:00:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA07509 for freebsd-ports-outgoing; Mon, 9 Nov 1998 11:00:12 -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 LAA07492 for ; Mon, 9 Nov 1998 11:00:08 -0800 (PST) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA24374 for freebsd-ports@freebsd.org; Mon, 9 Nov 1998 11:00:09 -0800 (PST) Date: Mon, 9 Nov 1998 11:00:09 -0800 (PST) Message-Id: <199811091900.LAA24374@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The report has been examined by a team member and evaluated. f - feedback The problem has been solved, and the originator has been given a patch or a fix has been committed. The PR remains in this state pending a response from the originator. s - suspended The problem is not being worked on. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/11/02] ports/8545 ports ttt build fails with incorrect library de o [1998/11/08] ports/8600 ports master site changes for biology/kinemage o [1998/11/08] ports/8601 ports krb5 port krb5kdc bus errror o [1998/11/08] ports/8609 ports eklogin service (kerberos klogind) fails 4 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1998/03/10] ports/5970 ports psmisc ports uploaded to freebsd.org:/pub o [1998/06/12] ports/6929 ports fxtv-0.47 fails to build on AccelX server o [1998/06/18] ports/6986 ports LaTeX vs. teTeX ; xdvi, xdvik vs. teTeX o [1998/07/23] ports/7382 ports Pine4 does not co-exist with older instal o [1998/08/01] ports/7463 ports Perl scripts in automake port require per o [1998/08/27] ports/7761 ports Update to recent port submission of nicet o [1998/09/02] ports/7813 ports make reports nn as BROKEN= checksum o [1998/09/03] ports/7825 ports missing app-default from xmascot-2.5p2.tg o [1998/09/19] ports/7987 ports Can't post news with TRN + NNTPCACHE o [1998/09/30] ports/8098 ports Update of R port o [1998/10/08] ports/8223 ports Library of Fortran intrinsics not in f2c o [1998/10/11] ports/8276 ports samba's WINS database gets removed during o [1998/10/20] ports/8387 ports teTeX-0.4 port installs binaries that sha o [1998/10/25] ports/8450 ports html2ps port expects perl5 in /usr/local/ o [1998/10/26] ports/8460 ports skip doen't compile o [1998/10/26] ports/8462 ports mysqld port doesn't work o [1998/10/30] ports/8502 ports GNAT 3.10 port uses clock_gettime which i o [1998/11/03] ports/8557 ports update to ports/7874 o [1998/11/03] ports/8563 ports gcc breaks on source file o [1998/11/06] kern/8585 ports bktr driver does not correctly identify I o [1998/11/09] ports/8630 ports x11-toolkits/gtk11 appears to be broken. 21 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [1997/04/17] ports/3318 ports New port: jigsaw (Java-based HTTP server) o [1997/08/10] ports/4264 ports mftp get a Segmentation fault o [1997/08/26] ports/4391 ports New port: VPCE a [1997/10/23] ports/4839 ports New port: spin - Verification system for o [1997/11/07] ports/4967 ports New port: Carl DeClerck's mserver-0.21 mo f [1997/11/14] ports/5045 ports freebsd.ftp.markers for xearth is out of o [1997/11/26] ports/5158 ports thot editor port doesn't install template o [1997/12/03] ports/5201 ports New port: fidogate o [1997/12/06] ports/5240 ports Incorrect path in pkfonts (fix) o [1997/12/15] ports/5312 ports New port: xwpl o [1997/12/28] ports/5393 ports New port: DOOM o [1997/12/30] ports/5397 ports New port: fly o [1998/01/10] ports/5475 ports New port: abacus sentry o [1998/01/15] ports/5509 ports New port: xruskb-1.5.1 o [1998/01/26] ports/5570 ports New port: rise 0.3.3 o [1998/02/02] ports/5626 ports 'ldap' port eats all available CPU time o [1998/02/04] ports/5653 ports New port of ICI language a [1998/02/05] ports/5660 ports New port type1inst o [1998/02/07] ports/5675 ports New port in category devel: DOC++ o [1998/02/10] ports/5706 ports New port: ja-dvi2dvi-1.0 (japanese/dvi2dv o [1998/02/17] ports/5771 ports New port: Stuttgart Neural Network Simula o [1998/02/17] ports/5776 ports New port: lzo (category compression) a [1998/02/22] ports/5814 ports New port: XShodou o [1998/02/22] ports/5821 ports New port: Swish-E, a Web site indexer o [1998/02/26] ports/5859 ports xxgdb port doesn't recognize the -k optio o [1998/03/01] ports/5885 ports New port: dc20ctrl-0.4 (graphics/dc20ctrl o [1998/03/08] ports/5946 ports New port biology/molmol o [1998/03/15] ports/6017 ports new port: yacl o [1998/03/15] ports/6018 ports new port: ml-3.3 a [1998/03/15] ports/6020 ports new port: Xfstt-0.9.7 o [1998/03/18] ports/6057 ports xperfmon++-1.40 package fails XtRealloc() o [1998/03/21] ports/6085 ports New port: pavuk-0.8 o [1998/03/23] ports/6113 ports new port: rinfo-1.2 o [1998/03/23] ports/6120 ports New port: xtetris-2.6 o [1998/03/27] ports/6151 ports New port: xrus-1.5.2 o [1998/03/28] ports/6153 ports New port: flick o [1998/03/29] ports/6171 ports New port: xtron-1.1a o [1998/04/01] ports/6194 ports New port: mirrormagic-1.3 o [1998/04/06] ports/6230 ports gfont_mkgdf calls wrong interpreter o [1998/04/07] ports/6235 ports New port: scwm-icon o [1998/04/07] ports/6236 ports New port: scwm o [1998/04/15] ports/6311 ports New port: gsfonts o [1998/04/15] ports/6312 ports New port: ghostscript-3.33 o [1998/04/17] ports/6331 ports New port: libshhopt-1.1.3 a [1998/04/19] ports/6355 ports New port: qplug - Netscape plugin to show o [1998/04/20] ports/6361 ports New port: GNU Pascal Compiler o [1998/04/23] ports/6393 ports New port: MultiMedia package - CD player, o [1998/04/24] ports/6405 ports vrweb port does not build; ignores local o [1998/05/01] ports/6473 ports New port: libshhmsg-1.3.3 o [1998/05/01] ports/6474 ports New port: libxalloc-1.0.2 o [1998/05/03] ports/6504 ports New port: `C Interfaces and Implementatio o [1998/05/07] ports/6541 ports New port: math/dc o [1998/05/10] ports/6570 ports New port: java CUP parser o [1998/05/11] ports/6598 ports New port: asmodem - displays the modem st o [1998/05/12] ports/6606 ports package add of perl-5.00404 fails w/3.0 S o [1998/05/16] ports/6657 ports new port for perl/Tk 800.004 o [1998/05/19] ports/6687 ports New port, ktelnet v0.6 o [1998/05/19] ports/6699 ports New port: the Generic NQS system o [1998/05/21] ports/6709 ports New port kmessage o [1998/05/23] ports/6728 ports New port ktranslator o [1998/05/28] ports/6776 ports New port - xqf o [1998/05/31] ports/6806 ports /usr/ports/graphics/killustrator doesn't o [1998/06/02] ports/6838 ports Enable lj4dith driver by default o [1998/06/13] ports/6942 ports New port, mrouted-beta o [1998/06/16] ports/6970 ports mule and family build faulure o [1998/06/28] ports/7094 ports New port of xbomber game o [1998/06/30] ports/7128 ports New port: Raster3D-2.4f o [1998/07/02] ports/7150 ports `elftoaout': new port o [1998/07/04] ports/7163 ports new port: p5-Set-IntSpan o [1998/07/04] ports/7164 ports new port: p5-News-Newsrc o [1998/07/12] ports/7261 ports problem of wget-1.5.2 o [1998/07/15] ports/7295 ports Starting programs with bash port causes p o [1998/07/18] ports/7314 ports ncurses port doesn't support TERM=xterm-c o [1998/07/20] ports/7344 ports New port: wmavgload-0.6.1 o [1998/07/27] ports/7409 ports New port: CaribbeanStud-1.0 o [1998/07/29] ports/7428 ports new port of WindowMaker-data o [1998/07/30] ports/7449 ports upgrade of scilab port o [1998/08/03] ports/7480 ports New Port afbackup-3.0.4 o [1998/08/08] ports/7532 ports New port: ipltd-2.01 o [1998/08/09] ports/7537 ports New port: new PPP client, PPxP o [1998/08/11] ports/7576 ports NEW port: skkfep-0.85 (Japanese FrontEnd o [1998/08/11] ports/7582 ports new port: net/portscanner o [1998/08/16] ports/7634 ports New port: PPA filter for HP "Windows-only o [1998/08/17] ports/7648 ports Port of GD graphic library which uses Rus o [1998/08/18] ports/7659 ports New port: pfx-0.1.1 o [1998/08/19] ports/7680 ports New port of tn5250 o [1998/08/19] ports/7681 ports TkDesk 1.0 is not Y2K compliant o [1998/08/19] ports/7689 ports New port: binkd-0.9.2 o [1998/08/20] ports/7700 ports New port: Apache 1.3.1 with ssl o [1998/08/21] ports/7701 ports New port: drmario-1.0 o [1998/08/21] ports/7706 ports update for catdoc port o [1998/08/22] ports/7718 ports New port: leafnode with Jam patch, ${PORT o [1998/08/23] ports/7732 ports new port: graphics/qcread o [1998/08/24] ports/7734 ports update atari800 - upgrade to the latest v o [1998/08/24] ports/7735 ports new port: mp3encode - mpeg audio file enc o [1998/08/25] ports/7746 ports a patch for a problem with mule and a.out o [1998/08/29] ports/7775 ports New version: korganizer v0.9.10 o [1998/08/29] ports/7777 ports New port: pkg_version-0.1 o [1998/08/29] ports/7780 ports New port: WMnet -- Network Throughput Mon o [1998/09/01] ports/7796 ports new port man2html o [1998/09/02] ports/7806 ports Fixed port: xfce o [1998/09/03] ports/7827 ports New port: garith-2.1 o [1998/09/04] ports/7832 ports New port: LICQ 1.41 o [1998/09/06] ports/7842 ports mv ports/korean/vim ports/editors/vim to o [1998/09/07] ports/7845 ports Unbuffered /dev/vx0-output from Python 1. o [1998/09/07] ports/7847 ports New port: webmin 0.62 o [1998/09/07] ports/7853 ports new port klyx v0.9.7 o [1998/09/07] ports/7854 ports New port: Tinker molecular modeling tools o [1998/09/08] ports/7865 ports new port: Library of Routines for Cumulat o [1998/09/09] ports/7875 ports NEW PORT: lcdproc o [1998/09/10] ports/7883 ports New port: Xfstt, a non-Freetype TrueType o [1998/09/10] ports/7888 ports New port: Ciscoconf o [1998/09/13] ports/7921 ports New port: Nessus security scanner o [1998/09/13] ports/7924 ports New port: tin news reader for Korean o [1998/09/15] ports/7937 ports port word2x has problems with redefinitio o [1998/09/15] ports/7940 ports make depend packages and index on demand o [1998/09/19] ports/7992 ports New port: xemacs20-stepwise (XEmacs20 hac o [1998/09/20] ports/8002 ports new port of the 4.5beta2 version of Netsc o [1998/09/22] ports/8025 ports ports upgrade: chinese/pine4 o [1998/09/23] ports/8036 ports New Port: japanese/jhd o [1998/09/25] ports/8051 ports New port: PostScript plotting library in o [1998/09/28] ports/8078 ports port audio/nas fails for me o [1998/09/30] ports/8109 ports new port: net/muh o [1998/10/01] ports/8124 ports new port: net/proftpd-devel o [1998/10/01] ports/8126 ports new port: misc/gtkfind o [1998/10/03] ports/8135 ports install-info INFO-DIR-SECTION missing for o [1998/10/03] ports/8136 ports New port: yudit: multi-lingual unicode te o [1998/10/05] ports/8157 ports new port - upsmon 2.1.3 o [1998/10/08] ports/8204 ports New port: security/ssh2 (ssh-2.0.9) o [1998/10/08] ports/8220 ports new version for existing "kappa20 font" p o [1998/10/08] ports/8222 ports ng(MicroNEmacs) port o [1998/10/08] ports/8224 ports Update: print/yatex o [1998/10/09] ports/8246 ports port upgrade: korean/hanterm-xf86 o [1998/10/11] ports/8272 ports INSTALL not executable in ports/mail/cyru o [1998/10/12] ports/8283 ports change the way to modify fonts.alias o [1998/10/12] ports/8284 ports nethack build made ELF compatible o [1998/10/12] ports/8285 ports New port (Eggdrop 1.3.21) o [1998/10/12] ports/8289 ports problems about file locking of emacs/xema o [1998/10/12] ports/8292 ports update port: net/ntop o [1998/10/13] ports/8299 ports new port for games/xbd (Boulder Dash) o [1998/10/13] ports/8304 ports SUGGESTION: point to handbook for BROKEN o [1998/10/13] ports/8305 ports New port: queso - determin remote OS o [1998/10/13] ports/8307 ports fxtv garbles display o [1998/10/13] ports/8314 ports xemacs-19 (addtional ELF patch) o [1998/10/14] ports/8317 ports devel/prc-tools port fails o [1998/10/17] ports/8365 ports port archivers/p5-Compress-Zlib won't bui o [1998/10/20] ports/8381 ports port upgrade: korean/nh2ps o [1998/10/20] ports/8393 ports klyx can not create new documents o [1998/10/21] ports/8403 ports port update: math/geg o [1998/10/21] ports/8404 ports ircd-hybrid port update o [1998/10/22] ports/8408 ports New port: x11-wm/afterstep-i18n o [1998/10/22] ports/8413 ports New port, wxftp o [1998/10/23] ports/8421 ports Fix port: ports/8399 o [1998/10/23] ports/8424 ports Update port ja-mendexk-* (japanese/mendex o [1998/10/24] ports/8431 ports Update port: xsystem-3.5(ports/8234) o [1998/10/24] ports/8432 ports New Port: qtarch-1.4-1 o [1998/10/25] ports/8442 ports New port: korean/netscape4-{communicator, o [1998/10/25] ports/8448 ports first cut of apache13-ssl port o [1998/10/25] ports/8454 ports new port copytape - for duplicating magta o [1998/10/26] ports/8457 ports gnomelibs-0.30.1 - configure fails o [1998/10/26] ports/8458 ports ports collection does not use common cach o [1998/10/27] ports/8470 ports Update port: www/netscape4-* o [1998/10/28] ports/8475 ports New ports of XMangekyou o [1998/10/28] ports/8481 ports New port of XStarRoll o [1998/10/28] ports/8482 ports New port of eyeclock-1.02 o [1998/10/29] ports/8484 ports New port of XShodou-1.11 o [1998/10/29] ports/8489 ports Samba port installation o [1998/10/29] ports/8495 ports New port of eyeclock-1.03 o [1998/10/29] ports/8496 ports New port of XMangekyou-1.03 o [1998/10/29] ports/8497 ports New port of xstarroll-1.02 o [1998/10/30] ports/8508 ports New Port: libicq o [1998/10/30] ports/8509 ports New Port: gicq o [1998/10/30] ports/8510 ports Update Port: x11/lupe o [1998/10/30] ports/8511 ports New Port: graphics/xmagv o [1998/10/30] ports/8512 ports New Port: graphics/xpx o [1998/10/30] ports/8513 ports New Port: games/fkiss o [1998/10/30] ports/8516 ports Addition of port for rblsmtpd (qmail RBL o [1998/10/31] ports/8521 ports Some manpages are not usable with tiff-3. o [1998/10/31] ports/8522 ports NEW Update port: Apache FrontPage v1.3.3 o [1998/11/01] ports/8526 ports xfstt 0.9.10 port o [1998/11/01] ports/8529 ports ja-netscape update o [1998/11/01] ports/8530 ports Update to the kawk port o [1998/11/01] ports/8537 ports New port XttXF98srv-* and some change of o [1998/11/02] ports/8539 ports New port: japanese/gtk o [1998/11/02] ports/8540 ports New port: japanese/libicq o [1998/11/02] ports/8541 ports New port: japanese/gicq o [1998/11/02] ports/8546 ports new port: [net/benchmarks]/nttcp o [1998/11/03] ports/8552 ports New port: shells/zsh-devel o [1998/11/03] ports/8554 ports ELM doesn't know that mail.local escapes o [1998/11/03] ports/8556 ports 3.0-RELEASE installation does not registe o [1998/11/03] ports/8564 ports New port: serialmail 0.72 o [1998/11/03] ports/8569 ports Fixed port: japanese/postgresql o [1998/11/04] ports/8572 ports New port: gtksamba-0.1.0 o [1998/11/04] ports/8574 ports FWF-4.0 port broken on non-Motif system o [1998/11/04] ports/8578 ports New port: japanese/gimp o [1998/11/05] ports/8579 ports Update port: print/klyx o [1998/11/05] ports/8583 ports update ja-rxvt 2.4.7 -> 2.4.9 o [1998/11/06] ports/8584 ports new port: net/beroftpd o [1998/11/07] ports/8586 ports new port: misc/kmamerun o [1998/11/07] ports/8588 ports new port: net/pathchar o [1998/11/07] ports/8591 ports new port: x11/xlogout o [1998/11/07] ports/8592 ports fixed distfile site for tkfont port o [1998/11/07] ports/8595 ports Additional Mirror site for fp30.bsdi3.tar o [1998/11/08] ports/8606 ports update port: www/linux-netscape4 o [1998/11/08] ports/8614 ports MASTER_SITES moved o [1998/11/08] ports/8615 ports MASTER_SITES moved o [1998/11/08] ports/8616 ports Update of xmcd port to xmcd-2.4 o [1998/11/08] ports/8617 ports MASTER_SITES moved o [1998/11/08] ports/8618 ports Fixed port: set gyve port broken o [1998/11/08] ports/8620 ports New option to colorls - -K, color only to o [1998/11/09] ports/8626 ports The devel/glade port won't run o [1998/11/09] ports/8627 ports p5-GIFgraph: new port of http://www.tcp.c o [1998/11/09] ports/8628 ports lesstif: port update 213 problems total. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 12:36:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18242 for freebsd-ports-outgoing; Mon, 9 Nov 1998 12:36:05 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from B1FF.nas.nasa.gov (b1ff.nas.nasa.gov [129.99.34.135]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA18237 for ; Mon, 9 Nov 1998 12:36:02 -0800 (PST) (envelope-from rone@B1FF.nas.nasa.gov) Received: (from rone@localhost) by B1FF.nas.nasa.gov (8.8.8/8.8.8) id MAA29616; Mon, 9 Nov 1998 12:35:19 -0800 (PST) (envelope-from rone) From: Ron Echeverri Message-Id: <199811092035.MAA29616@B1FF.nas.nasa.gov> Subject: Re: SSH admits exploit in 1.2.26 client (fwd) In-Reply-To: from Dean Hollister at "Nov 8, 98 11:08:25 am" To: dean@odyssey.apana.org.au (Dean Hollister) Date: Mon, 9 Nov 1998 12:35:19 -0800 (PST) Cc: ports@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL38 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dean Hollister writes: Has version 2 been ported yet? ssh 2.x has a severely stupid license that inhibits its use. Also, please notice the security hole in ssh 1.2.26 ONLY occurs if you are also using Kerberos V. rone -- Ron Echeverri Numerical Aerospace Simulation Facility DSS/Usenet Administrator NASA Ames Research Center Internet Sysop Mountain View, CA x42771 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 12:40:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18632 for freebsd-ports-outgoing; Mon, 9 Nov 1998 12:40:02 -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 MAA18573 for ; Mon, 9 Nov 1998 12:40:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA29391; Mon, 9 Nov 1998 12:40:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA18044; Mon, 9 Nov 1998 12:32:17 -0800 (PST) (envelope-from nobody) Message-Id: <199811092032.MAA18044@hub.freebsd.org> Date: Mon, 9 Nov 1998 12:32:17 -0800 (PST) From: yds@ingress.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/8634: mysql32[12] mysqld Seg faults durring indstall Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8634 >Category: ports >Synopsis: mysql32[12] mysqld Seg faults durring indstall >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 9 12:40:00 PST 1998 >Last-Modified: >Originator: Yarema >Organization: IngressNet >Release: 3.0-CURRENT >Environment: FreeBSD webber.ingress.net 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Wed Nov 4 18:09:36 EST 1998 yds@webber.ingress.net:/usr/src/sys/compile/SERVER i386 >Description: Using MIT-pthreads mysqld dies with the following in /var/log/messages: Nov 9 12:27:29 webber /kernel: pid 8807 (mysqld), uid 0: exited on signal 11 'make install' produces the following: ===> Generating temporary packing list /bin/mkdir -p /usr/local/share/mysql/mysql /bin/cp /usr/ports/databases/mysql321/work/mysql-3.21.33b/data/mysql/*.frm /usr/local/share/mysql/mysql /usr/local/bin/mysql_install_db Starting mysql server Starting mysqld demon with databases from /var/db/mysql Segmentation fault mysqld demon ended System may be under load. Waiting for mysqld to start... >How-To-Repeat: This is reproducable with both mysql321 and mysql322 ports by doing a 'make install' on a recent ELF 3.0-CURRENT build. >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 Mon Nov 9 13:09:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22565 for freebsd-ports-outgoing; Mon, 9 Nov 1998 13:09:59 -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 NAA22560 for ; Mon, 9 Nov 1998 13:09:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA01825; Mon, 9 Nov 1998 13:10:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA22155; Mon, 9 Nov 1998 13:06:33 -0800 (PST) (envelope-from nobody) Message-Id: <199811092106.NAA22155@hub.freebsd.org> Date: Mon, 9 Nov 1998 13:06:33 -0800 (PST) From: yds@ingress.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/8635: mysql322 w/-lc_r thinks size of char is 0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8635 >Category: ports >Synopsis: mysql322 w/-lc_r thinks size of char is 0 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 9 13:10:00 PST 1998 >Last-Modified: >Originator: Yarema >Organization: IngressNet >Release: 3.0-CURRENT >Environment: FreeBSD webber.ingress.net 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Wed Nov 4 18:09:36 EST 1998 yds@webber.ingress.net:/usr/src/sys/compile/SERVER i386 >Description: NATIVE_THREADS=yes make configure Produces the following output: Using native FreeBSD threads (libc_r). ===> Extracting for mysql-3.22.9b >How-To-Repeat: >Fix: >Audit-Trail: >Unformatted: >> Checksum OK for mysql-3.22.9-beta.tar.gz. ===> Patching for mysql-3.22.9b ===> Applying FreeBSD patches for mysql-3.22.9b ===> Configuring for mysql-3.22.9b 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 root -g wheel checking whether build environment is sane... yes checking whether make sets ${MAKE}... yes checking for working aclocal... found checking for working autoconf... found checking for working automake... found checking for working autoheader... found checking for working makeinfo... found To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 13:18:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23770 for freebsd-ports-outgoing; Mon, 9 Nov 1998 13:18:27 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA23757 for ; Mon, 9 Nov 1998 13:18:24 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA039256184; Mon, 9 Nov 1998 16:16:24 -0500 Date: Mon, 9 Nov 1998 16:16:24 -0500 (EST) From: Bill Fumerola To: Ron Echeverri Cc: Dean Hollister , ports@FreeBSD.ORG Subject: Re: SSH admits exploit in 1.2.26 client (fwd) In-Reply-To: <199811092035.MAA29616@B1FF.nas.nasa.gov> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Mon, 9 Nov 1998, Ron Echeverri wrote: > Dean Hollister writes: > Has version 2 been ported yet? > > ssh 2.x has a severely stupid license that inhibits its use. Also, > please notice the security hole in ssh 1.2.26 ONLY occurs if you are > also using Kerberos V. A port exists in the PR/GNATS system for sshv2, but I don't think it's being committed for the above reason, though you could search for the PR and grab it for yourself. - bill fumerola [root/billf]@chc-chimes.com - computer horizons corp - - ph:(800)252.2421 x128 / bfumerol@computerhorizons.com - BF1560 - "Logic, like whiskey, loses its beneficial effect when taken in too large quantities" -Lord Dunsany To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 13:20:08 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA24109 for freebsd-ports-outgoing; Mon, 9 Nov 1998 13:20:08 -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 NAA24069 for ; Mon, 9 Nov 1998 13:20:04 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA02566; Mon, 9 Nov 1998 13:20:06 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23668; Mon, 9 Nov 1998 13:17:42 -0800 (PST) (envelope-from nobody) Message-Id: <199811092117.NAA23668@hub.freebsd.org> Date: Mon, 9 Nov 1998 13:17:42 -0800 (PST) From: yds@ingress.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/8636: configure for python-1.5.1 thinks cc is a cross compiler Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8636 >Category: ports >Synopsis: configure for python-1.5.1 thinks cc is a cross compiler >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 9 13:20:04 PST 1998 >Last-Modified: >Originator: Yarema >Organization: IngressNet >Release: 3.0-CURRENT >Environment: FreeBSD webber.ingress.net 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Wed Nov 4 18:09:36 EST 1998 yds@webber.ingress.net:/usr/src/sys/compile/SERVER i386 >Description: ===> Configuring for python-1.5.1 creating cache ./config.cache checking MACHDEP... freebsd3 checking CCC... checking for --without-gcc... no checking for gcc... cc checking whether the C compiler (cc -pipe -O2 -D_THREAD_SAFE -pthread -rdynamic) works... yes checking whether the C compiler (cc -pipe -O2 -D_THREAD_SAFE -pthread -rdynamic) is a cross-compiler... yes checking whether we are using GNU C... yes checking whether cc accepts -g... yes checking LINKCC... $(PURIFY) $(CC) checking for ranlib... ranlib checking for ar... ar checking how to run the C preprocessor... cc -E checking for AIX... no checking for minix/config.h... no checking whether cc accepts -Olimit 1500... configure: error: can not run test program while cross compiling *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. >How-To-Repeat: On recent ELF 3.0-CURRENT do: make configure >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 Mon Nov 9 15:50:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA08399 for freebsd-ports-outgoing; Mon, 9 Nov 1998 15:50:03 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from zippy.cdrom.com (zippy.cdrom.com [204.216.27.228]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA08336; Mon, 9 Nov 1998 15:49:59 -0800 (PST) (envelope-from jkh@zippy.cdrom.com) Received: from zippy.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by zippy.cdrom.com (8.9.1/8.9.1) with ESMTP id PAA04357; Mon, 9 Nov 1998 15:50:48 -0800 (PST) (envelope-from jkh@zippy.cdrom.com) To: asami@FreeBSD.ORG (Satoshi Asami) cc: jkh@time.cdrom.com, mike@smith.net.au, mark@grondar.za, sos@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Who built XFree86 with Kerberos? In-reply-to: Your message of "Fri, 06 Nov 1998 14:57:48 PST." <199811062257.OAA10011@silvia.hip.berkeley.edu> Date: Mon, 09 Nov 1998 15:50:48 -0800 Message-ID: <4353.910655448@zippy.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > As for the package building itself, I think you got the wrong > impression. It was the idea from the very beginning that Justin was > going to build 3.0 packages. He's been the one that's been building > packages-current throughout its lifetime. (In fact, I have never > built packages-current since it split from packages-stable.) Ah. Sorry for the confusion over this then. I think Mike's just about got the new drive array ready (we got one of wcarchive's old cast-off drive racks) and we should be seeing at least 16-20GB of storage coming on line on bento very shortly. > (a) is not going to work. The ports collection is just not uniform > enough (like src) that it requires a lot of hand-tweaking to build. > > The problem is that for most committers, the ports collection is his > ports and some other ports it depends on. When you try to build the > entire thing, all hell breaks loose. See all the MANUAL_PACKAGE_BUILD > and LOOP_OPTIONs stuff? That's your chewing gum and duct tape right > there. Hmmmm. Well, while I can certainly understand the situation, I still worry somewhat about how well all of this is going to scale when we get up past 3000 packages. Sure, it's a very non-linear task and requires a large amount of special-case work, but then so does the building of any arbitrary port and it seems to me that there might (and I emphasize *might*) be just another layer of automation and abstraction we need to and can add here. If disk space is the prime motivator here then by all means let's add more disk. We have plenty of physical space in bento now that we've rack-mounted it and, as I noted, we now have a seperate drive array rack that can hold up to 9 drives. > Also, you can't just take a "snapshot" and call it a release. Unless > that automated builds sets FOR_CDROM, you'll have various bits that > can't be put on a CDROM on the ftp site. There is also an issue of Does this statement still hold in light of your recent commits to support cleaning of the package collection for this? > Besides, nobody around here has enough disk space to build the entire > package tree from the top. I don't even know how much space it takes > now, but my guess is about 15GB. (Subdirectories like lang and Hah. We can easily get twice that much space together without even breaking a sweat. Watch this space for details. ;) > Justin's help), minus the pay. If you give me a couple weeks' advance > notice, I can build the entire package tree for any CDROM easily. (I > do it every couple of weeks anyway---it's just a matter of doing it at > the right time.) OK. Well, then please consider November 15th your advance notice for a 2.2.8 release on November 30th. > As I see, the problem has always been the lack of communication > between you and me. There were a couple of times that I had a wrong > idea about the release date (once when I sent you a mail asking me and If this has been a problem then I apologise - I'll try to make a more concerted effort to keep you and the rest of the ports team in the communications loop. > Maybe we can set up a "release-engineers" alias or something that we > (you, I, msmith, and whoever else that's involved in that particular > release) use to communicate? Done: releng: jkh,asami,msmith,jseger,steve If you want anyone else added to the "releng" alias, please let me know. release-engineers is another alias for this alias, for the more literal-minded among us. :-) > Here's an idea. The only way automation will work is if you start > building every package with an empty /usr/local. If you can get me > enough diskspace, I'll promise to work on a scheme in which for each > port, a script will set up a chroot directory and build the package in > there. Actually we probably need multiple machines too, since it will > take a very long time (all dependencies will always be built from > scratch too) to do it this way. All of that is doable. I can't give you an 8 machine cluster, but I probably could arrange a 3 machine cluster (paddock, builder, bento) with a shared 30-40GB chunk of space and their own 9GB local caches for speed (build to cache, ship from cache to shared collection in the background). I'll take you up on that promise! :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 16:56:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA16830 for freebsd-ports-outgoing; Mon, 9 Nov 1998 16:56:37 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA16821; Mon, 9 Nov 1998 16:56:36 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id QAA02023; Mon, 9 Nov 1998 16:53:56 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199811100053.QAA02023@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Jordan K. Hubbard" cc: asami@FreeBSD.ORG (Satoshi Asami), jkh@time.cdrom.com, mike@smith.net.au, mark@grondar.za, sos@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Who built XFree86 with Kerberos? In-reply-to: Your message of "Mon, 09 Nov 1998 15:50:48 PST." <4353.910655448@zippy.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 09 Nov 1998 16:53:56 -0800 From: Mike Smith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > As for the package building itself, I think you got the wrong > > impression. It was the idea from the very beginning that Justin was > > going to build 3.0 packages. He's been the one that's been building > > packages-current throughout its lifetime. (In fact, I have never > > built packages-current since it split from packages-stable.) > > Ah. Sorry for the confusion over this then. I think Mike's just > about got the new drive array ready (we got one of wcarchive's old > cast-off drive racks) and we should be seeing at least 16-20GB of > storage coming on line on bento very shortly. Just a status update: 4 of the 5 disks are ready, the 5th is off for warranty return. Christopher managed to hide the other free disks so we're hung up on this until the replacement arrives. And a thought - aside from backup tasks, do we need builder for anything? Do you plan to do the 2.2.8 build on it, or at home? The current disk profile is: Paddock: 9GB Builder: 3GB (system) 9GB scratch Bento: 20GB (ccd) And the new addition will be another 20GB, probably on a Vinum concatenated volume. This can go either on Paddock or Bento, as desired. If there's real interest, we can move stuff off the ccd array on bento and push the two sets together into a single 40GB playpen, should that be preferred. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 17:20:03 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19361 for freebsd-ports-outgoing; Mon, 9 Nov 1998 17:20:03 -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 RAA19330 for ; Mon, 9 Nov 1998 17:20:00 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA16416; Mon, 9 Nov 1998 17:20:01 -0800 (PST) Date: Mon, 9 Nov 1998 17:20:01 -0800 (PST) Message-Id: <199811100120.RAA16416@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Cy Schubert Subject: Re: ports/8601: krb5 port krb5kdc bus errror Reply-To: Cy Schubert Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/8601; it has been noted by GNATS. From: Cy Schubert To: freebsd-gnats-submit@freebsd.org, cschuber@uumail.gov.bc.ca Cc: cy@uumail.gov.bc.ca Subject: Re: ports/8601: krb5 port krb5kdc bus errror Date: Sun, 08 Nov 1998 10:28:46 -0800 Solution: Replace patch-ab with the following. (Tabs may not have been replicated properly in this submission). --- util/makeshlib.sh.orig Fri Feb 6 19:45:49 1998 +++ util/makeshlib.sh Sun Nov 8 09:35:09 1998 @@ -17,6 +17,23 @@ VERSION="$1" ; shift case $host in +*-*-freebsd*) + FILES=`for i + do + sed -e "s;^;$i/shared/;" -e "s; ; $i/shared/;g" -e "s;^$i/shared/\$;;" $i/DONE + done` + if test "$PORTOBJFORMAT" = "elf"; then + # Hack to deal with the fact that with cc options are different + # from ld... + ldflags="$ldflags -soname $library" + echo ld -Bshareable $ldflags -o $library $FILES $libdirfl $liblist + ld -Bshareable $ldflags -o $library $FILES $libdirfl $liblist + else + echo $CC -shared -Wl,-x $ldflags $libdirfl $liblist -o $library `lorder $FILES | tsort -q` + $CC -shared -Wl,-x $ldflags $libdirfl $liblist -o $library `lorder $FILES | tsort -q` + fi + stat=$? + ;; *-*-netbsd*) FILES=`for i do To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 17:22:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA19832 for freebsd-ports-outgoing; Mon, 9 Nov 1998 17:22:25 -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 RAA19710; Mon, 9 Nov 1998 17:22:02 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA16683; Mon, 9 Nov 1998 17:22:04 -0800 (PST) Date: Mon, 9 Nov 1998 17:22:04 -0800 (PST) Message-Id: <199811100122.RAA16683@freefall.freebsd.org> To: hanspb@vgs.sn.no, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7853 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port klyx v0.9.7 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Mon Nov 9 17:21:46 PST 1998 State-Changed-Why: Superceded by PR #8579 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 17:42:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22023 for freebsd-ports-outgoing; Mon, 9 Nov 1998 17:42:24 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA21984; Mon, 9 Nov 1998 17:42:15 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id TAA19276; Mon, 9 Nov 1998 19:40:18 -0600 (CST) Date: Mon, 9 Nov 1998 19:40:18 -0600 (CST) From: Steve Price To: Mike Smith cc: "Jordan K. Hubbard" , Satoshi Asami , jkh@time.cdrom.com, mark@grondar.za, sos@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Who built XFree86 with Kerberos? In-Reply-To: <199811100053.QAA02023@dingo.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 You guys are incredible! Thanks for setting this up Mike! Over the weekend I worked up a little perl script that is capable of automating the build of the entire ports tree. If someone could tell me the easiest way to setup a chroot'd environment, I'd give it a couple of tweeks on my box and then maybe we can turn it loose on bento? :) Thanks, Steve PS: I think the 20GB volume should be enough, but I sure like the sounds of the "40GB playpen". ;) On Mon, 9 Nov 1998, Mike Smith wrote: # Just a status update: 4 of the 5 disks are ready, the 5th is off for # warranty return. Christopher managed to hide the other free disks so # we're hung up on this until the replacement arrives. # # And a thought - aside from backup tasks, do we need builder for # anything? Do you plan to do the 2.2.8 build on it, or at home? # # The current disk profile is: # # Paddock: # 9GB # # Builder: # 3GB (system) # 9GB scratch # # Bento: # 20GB (ccd) # # And the new addition will be another 20GB, probably on a Vinum # concatenated volume. This can go either on Paddock or Bento, as # desired. If there's real interest, we can move stuff off the ccd array # on bento and push the two sets together into a single 40GB playpen, # should that be preferred. # # -- # \\ Sometimes you're ahead, \\ Mike Smith # \\ sometimes you're behind. \\ mike@smith.net.au # \\ The race is long, and in the \\ msmith@freebsd.org # \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 17:51:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA22924 for freebsd-ports-outgoing; Mon, 9 Nov 1998 17:51:39 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from zippy.cdrom.com (zippy.cdrom.com [204.216.27.228]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA22918; Mon, 9 Nov 1998 17:51:37 -0800 (PST) (envelope-from jkh@zippy.cdrom.com) Received: from zippy.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by zippy.cdrom.com (8.9.1/8.9.1) with ESMTP id RAA00442; Mon, 9 Nov 1998 17:52:20 -0800 (PST) (envelope-from jkh@zippy.cdrom.com) To: Steve Price cc: Mike Smith , Satoshi Asami , jkh@time.cdrom.com, mark@grondar.za, sos@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Who built XFree86 with Kerberos? In-reply-to: Your message of "Mon, 09 Nov 1998 19:40:18 CST." Date: Mon, 09 Nov 1998 17:52:20 -0800 Message-ID: <438.910662740@zippy.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > If someone could tell me the easiest way to setup a chroot'd > environment, I'd give it a couple of tweeks on my box and > then maybe we can turn it loose on bento? :) I think the best way would be to simply do the following: 1. extract a bindist into /some/dir (the bin/install.sh script will even respect DESTDIR=/some/dir when specified), 2. go into /some/dir and chuck out everything you don't actually need for hosting ports builds. 3. pack up /some/dir as a new tarball and have the builder script extract this whenever it wants a new chroot environment. This is one heck of a lot faster than doing make installs with DESTDIR set. :-) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 17:57:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA23829 for freebsd-ports-outgoing; Mon, 9 Nov 1998 17:57:57 -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 RAA23822; Mon, 9 Nov 1998 17:57:50 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA18697; Mon, 9 Nov 1998 17:57:53 -0800 (PST) Date: Mon, 9 Nov 1998 17:57:53 -0800 (PST) Message-Id: <199811100157.RAA18697@freefall.freebsd.org> To: hetzels@westbend.net, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8522 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW Update port: Apache FrontPage v1.3.3 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Mon Nov 9 17:57:39 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 Mon Nov 9 18:06:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA24964 for freebsd-ports-outgoing; Mon, 9 Nov 1998 18:06:12 -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 SAA24833; Mon, 9 Nov 1998 18:05:49 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA19096; Mon, 9 Nov 1998 18:05:52 -0800 (PST) Date: Mon, 9 Nov 1998 18:05:52 -0800 (PST) Message-Id: <199811100205.SAA19096@freefall.freebsd.org> To: pfgiffun@bachue.usc.unal.edu.co, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8530 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update to the kawk port State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Mon Nov 9 18:03:59 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 Mon Nov 9 18:13:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA25680 for freebsd-ports-outgoing; Mon, 9 Nov 1998 18:13:00 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from zippy.cdrom.com (zippy.cdrom.com [204.216.27.228]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA25669; Mon, 9 Nov 1998 18:12:50 -0800 (PST) (envelope-from jkh@zippy.cdrom.com) Received: from zippy.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by zippy.cdrom.com (8.9.1/8.9.1) with ESMTP id SAA00625; Mon, 9 Nov 1998 18:13:35 -0800 (PST) (envelope-from jkh@zippy.cdrom.com) To: Mike Smith cc: asami@FreeBSD.ORG (Satoshi Asami), jkh@time.cdrom.com, mark@grondar.za, sos@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Who built XFree86 with Kerberos? In-reply-to: Your message of "Mon, 09 Nov 1998 16:53:56 PST." <199811100053.QAA02023@dingo.cdrom.com> Date: Mon, 09 Nov 1998 18:13:34 -0800 Message-ID: <621.910664014@zippy.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Just a status update: 4 of the 5 disks are ready, the 5th is off for > warranty return. Christopher managed to hide the other free disks so > we're hung up on this until the replacement arrives. I think we should just buy some drives. Buy them now. They are cheap and we can afford them. :) Just get two of what we previously discussed. > And a thought - aside from backup tasks, do we need builder for > anything? Do you plan to do the 2.2.8 build on it, or at home? That's a good point - I could see the 9gb drive in builder going to a communal partition if we're going to go to the big playpen model anyway; it can just as easily write 2.2.8 over there. > Paddock: > 9GB Keep. > Builder: > 3GB (system) > 9GB scratch Reduce to 3GB and leach off playpen. > Bento: > 20GB (ccd) Clean all extraneous grot, back up what needs to be preserved (over to paddock?), merge with new array. > desired. If there's real interest, we can move stuff off the ccd array > on bento and push the two sets together into a single 40GB playpen, > should that be preferred. I think we should - it will let us handle really large transient loads if we have one big chunk rather than two halves, and I'm a believer in high transient loads. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 18:21:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA26441 for freebsd-ports-outgoing; Mon, 9 Nov 1998 18:21:17 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA26435; Mon, 9 Nov 1998 18:21:12 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id SAA02469; Mon, 9 Nov 1998 18:19:48 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199811100219.SAA02469@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: "Jordan K. Hubbard" cc: asami@FreeBSD.ORG (Satoshi Asami), jkh@time.cdrom.com, mark@grondar.za, sos@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: Who built XFree86 with Kerberos? In-reply-to: Your message of "Mon, 09 Nov 1998 18:13:34 PST." <621.910664014@zippy.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 09 Nov 1998 18:19:48 -0800 From: Mike Smith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Just a status update: 4 of the 5 disks are ready, the 5th is off for > > warranty return. Christopher managed to hide the other free disks so > > we're hung up on this until the replacement arrives. > > I think we should just buy some drives. Buy them now. They are cheap > and we can afford them. :) Just get two of what we previously > discussed. Ok. I've updated the shooing list accordingly. > > And a thought - aside from backup tasks, do we need builder for > > anything? Do you plan to do the 2.2.8 build on it, or at home? > > That's a good point - I could see the 9gb drive in builder going to a > communal partition if we're going to go to the big playpen model > anyway; it can just as easily write 2.2.8 over there. Done. I'll rescue it immediately. Who is "jrh"? > > Bento: > > 20GB (ccd) > > Clean all extraneous grot, back up what needs to be preserved > (over to paddock?), merge with new array. Justin, this is really more for you again. You might want to check with David O'Brien, as I see he's found more space to clutter with his stuff again. 8) > > desired. If there's real interest, we can move stuff off the ccd array > > on bento and push the two sets together into a single 40GB playpen, > > should that be preferred. > > I think we should - it will let us handle really large transient loads > if we have one big chunk rather than two halves, and I'm a believer in > high transient loads. Ok. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Mon Nov 9 23:06:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA20217 for freebsd-ports-outgoing; Mon, 9 Nov 1998 23:06:50 -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 XAA20207; Mon, 9 Nov 1998 23:06:46 -0800 (PST) (envelope-from steve@FreeBSD.org) From: Steve Price Received: (from steve@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA21876; Mon, 9 Nov 1998 23:06:48 -0800 (PST) Date: Mon, 9 Nov 1998 23:06:48 -0800 (PST) Message-Id: <199811100706.XAA21876@freefall.freebsd.org> To: honda@kashio.info.mie-u.ac.jp, steve@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8583 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update ja-rxvt 2.4.7 -> 2.4.9 State-Changed-From-To: open-closed State-Changed-By: steve State-Changed-When: Mon Nov 9 23:06:30 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 Tue Nov 10 00:30:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA25471 for freebsd-ports-outgoing; Tue, 10 Nov 1998 00:30:04 -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 AAA25412 for ; Tue, 10 Nov 1998 00:29:59 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA25408; Tue, 10 Nov 1998 00:30:01 -0800 (PST) Date: Tue, 10 Nov 1998 00:30:01 -0800 (PST) Message-Id: <199811100830.AAA25408@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Thomas Gellekum Subject: Re: ports/8636: configure for python-1.5.1 thinks cc is a cross compiler Reply-To: Thomas Gellekum Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/8636; it has been noted by GNATS. From: Thomas Gellekum To: yds@ingress.net Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/8636: configure for python-1.5.1 thinks cc is a cross compiler Date: 10 Nov 1998 09:24:47 +0100 yds@ingress.net writes: > checking whether the C compiler (cc -pipe -O2 -D_THREAD_SAFE -pthread -rdynamic) is a cross-compiler... yes Could you please post the part from config.log with this check? IIRC, configure tries to run a small program for this check. If that fails for some reason it may think cc is a cross-compiler. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 01:48:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA02845 for freebsd-ports-outgoing; Tue, 10 Nov 1998 01:48:56 -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 BAA02838; Tue, 10 Nov 1998 01:48:53 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca6-19.ix.netcom.com [205.186.213.19]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id BAA24475; Tue, 10 Nov 1998 01:48:36 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id BAA09954; Tue, 10 Nov 1998 01:48:33 -0800 (PST) Date: Tue, 10 Nov 1998 01:48:33 -0800 (PST) Message-Id: <199811100948.BAA09954@silvia.hip.berkeley.edu> To: vanilla@FreeBSD.ORG Cc: ports@FreeBSD.ORG Subject: gtk11 From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Vanilla, It seems gtk11 has broken a whole bunch of ports, can you revert it (unless you can fix all the ports, which is fine for me :)? We need to figure out how to handle this. It is fast becoming another tcl. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 02:14:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA05126 for freebsd-ports-outgoing; Tue, 10 Nov 1998 02:14:16 -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 CAA05048; Tue, 10 Nov 1998 02:13:42 -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 CAA00599; Tue, 10 Nov 1998 02:13:45 -0800 (PST) Date: Tue, 10 Nov 1998 02:13:45 -0800 (PST) Message-Id: <199811101013.CAA00599@freefall.freebsd.org> To: laskavy@gambit.msk.su, tg@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8628 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: lesstif: port update State-Changed-From-To: open-closed State-Changed-By: tg State-Changed-When: Tue Nov 10 02:12:37 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 Tue Nov 10 07:19:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA04708 for freebsd-ports-outgoing; Tue, 10 Nov 1998 07:19:59 -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 HAA04698 for ; Tue, 10 Nov 1998 07:19:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA23114; Tue, 10 Nov 1998 07:20:01 -0800 (PST) Received: from smtp01.odn.ne.jp (smtp01.odn.ne.jp [143.90.130.27]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA04430 for ; Tue, 10 Nov 1998 07:17:44 -0800 (PST) (envelope-from shigeisp@pop02.odn.ne.jp) Received: from athena.shigelan.priv.jp (OSAcc-09p38.ppp.odn.ad.jp [143.90.241.176]) by smtp01.odn.ne.jp (8.8.8+2.7Wbeta7/3.6W/9811041555) with ESMTP id AAA22798; Wed, 11 Nov 1998 00:17:22 +0900 (JST) Received: from artemis.shigelan.priv.jp (artemis.shigelan.priv.jp [192.168.74.3]) by athena.shigelan.priv.jp (8.8.8/3.6W-athena) with ESMTP id AAA15706; Wed, 11 Nov 1998 00:17:16 +0900 (JST) Received: (from shige@localhost) by artemis.shigelan.priv.jp (8.9.1/3.7Wpl1-artemis) id AAA05202; Wed, 11 Nov 1998 00:17:15 +0900 (JST) Message-Id: <199811101517.AAA22798@smtp01.odn.ne.jp> Date: Wed, 11 Nov 1998 00:17:15 +0900 (JST) From: shige@kuis.kyoto-u.ac.jp Reply-To: shige@kuis.kyoto-u.ac.jp To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: shige@kuis.kyoto-u.ac.jp X-Send-Pr-Version: 3.2 Subject: ports/8643: Update port: japanese/lynx-current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8643 >Category: ports >Synopsis: Update port: japanese/lynx-current >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 10 07:20:00 PST 1998 >Last-Modified: >Originator: Shigeyuki FUKUSHIMA >Organization: Dept. of Information Science, Kyoto Univ., JAPAN >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD 3.0-CURRENT i386 FreeBSD 2.2.7-RELEASE i386 >Description: Update port: japanese/lynx-current This port is lynx development version. The current development version is 2.8.2dev.1. Thank you. -- shige >How-To-Repeat: >Fix: diff -urN /usr/ports/japanese/lynx-current/Makefile japanese/lynx-current/Makefile --- /usr/ports/japanese/lynx-current/Makefile Thu Oct 8 07:02:04 1998 +++ japanese/lynx-current/Makefile Tue Nov 10 23:34:03 1998 @@ -6,21 +6,19 @@ # $Id: Makefile,v 1.3 1998/10/06 22:29:29 asami Exp $ # -DISTNAME= lynx2.8.1dev.22 -PKGNAME= ja-lynx-2.8.1.22 +DISTNAME= lynx2.8.2dev.1 +PKGNAME= ja-lynx-2.8.2.1 CATEGORIES= japanese www -MASTER_SITES= ftp://sol.slcc.edu/pub/lynx/current/ +MASTER_SITES= ftp://sol.slcc.edu/pub/lynx/current/ MAINTAINER= shige@kuis.kyoto-u.ac.jp -BROKEN= fetch - NO_LATEST_LINK= YES -WRKSRC= ${WRKDIR}/lynx2-8-1 -GNU_CONFIGURE= YES -CONFIGURE_ARGS= --with-screen=ncurses --with-zlib --libdir="${PREFIX}/etc" -MAKEFILE= makefile -INSTALL_TARGET= install install-help +WRKSRC= ${WRKDIR}/lynx2-8-1 +GNU_CONFIGURE= YES +CONFIGURE_ARGS= --with-screen=ncurses --with-zlib --libdir="${PREFIX}/etc" +MAKEFILE= makefile +INSTALL_TARGET= install install-help install-doc MAN1= lynx.1 post-install: diff -urN /usr/ports/japanese/lynx-current/files/md5 japanese/lynx-current/files/md5 --- /usr/ports/japanese/lynx-current/files/md5 Wed Aug 26 07:02:23 1998 +++ japanese/lynx-current/files/md5 Tue Nov 10 22:04:20 1998 @@ -1 +1 @@ -MD5 (lynx2.8.1dev.22.tar.gz) = 93c14f4c7599f828f10c541f16ec892e +MD5 (lynx2.8.2dev.1.tar.gz) = fb8d6ec40da7d437514d841209421d2d diff -urN /usr/ports/japanese/lynx-current/patches/patch-aa japanese/lynx-current/patches/patch-aa --- /usr/ports/japanese/lynx-current/patches/patch-aa Tue Aug 11 08:41:24 1998 +++ japanese/lynx-current/patches/patch-aa Tue Nov 10 23:38:42 1998 @@ -1,19 +1,23 @@ ---- makefile.in.orig Fri Jul 31 18:34:41 1998 -+++ makefile.in Mon Aug 10 02:12:53 1998 -@@ -37,7 +37,7 @@ +--- makefile.in.orig Fri Nov 6 23:29:41 1998 ++++ makefile.in Tue Nov 10 23:38:26 1998 +@@ -41,10 +41,10 @@ libdir= @libdir@ + ## Where you want the doc-files installed +-docdir= @libdir@/lynx_doc ++docdir= @datadir@/doc/lynx + ## Where you want the help-files installed -helpdir= @libdir@/lynx_help +helpdir= $(prefix)/lib/lynx_help ##set the relative location of the WWW library Implementation directory, ##from this directory -@@ -250,6 +250,7 @@ - (cd $(srcdir)/lynx_help && tar cf - . ) | ( cd $(helpdir) && tar xf - ) +@@ -262,6 +262,7 @@ (cd $(srcdir) && tar cf - C[HO]* PROBLEMS README samples test ) | \ - ( cd $(helpdir) && tar xf - ) -+ cp $(srcdir)/lynx.cfg $(helpdir)/samples/lynx.cfg + ( cd $(docdir) && tar xf - ) -rm -f $(libdir)/lynx.tmp - sh -c 'if test -f $(libdir)/lynx.cfg ; then \ - mv $(libdir)/lynx.cfg $(libdir)/lynx.tmp ; \ ++ cp $(srcdir)/lynx.cfg $(docdir)/samples/lynx.cfg + + # HPUX 'sed' does not seem to like '=' as pattern delimiter. + FIX_SED = tr '=' '%' diff -urN /usr/ports/japanese/lynx-current/patches/patch-af japanese/lynx-current/patches/patch-af --- /usr/ports/japanese/lynx-current/patches/patch-af Tue Aug 11 08:41:24 1998 +++ japanese/lynx-current/patches/patch-af Tue Nov 10 22:21:41 1998 @@ -1,5 +1,5 @@ ---- src/LYStrings.c.orig Thu Aug 6 21:28:22 1998 -+++ src/LYStrings.c Mon Aug 10 02:24:30 1998 +--- src/LYStrings.c.orig Tue Sep 22 20:05:12 1998 ++++ src/LYStrings.c Tue Nov 10 22:07:25 1998 @@ -23,6 +23,7 @@ extern BOOL HTPassHighCtrlRaw; @@ -8,7 +8,7 @@ /* If you want to add mouse support for some new platform, it's fairly ** simple to do. Once you've determined the X and Y coordinates of -@@ -1036,6 +1037,9 @@ +@@ -1351,6 +1352,9 @@ #define DspWdth edit->dspwdth #define DspStart edit->xpan #define Margin edit->margin @@ -18,7 +18,7 @@ PUBLIC void LYSetupEdit ARGS4( EDREC *, edit, -@@ -1050,6 +1054,9 @@ +@@ -1365,6 +1369,9 @@ edit->pad = ' '; edit->dirty = TRUE; edit->panon = FALSE; @@ -28,7 +28,7 @@ StrLen = strlen(old); MaxLen = maxstr; -@@ -1090,6 +1097,31 @@ +@@ -1405,6 +1412,31 @@ } } @@ -60,7 +60,7 @@ PUBLIC int LYEdit1 ARGS4( EDREC *, edit, int, ch, -@@ -1103,6 +1135,13 @@ +@@ -1418,6 +1450,13 @@ if (MaxLen <= 0) return(0); /* Be defensive */ @@ -74,7 +74,7 @@ length = strlen(&Buf[0]); StrLen = length; -@@ -1121,18 +1160,47 @@ +@@ -1436,18 +1475,47 @@ /* * ch is printable or ISO-8859-1 escape character. */ @@ -124,7 +124,7 @@ /* * Backword. * Definition of word is very naive: 1 or more a/n characters. -@@ -1141,16 +1209,58 @@ +@@ -1456,16 +1524,58 @@ Pos--; while (Pos && isalnum(Buf[Pos-1])) Pos--; @@ -183,7 +183,7 @@ break; case LYE_ERASE: -@@ -1205,6 +1315,10 @@ +@@ -1520,6 +1630,10 @@ */ if (Pos >= length) break; @@ -194,7 +194,7 @@ Pos++; /* fall through */ -@@ -1212,12 +1326,30 @@ +@@ -1527,12 +1641,30 @@ /* * Delete preceding character. */ @@ -225,7 +225,7 @@ Buf[i] = 0; break; -@@ -1227,9 +1359,20 @@ +@@ -1542,9 +1674,20 @@ */ if (length == 0 || Pos == length) break; @@ -246,7 +246,7 @@ Buf[i] = 0; break; -@@ -1237,8 +1380,16 @@ +@@ -1552,8 +1695,16 @@ /* * Move cursor to the right. */ @@ -263,7 +263,7 @@ break; case LYE_BACK: -@@ -1246,7 +1397,14 @@ +@@ -1561,7 +1712,14 @@ * Left-arrow move cursor to the left. */ if (Pos > 0) @@ -278,7 +278,7 @@ break; case LYE_UPPER: -@@ -1275,6 +1433,19 @@ +@@ -1590,6 +1748,19 @@ int padsize; char *str; char buffer[3]; @@ -298,7 +298,7 @@ buffer[0] = buffer[1] = buffer[2] = '\0'; if (!edit->dirty || (DspWdth == 0)) -@@ -1299,16 +1470,57 @@ +@@ -1614,16 +1785,57 @@ * data entry at low baudrates. */ if ((DspStart + DspWdth) <= length) @@ -356,7 +356,7 @@ nrdisplayed = length-DspStart; if (nrdisplayed > DspWdth) -@@ -1327,15 +1539,29 @@ +@@ -1642,15 +1854,29 @@ !(LYCharSet_UC[current_char_set].like8859 & UCT_R_8859SPECL))))) { addch(' '); @@ -386,7 +386,7 @@ } } } -@@ -1352,16 +1578,39 @@ +@@ -1667,16 +1893,39 @@ */ if (edit->panon) { if ((DspStart + nrdisplayed) < length) { @@ -426,7 +426,7 @@ refresh(); } -@@ -1412,12 +1661,21 @@ +@@ -1727,12 +1976,21 @@ * character in the current display character set. * Otherwise, we treat this as LYE_ENTER. */ @@ -448,7 +448,7 @@ case LYE_ENTER: /* * Terminate the string and return. -@@ -1441,8 +1699,11 @@ +@@ -1756,8 +2014,11 @@ break; default: @@ -462,21 +462,3 @@ } } -@@ -1732,7 +1993,7 @@ - } - if (*tmpchptr == '\0') { - break; -- } -+ } - } - } else if (!(IS_UTF_EXTRA(*chptr) || - IsSpecialAttrChar(*chptr))) { -@@ -1871,7 +2132,7 @@ - } - if (*tmpchptr == '\0') { - break; -- } -+ } - } - } else if (!(IS_UTF_EXTRA(*chptr) || - IsSpecialAttrChar(*chptr))) { diff -urN /usr/ports/japanese/lynx-current/pkg/PLIST japanese/lynx-current/pkg/PLIST --- /usr/ports/japanese/lynx-current/pkg/PLIST Wed Sep 2 07:05:38 1998 +++ japanese/lynx-current/pkg/PLIST Tue Nov 10 23:59:37 1998 @@ -1,11 +1,6 @@ bin/lynx etc/lynx.cfg -lib/lynx_help/COPYHEADER -lib/lynx_help/COPYING -lib/lynx_help/CHANGES lib/lynx_help/Lynx_users_guide.html -lib/lynx_help/PROBLEMS -lib/lynx_help/README lib/lynx_help/about_lynx.html lib/lynx_help/keystrokes/bookmark_help.html lib/lynx_help/keystrokes/cookie_help.html @@ -25,27 +20,33 @@ lib/lynx_help/lynx-dev.html lib/lynx_help/lynx_help_main.html lib/lynx_help/lynx_url_support.html -lib/lynx_help/samples/jumpsUnix.html -lib/lynx_help/samples/jumpsVMS.html -lib/lynx_help/samples/lynx-keymaps -lib/lynx_help/samples/lynx.com -lib/lynx_help/samples/lynx.cfg -lib/lynx_help/samples/lynx.lss -lib/lynx_help/samples/mailcap -lib/lynx_help/samples/mime.types -lib/lynx_help/test/ALT88592.html -lib/lynx_help/test/ISO_LATIN1_test.html -lib/lynx_help/test/README.txt -lib/lynx_help/test/TestComment.html -lib/lynx_help/test/c1.html -lib/lynx_help/test/iso8859-1.html -lib/lynx_help/test/iso88592.html -lib/lynx_help/test/raw8bit.html -lib/lynx_help/test/spaces.html -lib/lynx_help/test/sgml.html -lib/lynx_help/test/tabtest.html -lib/lynx_help/test/unicode.html -@dirrm lib/lynx_help/test -@dirrm lib/lynx_help/samples +share/doc/lynx/CHANGES +share/doc/lynx/COPYHEADER +share/doc/lynx/COPYING +share/doc/lynx/PROBLEMS +share/doc/lynx/README +share/doc/lynx/samples/jumpsUnix.html +share/doc/lynx/samples/jumpsVMS.html +share/doc/lynx/samples/lynx-keymaps +share/doc/lynx/samples/lynx.cfg +share/doc/lynx/samples/lynx.com +share/doc/lynx/samples/lynx.lss +share/doc/lynx/samples/mailcap +share/doc/lynx/samples/mime.types +share/doc/lynx/test/ALT88592.html +share/doc/lynx/test/ISO_LATIN1_test.html +share/doc/lynx/test/README.txt +share/doc/lynx/test/TestComment.html +share/doc/lynx/test/c1.html +share/doc/lynx/test/iso8859-1.html +share/doc/lynx/test/iso88592.html +share/doc/lynx/test/raw8bit.html +share/doc/lynx/test/sgml.html +share/doc/lynx/test/spaces.html +share/doc/lynx/test/tabtest.html +share/doc/lynx/test/unicode.html +@dirrm share/doc/lynx/test +@dirrm share/doc/lynx/samples +@dirrm share/doc/lynx @dirrm lib/lynx_help/keystrokes @dirrm lib/lynx_help >Audit-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 Nov 10 07:29:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA06217 for freebsd-ports-outgoing; Tue, 10 Nov 1998 07:29:59 -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 HAA06210 for ; Tue, 10 Nov 1998 07:29:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA23519; Tue, 10 Nov 1998 07:30:01 -0800 (PST) Received: from ns.okbmei.msk.su (ns.okbmei.msk.su [194.190.170.19]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA05815 for ; Tue, 10 Nov 1998 07:26:25 -0800 (PST) (envelope-from lukin@okbmei.msk.su) Received: (from lukin@localhost) by ns.okbmei.msk.su (8.9.1/8.9.1) id SAA08398; Tue, 10 Nov 1998 18:25:07 +0300 (MSK) Message-Id: <199811101525.SAA08398@ns.okbmei.msk.su> Date: Tue, 10 Nov 1998 18:25:07 +0300 (MSK) From: Kostya Lukin Reply-To: lukin@okbmei.msk.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8644: Master site for asfiles port changes Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8644 >Category: ports >Synopsis: Master site for asfiles port changes >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 Nov 10 07:30:00 PST 1998 >Last-Modified: >Originator: Kostya Lukin >Organization: OKB MEI >Release: FreeBSD 2.2.5-RELEASE i386 >Environment: >Description: Distfile on master site was deleted >How-To-Repeat: >Fix: Enclosed patch must be added --- Makefile.orig Tue Nov 10 18:19:14 1998 +++ Makefile Tue Nov 10 18:13:15 1998 @@ -9,7 +9,7 @@ DISTNAME= ASFiles-1.0 PKGNAME= asfiles-1.0 CATEGORIES= x11-fm -MASTER_SITES= http://w3.one.net/~roz/software/x11/windowmaker/ +MASTER_SITES= ftp://ftp.okbmei.msk.su/pub/os/unix/X11/fileman/ MAINTAINER= lukin@okbmei.msk.su >Audit-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 Nov 10 07:42:54 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07357 for freebsd-ports-outgoing; Tue, 10 Nov 1998 07:42:54 -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 HAA07316; Tue, 10 Nov 1998 07:42:12 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA24149; Tue, 10 Nov 1998 07:42:14 -0800 (PST) Date: Tue, 10 Nov 1998 07:42:14 -0800 (PST) Message-Id: <199811101542.HAA24149@freefall.freebsd.org> To: kushn@mail.kar.net, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7344 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: wmavgload-0.6.1 State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Tue Nov 10 07:41:22 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 Tue Nov 10 07:49:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA07914 for freebsd-ports-outgoing; Tue, 10 Nov 1998 07:49:34 -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 HAA07896; Tue, 10 Nov 1998 07:49:09 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA24735; Tue, 10 Nov 1998 07:49:12 -0800 (PST) Date: Tue, 10 Nov 1998 07:49:12 -0800 (PST) Message-Id: <199811101549.HAA24735@freefall.freebsd.org> To: rom_glsa@ein-hashofet.co.il, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8630 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: x11-toolkits/gtk11 appears to be broken. State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Tue Nov 10 07:48:34 PST 1998 State-Changed-Why: I fix this problem already. thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 07:52:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA08256 for freebsd-ports-outgoing; Tue, 10 Nov 1998 07:52:31 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from second.dialup.access.net (lsmarso.dialup.access.net [166.84.254.60]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA08251 for ; Tue, 10 Nov 1998 07:52:22 -0800 (PST) (envelope-from larry@marso.com) Received: (from larry@localhost) by second.dialup.access.net (8.9.1/8.8.8) id KAA15603 for freebsd-ports@freebsd.org; Tue, 10 Nov 1998 10:50:22 -0500 (EST) (envelope-from larry) Date: Tue, 10 Nov 1998 10:50:22 -0500 From: "Larry S. Marso" To: freebsd-ports@FreeBSD.ORG Subject: cdrecord 1.6.1 error in man file Message-ID: <19981110105022.A15594@marso.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.94.13i Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm working with both CAM and pre-CAM systems, so I upgraded to cdrecord-1.6.1 which is supposed to work with both. But I can't decipher the man page entry for pre-CAM. under the notations for dev=, it says: On a FreeBSD system without CAM support, you need to use the control device (e.g. /dev/cd0.ctl). A correct device specification in this case may be dev=/dev/cd0.ctl:@ . FreeBSD MAKEDEV creates a /dev/rcd0.ctl, not /dev/cd0.ctl. And what is ":@"? I've tried various specifications and none works. Best regards -- Larry S. Marso larry@marso.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 12:51:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA13253 for freebsd-ports-outgoing; Tue, 10 Nov 1998 12:51:46 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from paris.dppl.com (paris.dppl.com [205.230.74.150]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id MAA13244 for ; Tue, 10 Nov 1998 12:51:44 -0800 (PST) (envelope-from yds@ingress.net) Received: (qmail 12755 invoked from network); 10 Nov 1998 20:51:26 -0000 Received: from ichiban.ingress.com (HELO ichiban) (205.230.64.31) by paris.dppl.com with SMTP; 10 Nov 1998 20:51:26 -0000 Message-ID: <029a01be0ceb$e4af63a0$1f40e6cd@ichiban.ingress.com> From: "Yarema" To: "Thomas Gellekum" , Subject: Re: ports/8636: configure for python-1.5.1 thinks cc is a cross compiler Date: Tue, 10 Nov 1998 15:51:30 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3155.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org As requested this is the entire config.log file: This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. configure:589: checking MACHDEP configure:634: checking CCC configure:649: checking for --without-gcc configure:683: checking for gcc configure:760: checking whether the C compiler (cc -pipe -O2 -D_THREAD_SAFE -pthread -rdynamic) works configure:774: cc -o conftest -pipe -O2 -D_THREAD_SAFE -pthread -rdynamic conftest.c 1>&5 configure:794: checking whether the C compiler (cc -pipe -O2 -D_THREAD_SAFE -pthread -rdynamic) is a cross-compiler configure:799: checking whether we are using GNU C configure:808: cc -E conftest.c configure:823: checking whether cc accepts -g configure:862: checking LINKCC configure:878: checking for ranlib configure:910: checking for ar configure:975: checking how to run the C preprocessor configure:996: cc -E conftest.c >/dev/null 2>conftest.out configure:1036: checking for AIX configure:1061: checking for minix/config.h configure:1071: cc -E conftest.c >/dev/null 2>conftest.out configure:1067: minix/config.h: No such file or directory configure: failed program was: #line 1066 "configure" #include "confdefs.h" #include configure:1112: checking whether cc accepts -Olimit 1500 BTW, confdefs.h is only 1 byte at this point. -----Original Message----- From: Thomas Gellekum To: freebsd-ports@FreeBSD.ORG Date: Tuesday, November 10, 1998 3:45 AM Subject: Re: ports/8636: configure for python-1.5.1 thinks cc is a cross compiler >The following reply was made to PR ports/8636; it has been noted by GNATS. > >From: Thomas Gellekum >To: yds@ingress.net >Cc: freebsd-gnats-submit@FreeBSD.ORG >Subject: Re: ports/8636: configure for python-1.5.1 thinks cc is a cross compiler >Date: 10 Nov 1998 09:24:47 +0100 > > yds@ingress.net writes: > > > checking whether the C compiler cc -pipe -O2 -D_THREAD_SAFE -pthread -rdynamic) is a cross-compiler... yes > > Could you please post the part from config.log with this check? IIRC, > configure tries to run a small program for this check. If that fails > for some reason it may think cc is a cross-compiler. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 13:23:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA17165 for freebsd-ports-outgoing; Tue, 10 Nov 1998 13:23:11 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.gtn.com (mail.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA17145 for ; Tue, 10 Nov 1998 13:23:05 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by mail.gtn.com (8.8.6/8.8.6) with UUCP id WAA20700; Tue, 10 Nov 1998 22:15:14 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.9.1/8.9.1) id VAA14242; Tue, 10 Nov 1998 21:42:17 +0100 (CET) (envelope-from andreas) Message-ID: <19981110214217.A14235@klemm.gtn.com> Date: Tue, 10 Nov 1998 21:42:17 +0100 From: Andreas Klemm To: conrads@neosoft.com, ports@FreeBSD.ORG Subject: Re: Why a gawk port? References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: ; from Conrad Sabatier on Sat, Oct 31, 1998 at 10:38:36AM -0600 X-Disclaimer: A free society is one where it is safe to be unpopular X-Operating-System: FreeBSD 3.0-CURRENT SMP Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sat, Oct 31, 1998 at 10:38:36AM -0600, Conrad Sabatier wrote: > Isn't GNU awk already in the source tree? not in -STABLE ... in -current I saw the newest one ... Therefore my port ! -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example, in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 14:01:52 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA22995 for freebsd-ports-outgoing; Tue, 10 Nov 1998 14:01:52 -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 OAA22984; Tue, 10 Nov 1998 14:01:45 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19440; Tue, 10 Nov 1998 14:01:48 -0800 (PST) Date: Tue, 10 Nov 1998 14:01:48 -0800 (PST) Message-Id: <199811102201.OAA19440@freefall.freebsd.org> To: azuki@azkey.org, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7576 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: NEW port: skkfep-0.85 (Japanese FrontEnd Processor) State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Tue Nov 10 14:01:31 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 Tue Nov 10 14:39:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA28178 for freebsd-ports-outgoing; Tue, 10 Nov 1998 14:39:59 -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 OAA28171 for ; Tue, 10 Nov 1998 14:39:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA21581; Tue, 10 Nov 1998 14:40:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27715; Tue, 10 Nov 1998 14:35:21 -0800 (PST) (envelope-from nobody) Message-Id: <199811102235.OAA27715@hub.freebsd.org> Date: Tue, 10 Nov 1998 14:35:21 -0800 (PST) From: oski@jps.net To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/8645: afterstep-devel build fails on scsi.h Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8645 >Category: ports >Synopsis: afterstep-devel build fails on scsi.h >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Tue Nov 10 14:40:00 PST 1998 >Last-Modified: >Originator: Michael Oski >Organization: . >Release: 3.0-CURRENT (as of 11/8/98) >Environment: FreeBSD venus.one-mo.com 3.0-CURRENT FreeBSD 3.0-CURRENT #0: Mon Nov 9 22:31:31 PST 1998 root@venus.one-mo.com:/usr/src/sys/compile/VENUX i386 >Description: ... making all in ./apps/ascd... cc -02 -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c ascd.c cc -02 -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c cdrom.c cc -02 -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c cdinfo.c cc -02 -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c plat_freebsd.c plat_freebsd.c:40: scsi.h: No such file or directory *** Error core 1 Stop. >How-To-Repeat: Attempt to build afterstep-devel on 3.0-RELEASE or 3.0-CURRENT >Fix: assume problem with new CAM-based scsi headers. >Audit-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 Nov 10 15:51:34 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA06954 for freebsd-ports-outgoing; Tue, 10 Nov 1998 15:51:34 -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 PAA06949 for ; Tue, 10 Nov 1998 15:51:31 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca11-07.ix.netcom.com [209.109.237.7]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id PAA25344; Tue, 10 Nov 1998 15:51:00 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id PAA12741; Tue, 10 Nov 1998 15:50:56 -0800 (PST) Date: Tue, 10 Nov 1998 15:50:56 -0800 (PST) Message-Id: <199811102350.PAA12741@silvia.hip.berkeley.edu> To: mike@smith.net.au CC: jkh@zippy.cdrom.com, jkh@time.cdrom.com, ports@FreeBSD.ORG In-reply-to: <199811100219.SAA02469@dingo.cdrom.com> (message from Mike Smith on Mon, 09 Nov 1998 18:19:48 -0800) Subject: build machines (Re: Who built XFree86 with Kerberos?) From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * From: Mike Smith It looks good, but just one point: * > > Bento: * > > 20GB (ccd) * > * > Clean all extraneous grot, back up what needs to be preserved * > (over to paddock?), merge with new array. * * Justin, this is really more for you again. You might want to check * with David O'Brien, as I see he's found more space to clutter with his * stuff again. 8) That means we are going to mount this partition from other machines while doing builds, right? Do we trust our NFS that much? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 15:55:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA07521 for freebsd-ports-outgoing; Tue, 10 Nov 1998 15:55:53 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA07512; Tue, 10 Nov 1998 15:55:51 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id PAA01548; Tue, 10 Nov 1998 15:54:55 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199811102354.PAA01548@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: asami@FreeBSD.ORG (Satoshi Asami) cc: mike@smith.net.au, jkh@zippy.cdrom.com, jkh@time.cdrom.com, ports@FreeBSD.ORG Subject: Re: build machines (Re: Who built XFree86 with Kerberos?) In-reply-to: Your message of "Tue, 10 Nov 1998 15:50:56 PST." <199811102350.PAA12741@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 10 Nov 1998 15:54:55 -0800 From: Mike Smith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > * From: Mike Smith > > It looks good, but just one point: > > * > > Bento: > * > > 20GB (ccd) > * > > * > Clean all extraneous grot, back up what needs to be preserved > * > (over to paddock?), merge with new array. > * > * Justin, this is really more for you again. You might want to check > * with David O'Brien, as I see he's found more space to clutter with his > * stuff again. 8) > > That means we are going to mount this partition from other machines > while doing builds, right? Do we trust our NFS that much? Should do. If we find out we're wrong, then we better get it fixed, hmm? -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 16:03:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA08757 for freebsd-ports-outgoing; Tue, 10 Nov 1998 16:03:11 -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 QAA08752 for ; Tue, 10 Nov 1998 16:03:10 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca11-07.ix.netcom.com [209.109.237.7]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id QAA25370; Tue, 10 Nov 1998 16:02:49 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id QAA12804; Tue, 10 Nov 1998 16:02:46 -0800 (PST) Date: Tue, 10 Nov 1998 16:02:46 -0800 (PST) Message-Id: <199811110002.QAA12804@silvia.hip.berkeley.edu> To: mike@smith.net.au CC: mike@smith.net.au, jkh@zippy.cdrom.com, jkh@time.cdrom.com, ports@FreeBSD.ORG In-reply-to: <199811102354.PAA01548@dingo.cdrom.com> (message from Mike Smith on Tue, 10 Nov 1998 15:54:55 -0800) Subject: Re: build machines (Re: Who built XFree86 with Kerberos?) From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * > That means we are going to mount this partition from other machines * > while doing builds, right? Do we trust our NFS that much? * * Should do. If we find out we're wrong, then we better get it fixed, * hmm? We better, yes. Whether we can, that's another story. (Who was that (Garrett?) that said something about willingness and ability....) However, I would rather not have our package building-ability hinge on a known-to-be-flaky subsystem. Correct me if I'm wrong, but the problems with NFS has not been exactly solved, right? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 16:07:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA09939 for freebsd-ports-outgoing; Tue, 10 Nov 1998 16:07:45 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA09920; Tue, 10 Nov 1998 16:07:41 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id QAA01634; Tue, 10 Nov 1998 16:06:45 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199811110006.QAA01634@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: asami@FreeBSD.ORG (Satoshi Asami) cc: mike@smith.net.au, jkh@zippy.cdrom.com, jkh@time.cdrom.com, ports@FreeBSD.ORG Subject: Re: build machines (Re: Who built XFree86 with Kerberos?) In-reply-to: Your message of "Tue, 10 Nov 1998 16:02:46 PST." <199811110002.QAA12804@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 10 Nov 1998 16:06:45 -0800 From: Mike Smith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > * > That means we are going to mount this partition from other machines > * > while doing builds, right? Do we trust our NFS that much? > * > * Should do. If we find out we're wrong, then we better get it fixed, > * hmm? > > We better, yes. Whether we can, that's another story. (Who was that > (Garrett?) that said something about willingness and ability....) > > However, I would rather not have our package building-ability hinge on > a known-to-be-flaky subsystem. Correct me if I'm wrong, but the > problems with NFS has not been exactly solved, right? No, not all of them have been solved. However many of them have, and it's worth at least *attempting* to deploy a subsystem we expect our customers to use. If it backfires, and we can't resolve the issue, then we can redistribute things. In the interim, I think this is worth trying. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 16:34:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA13307 for freebsd-ports-outgoing; Tue, 10 Nov 1998 16:34:01 -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 QAA13156; Tue, 10 Nov 1998 16:32:41 -0800 (PST) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id QAA27438; Tue, 10 Nov 1998 16:32:44 -0800 (PST) Date: Tue, 10 Nov 1998 16:32:44 -0800 (PST) Message-Id: <199811110032.QAA27438@freefall.freebsd.org> To: eischen@vigrid.com, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/8616 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update of xmcd port to xmcd-2.4 State-Changed-From-To: open-closed State-Changed-By: mph State-Changed-When: Tue Nov 10 19:31:33 EST 1998 State-Changed-Why: Update applied, thanks. I found that patch-ad did not apply, and my understanding is that CAM support (which patch-ad supplied) is now standard with xmcd, so I have removed patch-ad. I have tested it on a CAM system, but if this is wrong for some reason, let me know. Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Tue Nov 10 19:31:33 EST 1998 Responsible-Changed-Why: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 17:57:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA20556 for freebsd-ports-outgoing; Tue, 10 Nov 1998 17:57:27 -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 RAA20551 for ; Tue, 10 Nov 1998 17:57:26 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca11-07.ix.netcom.com [209.109.237.7]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id RAA25498; Tue, 10 Nov 1998 17:57:06 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id RAA13068; Tue, 10 Nov 1998 17:57:02 -0800 (PST) Date: Tue, 10 Nov 1998 17:57:02 -0800 (PST) Message-Id: <199811110157.RAA13068@silvia.hip.berkeley.edu> To: mike@smith.net.au CC: mike@smith.net.au, jkh@zippy.cdrom.com, jkh@time.cdrom.com, ports@FreeBSD.ORG In-reply-to: <199811110006.QAA01634@dingo.cdrom.com> (message from Mike Smith on Tue, 10 Nov 1998 16:06:45 -0800) Subject: Re: build machines (Re: Who built XFree86 with Kerberos?) From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * No, not all of them have been solved. However many of them have, and * it's worth at least *attempting* to deploy a subsystem we expect our * customers to use. If it backfires, and we can't resolve the issue, * then we can redistribute things. In the interim, I think this is worth * trying. I don't think we have time for that. The release of 2.2.8 is due at the end of this month. Also, NFS means a huge slowdown of individual builds. It's ok for things like distfiles and packages, but not for the interim work directories or chroot /usr/local. I agree that we should at least try it, but I'm also really strapped of space on paddock right now and I'm spending a lot of time I can't afford to waste. How about you add one more 9GB drive to paddock and the rest to bento? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 18:03:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA21314 for freebsd-ports-outgoing; Tue, 10 Nov 1998 18:03:24 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dingo.cdrom.com (dingo.cdrom.com [204.216.28.145]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA21307; Tue, 10 Nov 1998 18:03:22 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost.cdrom.com [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id SAA02227; Tue, 10 Nov 1998 18:02:26 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199811110202.SAA02227@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: asami@FreeBSD.ORG (Satoshi Asami) cc: mike@smith.net.au, jkh@zippy.cdrom.com, jkh@time.cdrom.com, ports@FreeBSD.ORG Subject: Re: build machines (Re: Who built XFree86 with Kerberos?) In-reply-to: Your message of "Tue, 10 Nov 1998 17:57:02 PST." <199811110157.RAA13068@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 10 Nov 1998 18:02:26 -0800 From: Mike Smith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > * No, not all of them have been solved. However many of them have, and > * it's worth at least *attempting* to deploy a subsystem we expect our > * customers to use. If it backfires, and we can't resolve the issue, > * then we can redistribute things. In the interim, I think this is worth > * trying. > > I don't think we have time for that. The release of 2.2.8 is due at > the end of this month. Also, NFS means a huge slowdown of individual > builds. It's ok for things like distfiles and packages, but not for > the interim work directories or chroot /usr/local. > > I agree that we should at least try it, but I'm also really strapped > of space on paddock right now and I'm spending a lot of time I can't > afford to waste. How about you add one more 9GB drive to paddock and > the rest to bento? The bento space is probably going to have to wait 'till after Comdex now, so sure. Let's talk about this realtime. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 18:47:18 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA25952 for freebsd-ports-outgoing; Tue, 10 Nov 1998 18:47:18 -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 SAA25946; Tue, 10 Nov 1998 18:47:16 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca11-07.ix.netcom.com [209.109.237.7]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id SAA25539; Tue, 10 Nov 1998 18:46:55 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id SAA13193; Tue, 10 Nov 1998 18:46:52 -0800 (PST) Date: Tue, 10 Nov 1998 18:46:52 -0800 (PST) Message-Id: <199811110246.SAA13193@silvia.hip.berkeley.edu> To: sprice@hiwaay.net CC: ports@FreeBSD.ORG, msmith@FreeBSD.ORG In-reply-to: (message from Steve Price on Tue, 10 Nov 1998 18:47:57 -0600 (CST)) Subject: Re: auto ports build script From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Howdy guys, I'm moving this to ports as this is not really at a release engineering state. I'm copying msmith since I'm not sure if he's on the ports list. * Here's a synopsis of what I did: * * - grabbed copy of the bindists for 3.0-RELEASE * - installed them in /tmp/foo * - `touch /tmp/foo/usr/share/info/dir` * - checked out a fresh copy of the ports tree * - created the packages and distfiles directory * - fetched all the distfiles I didn't already have * - copied the attached script to /tmp/foo/usr/ports/build * - `chroot /tmp/foo` * - `cd /usr/ports` * - `./build INDEX` * * As an interesting exercise try running it with a commandline * like so: * * BATCH=yes ./build INDEX XFree86-3.3.2 perl-5.00502 * * Anything after the first argument is the name of a port to * exclude from the build process - including all the ports that * depend on the ones you specify. I see. * Some quick observations: * * - the tk-* ports clearly need X libs to build but they * don't specify USE_XLIB Fixed. :) * - interactive ports like mgetty and ifmail will hang the * build even when BATCH=yes is specified Really? I haven't had any trouble with mgetty and ifmail. I always do my build with BATCH=yes. Do they check PACKAGE_BUILDING or something? * - The chroot'd env with all the distfiles and around 340 * packages already built the size is around 2GB. I tried * to tweak the passes in the script to conserve space as * much as possible by removing (cleaning) ports that aren't * required any longer. I think this is great start, but there are too many things that could break in subtle ways if you have a whole bunch of ports installed. I still think the only way to fully automate it is to start with an empty /usr/local and /usr/X11R6 every time. The added bonus of this is that it will find all of the missing *_DEPEND lines. How about something like this? Ingredients: (i) A tarball that contains an extracted bindist, tweaked /etc and whatever others (like share/info/dir) that are needed, plus portcheckout (ii) A package of XFree86-3.3.2, but stripped down so it includes only the minimum required for building other stuff (lib/lib*, bin/imake, lib/X11/config, etc.) (iii) A place to copy fetched distfiles, initially empty (iv) A place to copy built packages, initially contains only (ii) The steps: (1) Sort INDEX in reverse topological order, so dependencies will be listed first (2) For each line in (1), do if package is not in (iv), then (2a) set up chroot directory (2b) extract (i) into there (2c) portcheckout port (2d) for each dependency, do if package is in (iv), pkg_add it (2e) build package (2f) cp -RP distfiles to (iii) (2g) cp -RP packages to (iv) (2h) rm -rf chroot directory (3) Run clean-restricted or clean-cdrom on (iii) and (iv) By sorting INDEX, most dependencies should be caught in the (2d) pkg_add. It is important to not set FOR_CDROM or NO_RESTRICTED while going through the loop, so ports and packages will be built for everything that is required. Those will be deleted in (3). The key is how to parallelize and otherwise optimize the (2) loop. (2f) and (2g) may need some help from bsd.port.mk, as (for instance) if we just copy the whole distfiles directory over, there always could be a case where two ports try to copy the same distfile over at the same time. For speeding up (2), one thing we my want to do is to add an "uncompressed" package type to pkg_*. Those packages should be much faster to pkg_add. (They will also be faster to build, but that has to be done sooner or later so it doesn't help the overall time.) I wish I can use the space we have here at school for this, we have 20 FreeBSD machines with lots of disks (but they are nearly full). Maybe I'll talk to my professor to make this our next research topic after we find a way to move that data elsewhere. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 18:49:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA26153 for freebsd-ports-outgoing; Tue, 10 Nov 1998 18:49:59 -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 SAA26146 for ; Tue, 10 Nov 1998 18:49:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA03910; Tue, 10 Nov 1998 18:50:01 -0800 (PST) Received: from spa.kuis.kyoto-u.ac.jp (lab4imgw.kuis.kyoto-u.ac.jp [130.54.23.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA25229 for ; Tue, 10 Nov 1998 18:40:05 -0800 (PST) (envelope-from shige@kuis.kyoto-u.ac.jp) Received: from onikobe.kuis.kyoto-u.ac.jp (onikobe.kuis.kyoto-u.ac.jp [130.54.22.183]) by spa.kuis.kyoto-u.ac.jp (8.8.8/3.6Wspa) with ESMTP id LAA10929; Wed, 11 Nov 1998 11:38:14 +0900 (JST) Received: (from shige@localhost) by onikobe.kuis.kyoto-u.ac.jp (8.9.1/3.7Wpl1-amphitrite) id LAA14575; Wed, 11 Nov 1998 11:39:38 +0900 (JST) Message-Id: <199811110238.LAA10929@spa.kuis.kyoto-u.ac.jp> Date: Wed, 11 Nov 1998 11:39:38 +0900 (JST) From: shige@kuis.kyoto-u.ac.jp Reply-To: shige@kuis.kyoto-u.ac.jp To: FreeBSD-gnats-submit@FreeBSD.ORG Cc: shige@kuis.kyoto-u.ac.jp X-Send-Pr-Version: 3.2 Subject: ports/8647: Update port: japanese/lynx Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8647 >Category: ports >Synopsis: Update port: japanese/lynx >Confidential: no >Severity: serious >Priority: high >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Nov 10 18:50:00 PST 1998 >Last-Modified: >Originator: Shigeyuki FUKUSHIMA >Organization: Dept. of Information Science, Kyoto Univ., JAPAN >Release: FreeBSD 3.0-RELEASE i386 >Environment: FreeBSD 3.0-RELEASE i386 FreeBSD 2.2.7-RELEASE i386 >Description: >How-To-Repeat: Update port: japanese/lynx There is Bold link problem. In case that lynx `Character set' is Japanese(EUC), lynx does not display `links' normally. Therefore I prepare patches/patch-ai for lynx port. And patches/patch-af includes the part of `don't care'. Therefore I remove this part. # If useing GNU patch 2.5, this part causes patch error. # I don't know why... Thank you. --- shige >Fix: diff -urN /usr/ports/japanese/lynx/patches/patch-af lynx/patches/patch-af --- /usr/ports/japanese/lynx/patches/patch-af Mon Nov 2 18:08:18 1998 +++ lynx/patches/patch-af Wed Nov 11 11:14:28 1998 @@ -462,21 +462,3 @@ } } -@@ -1732,7 +1993,7 @@ - } - if (*tmpchptr == '\0') { - break; -- } -+ } - } - } else if (!(IS_UTF_EXTRA(*chptr) || - IsSpecialAttrChar(*chptr))) { -@@ -1871,7 +2132,7 @@ - } - if (*tmpchptr == '\0') { - break; -- } -+ } - } - } else if (!(IS_UTF_EXTRA(*chptr) || - IsSpecialAttrChar(*chptr))) { diff -urN /usr/ports/japanese/lynx/patches/patch-ai lynx/patches/patch-ai --- /usr/ports/japanese/lynx/patches/patch-ai Thu Jan 1 09:00:00 1970 +++ lynx/patches/patch-ai Wed Nov 11 11:26:34 1998 @@ -0,0 +1,24 @@ +--- src/LYCurses.c.orig Wed Nov 11 11:11:52 1998 ++++ src/LYCurses.c Wed Nov 11 11:10:32 1998 +@@ -1679,6 +1679,13 @@ + + PUBLIC void lynx_force_repaint NOARGS + { ++/* ++ * This code is harmful to display bold links. ++ * Already set COLOR attributes? ++ * Therefore we do not need this code. ++ * --- by shige@kuis.kyoto-u.ac.jp ++ */ ++#if 0 /* do not need */ + #if defined(COLOR_CURSES) + chtype a; + #ifndef USE_COLOR_STYLE +@@ -1693,6 +1700,7 @@ + #endif + attrset(a); + #endif /* COLOR_CURSES */ ++#endif /* do not need */ + clearok(curscr, TRUE); + } + >Audit-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 Nov 10 19:04:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA27665 for freebsd-ports-outgoing; Tue, 10 Nov 1998 19:04: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 TAA27656; Tue, 10 Nov 1998 19:04:23 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA04731; Tue, 10 Nov 1998 19:04:26 -0800 (PST) Date: Tue, 10 Nov 1998 19:04:26 -0800 (PST) Message-Id: <199811110304.TAA04731@freefall.freebsd.org> To: lukin@okbmei.msk.su, jkoshy@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8644 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Master site for asfiles port changes State-Changed-From-To: open-closed State-Changed-By: jkoshy State-Changed-When: Tue Nov 10 19:03:53 PST 1998 State-Changed-Why: Patch committed to rev 1.6 of "ports/x11-fm/asfiles/Makefile", thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 22:46:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA08385 for freebsd-ports-outgoing; Tue, 10 Nov 1998 22:46:26 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA08375; Tue, 10 Nov 1998 22:46:22 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id WAA06632; Tue, 10 Nov 1998 22:40:56 -0600 (CST) Date: Tue, 10 Nov 1998 22:40:56 -0600 (CST) From: Steve Price To: Satoshi Asami cc: ports@FreeBSD.ORG, msmith@FreeBSD.ORG Subject: Re: auto ports build script In-Reply-To: <199811110246.SAA13193@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, 10 Nov 1998, Satoshi Asami wrote: # * - interactive ports like mgetty and ifmail will hang the # * build even when BATCH=yes is specified # # Really? I haven't had any trouble with mgetty and ifmail. I always # do my build with BATCH=yes. Do they check PACKAGE_BUILDING or something? Yes, both of these ports and a couple of more I've found since, need to add users that don't exist in the bindists already. # * - The chroot'd env with all the distfiles and around 340 # * packages already built the size is around 2GB. I tried # * to tweak the passes in the script to conserve space as # * much as possible by removing (cleaning) ports that aren't # * required any longer. # # I think this is great start, but there are too many things that could # break in subtle ways if you have a whole bunch of ports installed. I # still think the only way to fully automate it is to start with an # empty /usr/local and /usr/X11R6 every time. The added bonus of this # is that it will find all of the missing *_DEPEND lines. This is exactly what I tried to do - limit the number of ports installed at any given time. However, I tried to do it without all of the overhead that you describe below. There are really two major problems at hand: 1) Does a port build? 2) Does it play well with others? The first is handled by my script. I tried to make my first cut as fast as possible and with limited disk resources. I suppose it's intended use was to get near real-time feedback whether any changes committed to a port actually worked outside of the committer's environment. Even on my box (without the X ports and all of the interactive problems) I think I could make a sweep through the entire tree once every two days easy. The second is pretty easy to come by with a couple of simple tweeks to the script I provided you. Answering this question means installing every port we can prior to one the of interest and only removing ones that would result in conflicting files being installed. I have a 60% cut at this too. I got as far as generating the PLIST for every port and building a conflict map. The only problem was that on my P5-90 is took a shade over an hour to just generate the PLISTs. :( # How about something like this? # # Ingredients: # # (i) A tarball that contains an extracted bindist, tweaked /etc and # whatever others (like share/info/dir) that are needed, plus portcheckout Will do tomorrow. # (ii) A package of XFree86-3.3.2, but stripped down so it includes only the # minimum required for building other stuff (lib/lib*, bin/imake, # lib/X11/config, etc.) Granted the XFree86 port doesn't change much, but at over a million lines of code, building it from scratch each time sort of represents the extreme test of the rest of the system. If we just had a daily SNAP server this would make a lot of sense, since we wouldn't have to 'make world' from scratch ourselves. Of course this "daily SNAP" stuff doesn't make sense except for -current, since -stable is supposed to change much more slowly. # (iii) A place to copy fetched distfiles, initially empty # # (iv) A place to copy built packages, initially contains only (ii) These are easy enough and can be covered by the tarball I create for (i). # The steps: # # (1) Sort INDEX in reverse topological order, so dependencies will be # listed first This is not as easy as it sounds. I suppose with a judicious tweek here and there, the recurse routine could be made to spew out such a list. # (2) For each line in (1), do # # if package is not in (iv), then Here's where you lose me. I assumed the intent was to rebuild the package every time so that any changes since the previous build would be weighed in. If not, we still have to stick a stake in the ground and after N days we ignore the package we built previously and rebuild from scratch. I had set it up so that N was the time it took me to walk the entire tree. :) # (2a) set up chroot directory # # (2b) extract (i) into there # # (2c) portcheckout port # # (2d) for each dependency, do # # if package is in (iv), pkg_add it # # (2e) build package # # (2f) cp -RP distfiles to (iii) # # (2g) cp -RP packages to (iv) # # (2h) rm -rf chroot directory This seems offly excessive and seems to miss the biggest problem Justin and I had while working on the 3.0 release. Most users don't start from a clean tree. They install a couple, delete a couple, install a couple, ... ad nausium. Justin had a bunch more ports installed most of the time (due to my limited disk space) and he caught quite a few "port X doesn't play nice with port Y" problems. Maybe I'm missing something but I don't see how the method you describe above helps resolve these types of conflicts. # (3) Run clean-restricted or clean-cdrom on (iii) and (iv) This is not there yet, but I had intended on coding it when I had an entire first pass of the tree done. # By sorting INDEX, most dependencies should be caught in the (2d) # pkg_add. It is important to not set FOR_CDROM or NO_RESTRICTED while # going through the loop, so ports and packages will be built for # everything that is required. Those will be deleted in (3). Yes, I agree. This is done in the current script except for the removal of those ports which are restricted or not for CDROM, but this is easily fixed. # The key is how to parallelize and otherwise optimize the (2) loop. # (2f) and (2g) may need some help from bsd.port.mk, as (for instance) # if we just copy the whole distfiles directory over, there always could # be a case where two ports try to copy the same distfile over at the # same time. Funny you should mention this, but I've been playing around with some changes with bsd.port.mk (nothing breath-taking mind you), but it seems that just ignoring RUN_DEPENDS saves quite a bit of time in the package building stage. The reason that this works is because the gist of the builds we are doing is just to check that the build works and maybe pointing out any conflicts with other ports that we might see. Writing a script that builds 'em and then runs 'em is definitely beyond my abilities for now. :) # For speeding up (2), one thing we my want to do is to add an # "uncompressed" package type to pkg_*. Those packages should be much # faster to pkg_add. (They will also be faster to build, but that has # to be done sooner or later so it doesn't help the overall time.) Yes, this could help. It does add quite a bit to the storage space requirement however. My box still hasn't used up the 3GB partition that I gave it and I still have a full install, with all the distfiles, and over 600 packages now. :) - steve # I wish I can use the space we have here at school for this, we have 20 # FreeBSD machines with lots of disks (but they are nearly full). Maybe # I'll talk to my professor to make this our next research topic after # we find a way to move that data elsewhere. :) # # Satoshi # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 22:53:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA09325 for freebsd-ports-outgoing; Tue, 10 Nov 1998 22:53:38 -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 WAA09318 for ; Tue, 10 Nov 1998 22:53:35 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca11-07.ix.netcom.com [209.109.237.7]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id VAA25708; Tue, 10 Nov 1998 21:49:28 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id VAA13673; Tue, 10 Nov 1998 21:49:24 -0800 (PST) Date: Tue, 10 Nov 1998 21:49:24 -0800 (PST) Message-Id: <199811110549.VAA13673@silvia.hip.berkeley.edu> To: jkh@zippy.cdrom.com CC: ports@FreeBSD.ORG In-reply-to: <4353.910655448@zippy.cdrom.com> (jkh@zippy.cdrom.com) Subject: package building (Re: Who built XFree86 with Kerberos?) From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Ah. Sorry for the confusion over this then. I think Mike's just * about got the new drive array ready (we got one of wcarchive's old * cast-off drive racks) and we should be seeing at least 16-20GB of * storage coming on line on bento very shortly. Thanks. Mike just added another 9GB drive to paddock, which will help tremendously for the 2.2.8 building. * Hmmmm. Well, while I can certainly understand the situation, I still * worry somewhat about how well all of this is going to scale when we * get up past 3000 packages. Sure, it's a very non-linear task and That's what I thought when we got past the 500 port mark. :) If you take today's bsd.port.mk and stick it in a 2.1 system, you can probably build 99% of the packages automatically. We've improved that much. However, so have the sheer number of ports, and with them come new quirks that we need to add knobs for. Since it usually takes me a few months to come up with a solution to a new program, we're always in a state that no top-down build is possible. ;) * > Also, you can't just take a "snapshot" and call it a release. Unless * > that automated builds sets FOR_CDROM, you'll have various bits that * > can't be put on a CDROM on the ftp site. There is also an issue of * * Does this statement still hold in light of your recent commits to * support cleaning of the package collection for this? It will only work if all the packages are built and distfiles are fetched for the same snapshot of the tree. Since the packages-stable and distfiles directories are constantly updated, it doesn't quite fit that requirement. For packages, we can do something with a timestamp (only take packages built since the ports tree is last updated, etc.), but not for distfiles. Their timestamps have to be preserved so we won't be supplying the world tarballs that are identical to the original except for timestamps. However, if we get an automated script working, something which can build the entire tree in a reasonable amount of time (say, 2 days), then of course you can take it from there and prune the non-cdrom-able bits. * OK. Well, then please consider November 15th your advance notice for * a 2.2.8 release on November 30th. Ack. * If this has been a problem then I apologise - I'll try to make a more * concerted effort to keep you and the rest of the ports team in the * communications loop. * Done: * * releng: jkh,asami,msmith,jseger,steve Thanks. That should help. * All of that is doable. I can't give you an 8 machine cluster, but I * probably could arrange a 3 machine cluster (paddock, builder, bento) * with a shared 30-40GB chunk of space and their own 9GB local caches * for speed (build to cache, ship from cache to shared collection in the * background). I'll take you up on that promise! :-) Well, we're talking about something that's slower (per port) in an order of at least a magnitude than the current system, so I'm not sure if 3 machines is quite going to be enough. But I'll work on it. We can continue this discussion on the other thread (the one in which I proposed an algorithm). Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 23:06:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA11693 for freebsd-ports-outgoing; Tue, 10 Nov 1998 23:06:55 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from zippy.cdrom.com (zippy.cdrom.com [204.216.27.228]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA11659; Tue, 10 Nov 1998 23:06:48 -0800 (PST) (envelope-from jkh@zippy.cdrom.com) Received: from zippy.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by zippy.cdrom.com (8.9.1/8.9.1) with ESMTP id UAA08652; Tue, 10 Nov 1998 20:39:21 -0800 (PST) (envelope-from jkh@zippy.cdrom.com) To: asami@FreeBSD.ORG (Satoshi Asami) cc: mike@smith.net.au, jkh@time.cdrom.com, ports@FreeBSD.ORG Subject: Re: build machines (Re: Who built XFree86 with Kerberos?) In-reply-to: Your message of "Tue, 10 Nov 1998 17:57:02 PST." <199811110157.RAA13068@silvia.hip.berkeley.edu> Date: Tue, 10 Nov 1998 20:39:20 -0800 Message-ID: <8648.910759160@zippy.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I don't think we have time for that. The release of 2.2.8 is due at > the end of this month. Also, NFS means a huge slowdown of individual > builds. It's ok for things like distfiles and packages, but not for > the interim work directories or chroot /usr/local. That's not an expected use of NFS anyway. What I was expecting was that people would do the chroot areas and builds on their "staging" disks (local >4GB areas) and then push the finish products over NFS to the package collections. We can't afford to put big mongo disk arrays on every build machine and, on the purely physical level, we only have one drive array cabinet. > of space on paddock right now and I'm spending a lot of time I can't > afford to waste. How about you add one more 9GB drive to paddock and > the rest to bento? I think that's a workable compromise for now - can you do that Mike? We'll still have a new 9GB drive for the array, the extra one will simply have to go to paddock for now. Once 2.2.8 kills the 2.2.8 branch, we'll probably want to review paddock's intended usage anyway. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 23:06:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA11723 for freebsd-ports-outgoing; Tue, 10 Nov 1998 23:06:59 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from zippy.cdrom.com (zippy.cdrom.com [204.216.27.228]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA11683; Tue, 10 Nov 1998 23:06:53 -0800 (PST) (envelope-from jkh@zippy.cdrom.com) Received: from zippy.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by zippy.cdrom.com (8.9.1/8.9.1) with ESMTP id UAA08565; Tue, 10 Nov 1998 20:18:47 -0800 (PST) (envelope-from jkh@zippy.cdrom.com) To: asami@FreeBSD.ORG (Satoshi Asami) cc: mike@smith.net.au, jkh@time.cdrom.com, ports@FreeBSD.ORG Subject: Re: build machines (Re: Who built XFree86 with Kerberos?) In-reply-to: Your message of "Tue, 10 Nov 1998 16:02:46 PST." <199811110002.QAA12804@silvia.hip.berkeley.edu> Date: Tue, 10 Nov 1998 20:18:46 -0800 Message-ID: <8561.910757926@zippy.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > However, I would rather not have our package building-ability hinge on > a known-to-be-flaky subsystem. Correct me if I'm wrong, but the > problems with NFS has not been exactly solved, right? For our purposes, I think it will work fine. The FreeBSD project has been making fairly heavy use of NFS ever since we decided to share our home directories between multiple machines that way. - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Tue Nov 10 23:19:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA13102 for freebsd-ports-outgoing; Tue, 10 Nov 1998 23:19:36 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from pcnet1.pcnet.com (pcnet1.pcnet.com [204.213.232.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA13093; Tue, 10 Nov 1998 23:19:33 -0800 (PST) (envelope-from eischen@vigrid.com) Received: (from eischen@localhost) by pcnet1.pcnet.com (8.8.7/PCNet) id XAA14898; Tue, 10 Nov 1998 23:44:14 -0500 (EST) Date: Tue, 10 Nov 1998 23:44:14 -0500 (EST) From: Daniel Eischen Message-Id: <199811110444.XAA14898@pcnet1.pcnet.com> To: eischen@vigrid.com, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/8616 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Update applied, thanks. I found that patch-ad did not apply, and my > understanding is that CAM support (which patch-ad supplied) is now > standard with xmcd, so I have removed patch-ad. I have tested it on > a CAM system, but if this is wrong for some reason, let me know. Right, patch-ad should be deleted. I thought the diff -ur would do that, but I guess it didn't. Dan Eischen eischen@vigrid.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 01:07:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA23240 for freebsd-ports-outgoing; Wed, 11 Nov 1998 01:07:53 -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 BAA23234; Wed, 11 Nov 1998 01:07:51 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca11-07.ix.netcom.com [209.109.237.7]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id BAA25901; Wed, 11 Nov 1998 01:07:32 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id BAA23346; Wed, 11 Nov 1998 01:07:29 -0800 (PST) Date: Wed, 11 Nov 1998 01:07:29 -0800 (PST) Message-Id: <199811110907.BAA23346@silvia.hip.berkeley.edu> To: sprice@hiwaay.net CC: ports@FreeBSD.ORG, msmith@FreeBSD.ORG In-reply-to: (message from Steve Price on Tue, 10 Nov 1998 22:40:56 -0600 (CST)) Subject: Re: auto ports build script From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * # Really? I haven't had any trouble with mgetty and ifmail. I always * # do my build with BATCH=yes. Do they check PACKAGE_BUILDING or something? * * Yes, both of these ports and a couple of more I've found since, * need to add users that don't exist in the bindists already. Ooh. That should be done by pw via pkg/INSTALL. (Otherwise the packages won't work....) * This is exactly what I tried to do - limit the number of ports * installed at any given time. However, I tried to do it without * all of the overhead that you describe below. There are really * two major problems at hand: * * 1) Does a port build? * 2) Does it play well with others? Actually what I had in mind is not to find out 2, but to build the ports without running into problems caused by 2. * The second is pretty easy to come by with a couple of simple * tweeks to the script I provided you. Answering this question * means installing every port we can prior to one the of interest * and only removing ones that would result in conflicting files * being installed. I have a 60% cut at this too. I got as far * as generating the PLIST for every port and building a conflict * map. The only problem was that on my P5-90 is took a shade * over an hour to just generate the PLISTs. :( Wow. That is "easy"? ;) What are you going to do with that information though? Say, I did what you mentioned above, recompiled port foo, and it failed with syntax error in line 694. What now? * Granted the XFree86 port doesn't change much, but at over a million * lines of code, building it from scratch each time sort of represents * the extreme test of the rest of the system. If we just had a daily * SNAP server this would make a lot of sense, since we wouldn't have * to 'make world' from scratch ourselves. Of course this "daily * SNAP" stuff doesn't make sense except for -current, since -stable * is supposed to change much more slowly. I don't object to building the whole XFree86 for testing purposes. The reason I wanted to keep the package I mentioned small is because it is used (via pkg_add) for every port that requires X. * # (iii) A place to copy fetched distfiles, initially empty * # * # (iv) A place to copy built packages, initially contains only (ii) * * These are easy enough and can be covered by the tarball I create * for (i). No, actually these are outside the chroot area. Maybe even on a different machine. The chroot area has empty /usr/ports/distfiles and /usr/ports/packages, and they will be copied to (iii) and (iv) in later steps (2f and 2g in my original mail). * # The steps: * # * # (1) Sort INDEX in reverse topological order, so dependencies will be * # listed first * * This is not as easy as it sounds. I suppose with a judicious tweek * here and there, the recurse routine could be made to spew out such a * list. Our dependencies are guaranteed to be acyclic, so all we need to do is create a dependency tree and print out nodes in post-order. This is easy (at least theoretically). I can even imagine writing an awk script to turn INDEX into a mini-Makefile that is fed into make and have it print out the list we want. After all, topological sort is make's speciality. In fact, I just did. :) === awk -F '|' '{me=$1; here=$2; bdep=$8; rdep=$9; print "all: " me; print me ": " bdep " " rdep; printf("\t@echo %s\n", here)}' /usr/ports/INDEX === I'm not sure if it is correct (it's a 2-minute hack job) but you get the idea. * # (2) For each line in (1), do * # * # if package is not in (iv), then * * Here's where you lose me. I assumed the intent was to rebuild * the package every time so that any changes since the previous * build would be weighed in. If not, we still have to stick a * stake in the ground and after N days we ignore the package we * built previously and rebuild from scratch. I had set it up so * that N was the time it took me to walk the entire tree. :) Sorry. Yes, I mean we always start from scratch, we update /usr/ports once and build all packages without updating it again. (That's why (iii) and (iv) are initially empty.) I don't think it can be made to work if we have it constantly keep updating the stuff, especially in light of non-redistributable stuff. (See my other reply to Jordan on this.) There are also problems with distfiles. Say, I have a port that's updated, and now it uses distfile B instead of A. Can I delete A? Not so fast -- it might be used in some other port. I can do and do a grep in the entire */*/files/md5, but that's not very fast. Also, once I do a "cvs update", it's not easy to find out what A was in the first place. (Same for package names.) * This seems offly excessive and seems to miss the biggest * problem Justin and I had while working on the 3.0 release. * Most users don't start from a clean tree. They install a * couple, delete a couple, install a couple, ... ad nausium. * Justin had a bunch more ports installed most of the time * (due to my limited disk space) and he caught quite a few * "port X doesn't play nice with port Y" problems. Maybe I'm * missing something but I don't see how the method you describe * above helps resolve these types of conflicts. As I should have said, it doesn't. :) That's not the problem I'm trying to solve. I've been marking them MANUAL_PACKAGE_BUILD for a long time and I've just about finished marking the entire tree. (Ok, maybe not.) Finding them is not really the problem, fixing them is, but that's not the problem I'm trying to solve here. * Funny you should mention this, but I've been playing around with * some changes with bsd.port.mk (nothing breath-taking mind you), * but it seems that just ignoring RUN_DEPENDS saves quite a bit * of time in the package building stage. The reason that this works * is because the gist of the builds we are doing is just to check * that the build works and maybe pointing out any conflicts with * other ports that we might see. Writing a script that builds 'em * and then runs 'em is definitely beyond my abilities for now. :) That's true. Maybe I should make bsd.port.mk ignore RUN_DEPENDS when PACKAGE_BUILDING is set. * Yes, this could help. It does add quite a bit to the storage space * requirement however. My box still hasn't used up the 3GB partition * that I gave it and I still have a full install, with all the * distfiles, and over 600 packages now. :) I don't think the storage space for packages is that much of a problem, it's just a few gigs even if they are uncompressed. The temporary storage for work dirs is much more of a problem as it could go up to over a dozen gigs. (Depending on the parallelism of the 2 loop in my original mail, it could be even higher.) I think the problem is that we are talking two different things here. What I'm trying to come up here is a script that can rebuild the entire packages set in one or two days without any manual intervention. If a port can be built from an empty /usr/local, a package of it should be built by the automated script. Finding conflicts between ports is really another beast altogether. We know about most of them anyway (gtk, qt, ncurses, etc.). The issue on that front IMO is how to fix them. (And I've been asking maintainers to fix them forever, without much success.) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 01:21:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA24303 for freebsd-ports-outgoing; Wed, 11 Nov 1998 01:21: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 BAA24296; Wed, 11 Nov 1998 01:21:45 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca11-07.ix.netcom.com [209.109.237.7]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id BAA25914; Wed, 11 Nov 1998 01:21:27 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id BAA23381; Wed, 11 Nov 1998 01:21:24 -0800 (PST) Date: Wed, 11 Nov 1998 01:21:24 -0800 (PST) Message-Id: <199811110921.BAA23381@silvia.hip.berkeley.edu> To: sprice@hiwaay.net CC: ports@FreeBSD.ORG, msmith@FreeBSD.ORG In-reply-to: (message from Steve Price on Tue, 10 Nov 1998 22:40:56 -0600 (CST)) Subject: Re: auto ports build script From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Another thing I forgot to mention is that there are quite a few international ports (mostly in Japanese) that just completely conflicts with their English-only counterparts. I solve this problem by building japanese first and then deinstalling them all before going on to the rest of the tree. This problem is only going to get worse as we get more international users (and thus porters), and is really not worth solving (thus my proposal to sidestep it). Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 02:10:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA28116 for freebsd-ports-outgoing; Wed, 11 Nov 1998 02:10: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 CAA28108 for ; Wed, 11 Nov 1998 02:09:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id CAA04257; Wed, 11 Nov 1998 02:10:00 -0800 (PST) Received: from holly.dons.net.au (holly.dons.net.au [203.31.81.8]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA28081 for ; Wed, 11 Nov 1998 02:09:21 -0800 (PST) (envelope-from darius@holly.dons.net.au) Received: (from root@localhost) by holly.dons.net.au (8.9.1/8.8.8) id UAA29634; Wed, 11 Nov 1998 20:39:17 +1030 (CST) (envelope-from darius) Message-Id: <199811111009.UAA29634@holly.dons.net.au> Date: Wed, 11 Nov 1998 20:39:17 +1030 (CST) From: "Daniel J. O'Connor" Reply-To: darius@holly.dons.net.au To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8648: net/dict port is broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8648 >Category: ports >Synopsis: net/dict port is broken >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Wed Nov 11 02:10:00 PST 1998 >Last-Modified: >Originator: Daniel J. O'Connor >Organization: >Release: FreeBSD 3.0-RELEASE i386 >Environment: 3.0 a.out system as of 2 weeks ago (3.0 RELEASE) >Description: configure breaks with creating doc/Makefile ./config.status: 325: Syntax error: Bad substitution configure: error: ./configure failed for libmaa >How-To-Repeat: cd /usr/ports/net/dict make >Fix: Change the comment in files/patch-aa from #prefix=/usr to prefix=/usr/local >Audit-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 Nov 11 03:20:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA03069 for freebsd-ports-outgoing; Wed, 11 Nov 1998 03:20:02 -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 DAA03022 for ; Wed, 11 Nov 1998 03:19:59 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA07280; Wed, 11 Nov 1998 03:20:02 -0800 (PST) Received: from catastrophe.gelemna.ft-wayne.in.us (fw-line-35.fwi.com [209.84.172.40]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA02825 for ; Wed, 11 Nov 1998 03:14:52 -0800 (PST) (envelope-from croyle@gelemna.ft-wayne.in.us) Received: from emerson.gelemna.ft-wayne.in.us (emerson.gelemna.ft-wayne.in.us [10.23.42.2]) by catastrophe.gelemna.ft-wayne.in.us (8.8.8/8.8.8) with ESMTP id GAA29106 for ; Wed, 11 Nov 1998 06:13:33 -0500 (EST) (envelope-from croyle@gelemna.ft-wayne.in.us) Received: (from croyle@localhost) by emerson.gelemna.ft-wayne.in.us (8.9.1/8.9.1) id GAA08017; Wed, 11 Nov 1998 06:13:32 -0500 (EST) (envelope-from croyle@gelemna.ft-wayne.in.us) Message-Id: <199811111113.GAA08017@emerson.gelemna.ft-wayne.in.us> Date: Wed, 11 Nov 1998 06:13:32 -0500 (EST) From: Don Croyle Reply-To: croyle@gelemna.ft-wayne.in.us To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8649: Update x11-wm/blackbox to 0.40.13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8649 >Category: ports >Synopsis: Update x11-wm/blackbox to 0.40.13 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 11 03:20:02 PST 1998 >Last-Modified: >Originator: Don Croyle >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: Diffs to update the x11-wm/blackbox port to use the latest distfile. The patches directory goes away; this compiles cleanly now. :) >How-To-Repeat: >Fix: Apply this patch. Note that this leaves all files in the patches directory empty, so they can be removed. diff -ruN blackbox.old/Makefile blackbox/Makefile --- blackbox.old/Makefile Wed Nov 4 21:59:40 1998 +++ blackbox/Makefile Wed Nov 11 05:46:01 1998 @@ -1,12 +1,12 @@ # New ports collection makefile for: Blackbox -# Version required: 0.40.12 +# Version required: 0.40.13 # Date created: June 15, 1998 # Whom: Brian Handy # # $Id: Makefile,v 1.12 1998/11/05 02:59:40 jkoshy Exp $ # -DISTNAME= blackbox-0.40.12 +DISTNAME= blackbox-0.40.13 CATEGORIES= x11-wm MASTER_SITES= http://linux.wiw.org/blackbox/sources/ diff -ruN blackbox.old/files/md5 blackbox/files/md5 --- blackbox.old/files/md5 Wed Nov 4 21:59:41 1998 +++ blackbox/files/md5 Wed Nov 11 05:47:05 1998 @@ -1 +1 @@ -MD5 (blackbox-0.40.12.tar.gz) = f846e47c69647cfc501dc79d65e02a8c +MD5 (blackbox-0.40.13.tar.gz) = a48eb5f98d4292ad25d7e3b87cb2e194 diff -ruN blackbox.old/patches/patch-aa blackbox/patches/patch-aa --- blackbox.old/patches/patch-aa Wed Nov 4 21:59:41 1998 +++ blackbox/patches/patch-aa Wed Dec 31 19:00:00 1969 @@ -1,19 +0,0 @@ ---- src/Image.cc.orig Wed Nov 4 02:11:26 1998 -+++ src/Image.cc Wed Nov 4 16:22:37 1998 -@@ -34,10 +34,13 @@ - # include - #endif - --#if HAVE_MALLOC_H --# include -+#if HAVE_STDLIB_H -+# include -+#else -+# if HAVE_MALLOC_H -+# include -+# endif - #endif -- - - // ************************************************************************* - // Graphics engine class code diff -ruN blackbox.old/patches/patch-ab blackbox/patches/patch-ab --- blackbox.old/patches/patch-ab Wed Nov 4 21:59:41 1998 +++ blackbox/patches/patch-ab Wed Dec 31 19:00:00 1969 @@ -1,11 +0,0 @@ ---- configure.orig Wed Nov 4 02:15:37 1998 -+++ configure Wed Nov 4 16:33:00 1998 -@@ -1346,7 +1346,7 @@ - - fi - --for ac_hdr in fcntl.h malloc.h process.h signal.h stdio.h time.h unistd.h sys/param.h sys/select.h sys/time.h sys/types.h -+for ac_hdr in fcntl.h malloc.h process.h signal.h stdio.h stdlib.h time.h unistd.h sys/param.h sys/select.h sys/time.h sys/types.h - do - ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` - echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 diff -ruN blackbox.old/patches/patch-ac blackbox/patches/patch-ac --- blackbox.old/patches/patch-ac Wed Nov 4 21:59:41 1998 +++ blackbox/patches/patch-ac Wed Dec 31 19:00:00 1969 @@ -1,12 +0,0 @@ ---- config.h.in.orig Wed Nov 4 02:15:30 1998 -+++ config.h.in Wed Nov 4 17:05:45 1998 -@@ -40,6 +40,9 @@ - /* Define if you have the header file. */ - #undef HAVE_STDIO_H - -+/* Define if you have the header file. */ -+#undef HAVE_STDLIB_H -+ - /* Define if you have the header file. */ - #undef HAVE_SYS_PARAM_H - diff -ruN blackbox.old/patches/patch-ad blackbox/patches/patch-ad --- blackbox.old/patches/patch-ad Wed Nov 4 21:59:41 1998 +++ blackbox/patches/patch-ad Wed Dec 31 19:00:00 1969 @@ -1,28 +0,0 @@ -*** src.orig/blackbox.cc Wed Nov 4 18:07:56 1998 ---- src/blackbox.cc Wed Nov 4 22:02:54 1998 -*************** -*** 82,87 **** ---- 82,105 ---- - - - // ************************************************************************* -+ // this is taken from the GNU liberty codebase -+ // ************************************************************************* -+ -+ char * -+ basename (const char *name) -+ { -+ const char *base = name; -+ -+ while (*name) { -+ if (*name++ == '/') { -+ base = name; -+ } -+ } -+ return (char *) base; -+ } -+ -+ -+ // ************************************************************************* - // signal handler to allow for proper and gentle shutdown - // ************************************************************************* diff -ruN blackbox.old/pkg/PLIST blackbox/pkg/PLIST --- blackbox.old/pkg/PLIST Wed Nov 4 21:59:41 1998 +++ blackbox/pkg/PLIST Wed Nov 11 06:03:16 1998 @@ -1,5 +1,17 @@ bin/blackbox share/Blackbox/rc share/Blackbox/menu -share/Blackbox/style +share/Blackbox/styles/blackmagic +share/Blackbox/styles/coldsteel +share/Blackbox/styles/colorpurple +share/Blackbox/styles/darkgreen +share/Blackbox/styles/default +share/Blackbox/styles/gnoid +share/Blackbox/styles/green +share/Blackbox/styles/onoid +share/Blackbox/styles/pnoid +share/Blackbox/styles/slatebox +share/Blackbox/styles/steelblue +share/Blackbox/styles/steelbox +@dirrm share/Blackbox/styles @dirrm share/Blackbox >Audit-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 Nov 11 03:24:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA03501 for freebsd-ports-outgoing; Wed, 11 Nov 1998 03:24:49 -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 DAA03493; Wed, 11 Nov 1998 03:24:47 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA07525; Wed, 11 Nov 1998 03:24:49 -0800 (PST) Date: Wed, 11 Nov 1998 03:24:49 -0800 (PST) Message-Id: <199811111124.DAA07525@freefall.freebsd.org> To: kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: ports/7940 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: make depend packages and index on demand Responsible-Changed-From-To: freebsd-ports->asami Responsible-Changed-By: kuriyama Responsible-Changed-When: Wed Nov 11 03:24:24 PST 1998 Responsible-Changed-Why: His area. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 03:25:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA03585 for freebsd-ports-outgoing; Wed, 11 Nov 1998 03:25:48 -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 DAA03578; Wed, 11 Nov 1998 03:25:43 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA07650; Wed, 11 Nov 1998 03:25:46 -0800 (PST) Date: Wed, 11 Nov 1998 03:25:46 -0800 (PST) Message-Id: <199811111125.DAA07650@freefall.freebsd.org> To: sakai@miya3f01.ee.kagu.sut.ac.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8475 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New ports of XMangekyou State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Wed Nov 11 03:25:00 PST 1998 State-Changed-Why: Obsoleted by ports/8496. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 03:26:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA03680 for freebsd-ports-outgoing; Wed, 11 Nov 1998 03:26:11 -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 DAA03673; Wed, 11 Nov 1998 03:26:09 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA07726; Wed, 11 Nov 1998 03:26:12 -0800 (PST) Date: Wed, 11 Nov 1998 03:26:12 -0800 (PST) Message-Id: <199811111126.DAA07726@freefall.freebsd.org> To: sakai@miya3f01.ee.kagu.sut.ac.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8482 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port of eyeclock-1.02 State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Wed Nov 11 03:25:53 PST 1998 State-Changed-Why: Obsoleted by ports/8495 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 03:33:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA04395 for freebsd-ports-outgoing; Wed, 11 Nov 1998 03:33:21 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from phmit.demon.co.uk (phmit.demon.co.uk [194.222.15.209]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id DAA04389 for ; Wed, 11 Nov 1998 03:33:17 -0800 (PST) (envelope-from dom@phmit.demon.co.uk) Received: from voodoo.pandhm.co.uk [10.100.35.12] by phmit.demon.co.uk with esmtp (Exim 1.82 #1) id 0zdYVK-0002uH-00; Wed, 11 Nov 1998 11:32:06 +0000 Received: from dom by voodoo.pandhm.co.uk with local (Exim 1.92 #1) for ports@freebsd.org id 0zdYUE-000763-00; Wed, 11 Nov 1998 11:30:58 +0000 To: ports@FreeBSD.ORG Subject: GNU getopt X-Mailer: nmh v0.26 Organization: Palmer & Harvey McLane Date: Wed, 11 Nov 1998 11:30:57 +0000 From: Dom Mitchell Message-Id: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Is there a standard way to include GNU getopt with a port? I'm trying to port npadmin , but it needs getopt_long. The easiest way I can think of is to snarf a copy from (say) /usr/src/contrib/cpio, but that's certainly not guaranteed to work... -- Dom Mitchell -- Palmer & Harvey McLane -- Unix Systems Administrator "Xerox studies suggest that most people print out electronic mail that is longer than half a page; paper use rises by 40 percent in offices that introduce E-mail." -- CCM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 03:34:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA04532 for freebsd-ports-outgoing; Wed, 11 Nov 1998 03:34:38 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from btp1da.phy.uni-bayreuth.de (btp1da.phy.uni-bayreuth.de [132.180.20.32]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA04517; Wed, 11 Nov 1998 03:34:22 -0800 (PST) (envelope-from werner@btp1da.phy.uni-bayreuth.de) Received: (from werner@localhost) by btp1da.phy.uni-bayreuth.de (8.8.8/8.7.3) id MAA04510; Wed, 11 Nov 1998 12:34:02 +0100 (MET) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 Date: Wed, 11 Nov 1998 12:34:02 +0100 (MET) Organization: University of bayreuth From: Werner Griessl To: andreas@FreeBSD.ORG, ports@FreeBSD.ORG Subject: lyx & current Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ---------------------------------- Hi Andreas, The new LyX (lyx-1.0.0pre2) compiles and installs without problems on my current ELF system. But if I try to run it fails with: /usr/libexec/ld-elf.so.1: Shared object "libforms.so.0.88" not found I installed xforms (elf) before. ldd gives: /usr/local/bin/lyx: libforms.so.0.88 => not found (0x0) libXpm.so.4 => /usr/X11R6/lib/libXpm.so.4 (0x2816e000) libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x2817b000) libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x28183000) libc.so.3 => /usr/lib/libc.so.3 (0x28197000) libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x28217000) libstdc++.so.2 => /usr/lib/libstdc++.so.2 (0x282aa000) libm.so.2 => /usr/lib/libm.so.2 (0x282e1000) locate libxforms gives: /spare2/X11R6/lib/aout/libxforms.a /spare2/X11R6/lib/aout/libxforms.so /spare2/X11R6/lib/aout/libxforms.so.0.88 /spare2/X11R6/lib/libxforms.a /spare2/X11R6/lib/libxforms.so /spare2/X11R6/lib/libxforms.so.0 locate libforms gives: /usr/compat/linux/usr/X11R6/lib/libforms.so.0.81 /usr/lib/compat/aout/libforms.so.2.0 /usr/lib/compat/libforms.so.2.0 What did I wrong ? Werner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 03:39:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA05135 for freebsd-ports-outgoing; Wed, 11 Nov 1998 03:39:59 -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 DAA05127 for ; Wed, 11 Nov 1998 03:39:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id DAA08273; Wed, 11 Nov 1998 03:40:00 -0800 (PST) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA04255 for ; Wed, 11 Nov 1998 03:32:06 -0800 (PST) (envelope-from andy@icc.surw.chel.su) Received: (from andy@localhost) by icc.surw.chel.su (8.8.8/8.8.8) id OAA07520; Wed, 11 Nov 1998 14:28:43 +0300 (MSK) (envelope-from andy) Message-Id: <199811111128.OAA07520@icc.surw.chel.su> Date: Wed, 11 Nov 1998 14:28:43 +0300 (MSK) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8650: Update port: misc/ytree Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8650 >Category: ports >Synopsis: Update port: misc/ytree >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 Nov 11 03:40:00 PST 1998 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: South Ural Railway ICC >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: >Description: This is a patch to update misc/ytree port. diff -Nru ytree/Makefile ytree-1.64/Makefile --- ytree/Makefile Wed May 13 22:31:02 1998 +++ ytree-1.64/Makefile Wed Nov 11 18:46:32 1998 @@ -1,14 +1,15 @@ # New ports collection makefile for: ytree -# Version required: 1.63 -# Date created: 5 Jan 1998 -# Whom: Andrey Zakhvatov +# Version required: 1.64 +# Date created: 5 Jan 1998 +# Whom: Andrey Zakhvatov # # $Id: Makefile,v 1.2 1998/05/13 17:13:20 vanilla Exp $ # -DISTNAME= ytree-1.63 +DISTNAME= ytree-1.64 CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_SUNSITE} +MASTER_SITES= http://www.han.de/~werner/ \ + ${MASTER_SITE_SUNSITE} MASTER_SITE_SUBDIR= utils/file/managers MAINTAINER= andy@icc.surw.chel.su @@ -17,8 +18,14 @@ MAN1= ytree.1 do-install: - @${INSTALL_PROGRAM} ${WRKSRC}/ytree ${PREFIX}/bin - @${INSTALL_DATA} ${WRKSRC}/ytree.conf ${PREFIX}/etc/ytree.conf.sample - @${INSTALL_MAN} ${WRKSRC}/ytree.1 ${PREFIX}/man/man1 + @ ${INSTALL_PROGRAM} ${WRKSRC}/ytree ${PREFIX}/bin + @ ${INSTALL_DATA} ${WRKSRC}/ytree.conf ${PREFIX}/etc/ytree.conf.sample + @ ${INSTALL_MAN} ${WRKSRC}/ytree.1 ${PREFIX}/man/man1 +.if !defined(NOPORTDOCS) + @ ${MKDIR} ${PREFIX}/share/doc/ytree +.for file in CHANGES COPYING README THANKS + @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/ytree +.endfor +.endif .include diff -Nru ytree/files/md5 ytree-1.64/files/md5 --- ytree/files/md5 Wed May 13 22:31:02 1998 +++ ytree-1.64/files/md5 Wed Nov 11 18:30:58 1998 @@ -1 +1 @@ -MD5 (ytree-1.63.tar.gz) = dcb7e1f5cf994b13bdc1df7c3c8f162d +MD5 (ytree-1.64.tar.gz) = 93c449f3c3e6b9af02d20e8d16a8040c diff -Nru ytree/pkg/PLIST ytree-1.64/pkg/PLIST --- ytree/pkg/PLIST Tue Aug 18 22:46:52 1998 +++ ytree-1.64/pkg/PLIST Wed Nov 11 18:41:09 1998 @@ -1,2 +1,7 @@ bin/ytree etc/ytree.conf.sample +share/doc/ytree/CHANGES +share/doc/ytree/COPYING +share/doc/ytree/README +share/doc/ytree/THANKS +@dirrm share/doc/ytree >How-To-Repeat: >Fix: Please, check and apply this patch. >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 04:27:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA11748 for freebsd-ports-outgoing; Wed, 11 Nov 1998 04:27:42 -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 EAA11742; Wed, 11 Nov 1998 04:27:26 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA11226; Wed, 11 Nov 1998 04:27:30 -0800 (PST) Date: Wed, 11 Nov 1998 04:27:30 -0800 (PST) Message-Id: <199811111227.EAA11226@freefall.freebsd.org> To: andy@icc.surw.chel.su, jkoshy@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8650 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: misc/ytree State-Changed-From-To: open-closed State-Changed-By: jkoshy State-Changed-When: Wed Nov 11 04:27:06 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 Wed Nov 11 04:40:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA12627 for freebsd-ports-outgoing; Wed, 11 Nov 1998 04:40:02 -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 EAA12573 for ; Wed, 11 Nov 1998 04:39:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA11972; Wed, 11 Nov 1998 04:40:01 -0800 (PST) Received: from ns11.rim.or.jp (ns11.rim.or.jp [202.247.130.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA11898 for ; Wed, 11 Nov 1998 04:29:57 -0800 (PST) (envelope-from greg@greg.rim.or.jp) Received: from rayearth.rim.or.jp (rayearth.rim.or.jp [202.247.130.242]) by ns11.rim.or.jp (8.8.5/3.5Wpl2-ns11/RIMNET-2) with ESMTP id VAA24405 for ; Wed, 11 Nov 1998 21:29:39 +0900 (JST) Received: (from uucp@localhost) by rayearth.rim.or.jp (8.8.5/3.5Wpl2-uucp1/RIMNET) with UUCP id VAA26218 for FreeBSD-gnats-submit@freebsd.org; Wed, 11 Nov 1998 21:29:39 +0900 (JST) Received: from izanami.greg.rim.or.jp (izanami.greg.rim.or.jp [172.31.1.3]) by apollon.greg.rim.or.jp (8.8.8/3.6W) with ESMTP id VAA01226 for ; Wed, 11 Nov 1998 21:25:35 +0900 (JST) Received: (from greg@localhost) by izanami.greg.rim.or.jp (8.8.8/3.4Wbeta6) id VAA26191; Wed, 11 Nov 1998 21:25:34 +0900 (JST) Message-Id: <199811111225.VAA26191@izanami.greg.rim.or.jp> Date: Wed, 11 Nov 1998 21:25:34 +0900 (JST) From: greg@greg.rim.or.jp (Kensaku Masuda) Reply-To: greg@greg.rim.or.jp To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8651: I create a new ports about wget Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8651 >Category: ports >Synopsis: I create a new ports about wget >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: Wed Nov 11 04:40:00 PST 1998 >Last-Modified: >Originator: Kensaku Masuda >Organization: >Release: FreeBSD 2.2.7-STABLE i386 >Environment: No require >Description: I create new port and it's fixes. Fixed point is this 1. Normal wget-1.5.3 do not supprt "If-Modified-Since". This fixed is supprt it. 2. Sometime, normal wget-1.5.3 was generated incollect link when rewriting a links in html. And, I transfered a archive on ftp://ftp.FreeBSD.ORG/pub/FreeBSD/incoming/ports-wget-1.5.3.tar.gz Please commit it. By. >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 Nov 11 05:29:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA15864 for freebsd-ports-outgoing; Wed, 11 Nov 1998 05:29:59 -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 FAA15857 for ; Wed, 11 Nov 1998 05:29:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id FAA14966; Wed, 11 Nov 1998 05:30:01 -0800 (PST) Date: Wed, 11 Nov 1998 05:30:01 -0800 (PST) Message-Id: <199811111330.FAA14966@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Josh Gilliam Subject: Re: ports/8648: net/dict port is broken Reply-To: Josh Gilliam Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/8648; it has been noted by GNATS. From: Josh Gilliam To: darius@holly.dons.net.au, FreeBSD-gnats-submit@FreeBSD.ORG Cc: Subject: Re: ports/8648: net/dict port is broken Date: Wed, 11 Nov 1998 05:36:52 -0800 > >Fix: > Change the comment in files/patch-aa from > #prefix=/usr > to > prefix=/usr/local I don't see how this fixed your problem. patch-aa comments out the hard-coded prefix and allows --prefix to do it's job. Builds fine here (current) for both aout and elf. -- Josh Gilliam 6745 Washington Ave #198 1 626 968 5232 Whittier CA 90601-4325 USA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 06:45:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA21328 for freebsd-ports-outgoing; Wed, 11 Nov 1998 06:45:33 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA21320 for ; Wed, 11 Nov 1998 06:45:29 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA004005316; Wed, 11 Nov 1998 09:41:56 -0500 Date: Wed, 11 Nov 1998 09:41:56 -0500 (EST) From: Bill Fumerola To: Dom Mitchell Cc: ports@FreeBSD.ORG Subject: Re: GNU getopt 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, 11 Nov 1998, Dom Mitchell wrote: > Is there a standard way to include GNU getopt with a port? I'm trying > to port npadmin , > but it needs getopt_long. The easiest way I can think of is to snarf a > copy from (say) /usr/src/contrib/cpio, but that's certainly not > guaranteed to work... I have long agonized over this. The easiest way to do it would be just to put getopt.h in the ports files directory, but I've seen inconsistencies with the Linux getopt_long(which from the word penguin above, I'm assuming it wants) and the FreeBSD getopt* stuff. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 06:45:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA21381 for freebsd-ports-outgoing; Wed, 11 Nov 1998 06:45:50 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA21370; Wed, 11 Nov 1998 06:45:48 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id IAA27855; Wed, 11 Nov 1998 08:45:28 -0600 (CST) Date: Wed, 11 Nov 1998 08:45:28 -0600 (CST) From: Steve Price To: Satoshi Asami cc: ports@FreeBSD.ORG, msmith@FreeBSD.ORG Subject: Re: auto ports build script In-Reply-To: <199811110907.BAA23346@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 Wed, 11 Nov 1998, Satoshi Asami wrote: # * 1) Does a port build? # * 2) Does it play well with others? # # Actually what I had in mind is not to find out 2, but to build the # ports without running into problems caused by 2. Yes, 2) make things complicated but we shouldn't ignore it. With Mike's promise to find the resources we need, we shouldn't have a problem addressing 2) in a separate build tree. # * The second is pretty easy to come by with a couple of simple # * tweeks to the script I provided you. Answering this question # * means installing every port we can prior to one the of interest # * and only removing ones that would result in conflicting files # * being installed. I have a 60% cut at this too. I got as far # * as generating the PLIST for every port and building a conflict # * map. The only problem was that on my P5-90 is took a shade # * over an hour to just generate the PLISTs. :( # # Wow. That is "easy"? ;) # # What are you going to do with that information though? Say, I did # what you mentioned above, recompiled port foo, and it failed with # syntax error in line 694. What now? You send out an error Email to ports-fixers@freebsd.org? :) Seriously what comes next can be one of quite a number of things, but the easiest answer to just move onto the next port. # I don't object to building the whole XFree86 for testing purposes. # The reason I wanted to keep the package I mentioned small is because # it is used (via pkg_add) for every port that requires X. Ah, it is amazing what the dawn of a new day can do to the fog in one's head. I'm finally beginning to see what you are getting at. The really cool part is that the script you already have does what you describe without all the pkg_add business. Given a fresh chroot'd environment the algorithm goes something like this: for each line in INDEX file save dependencies for this port for each port build an inverse dependency list, aka a required by list for each port if this port doesn't depend on any other port then recurse(port) And recurse() looks like this: if this port has been visited before then return set visited to 1 for each port this one depends on recurse(port) install, package this port for each port that requires this port recurse(port) deinstall this port All this in 157 lines of perl code that should be pretty much immune to changes to bsd.port*.mk. You also get a nifty exclude feature to boot - like excluding XFree86-3.3.2 and all the ports that depend on it. :) # * # (iii) A place to copy fetched distfiles, initially empty # * # # * # (iv) A place to copy built packages, initially contains only (ii) # * # * These are easy enough and can be covered by the tarball I create # * for (i). # # No, actually these are outside the chroot area. Maybe even on a # different machine. The chroot area has empty /usr/ports/distfiles and # /usr/ports/packages, and they will be copied to (iii) and (iv) in # later steps (2f and 2g in my original mail). Now I see said the blind man. All I have to do is copy it out of the chroot'd environment. The only difference between what you are describing is when this is done. If I really understand your proposed method, you build up, copy out the good stuff, and break down the chroot'd env for each port. What I gave you was something that built up the tree once, simulated the one dependency tree approach in between, and then copied everything at the very end. This latter approach should be magnitudes faster, take the same amount of total space (maybe a little more in a few corner cases), and accomplishes the same thing. :) # * # The steps: # * # # * # (1) Sort INDEX in reverse topological order, so dependencies will be # * # listed first # * # * This is not as easy as it sounds. I suppose with a judicious tweek # * here and there, the recurse routine could be made to spew out such a # * list. # # Our dependencies are guaranteed to be acyclic, so all we need to do is # create a dependency tree and print out nodes in post-order. This is # easy (at least theoretically). I can even imagine writing an awk # script to turn INDEX into a mini-Makefile that is fed into make and # have it print out the list we want. After all, topological sort is # make's speciality. This is exactly what my little perl script does, except it doesn't just print it out. It does the real work during the post-order tranversal. # In fact, I just did. :) # # === # awk -F '|' '{me=$1; here=$2; bdep=$8; rdep=$9; print "all: " me; print me ": " bdep " " rdep; printf("\t@echo %s\n", here)}' /usr/ports/INDEX # === # # I'm not sure if it is correct (it's a 2-minute hack job) but you get # the idea. I'll play with this a little more later on today. Pretty impressive if this does in one long line of awk what took me 157 lines of perl. ;) # Sorry. Yes, I mean we always start from scratch, we update /usr/ports # once and build all packages without updating it again. (That's why # (iii) and (iv) are initially empty.) I don't think it can be made to # work if we have it constantly keep updating the stuff, especially in # light of non-redistributable stuff. (See my other reply to Jordan on # this.) Yes, walking the whole tree once, updating, and starting over was what I was proposing too. # There are also problems with distfiles. Say, I have a port that's # updated, and now it uses distfile B instead of A. Can I delete A? # Not so fast -- it might be used in some other port. I can do and do a # grep in the entire */*/files/md5, but that's not very fast. Also, # once I do a "cvs update", it's not easy to find out what A was in the # first place. (Same for package names.) Mike Smith's pib can help out on this front. # That's true. Maybe I should make bsd.port.mk ignore RUN_DEPENDS when # PACKAGE_BUILDING is set. This would be nice. Changing one line in the lps (little perl script :) would make the whole thing much faster and cleaner if this were implemented. # I don't think the storage space for packages is that much of a # problem, it's just a few gigs even if they are uncompressed. The # temporary storage for work dirs is much more of a problem as it could # go up to over a dozen gigs. (Depending on the parallelism of the 2 # loop in my original mail, it could be even higher.) This was the reason that I put in the exclude function and why I was considering putting in an include function. So you could split the build in half simply by doing the following in two different envs. ./build INDEX -x XFree86-3.3.2 perl-5.00502 ./build INDEX -i XFree86-3.3.2 perl-5.00502 The first builds everything but the X and perl related stuff and the latter does the rest. # I think the problem is that we are talking two different things here. # What I'm trying to come up here is a script that can rebuild the # entire packages set in one or two days without any manual # intervention. If a port can be built from an empty /usr/local, a # package of it should be built by the automated script. We're talking about addressing the same problem. I mentioned 2) above because that is something that I didn't address in the script I gave you. We just have different approaches to solving it. Imagine that. ;) # Finding conflicts between ports is really another beast altogether. # We know about most of them anyway (gtk, qt, ncurses, etc.). The issue # on that front IMO is how to fix them. (And I've been asking # maintainers to fix them forever, without much success.) Yes conflict resolution is generally not something that can be automated. I was working on a script that would find them and ping the appropriate maintainer when the script found a problem - kind of like Peter's automated-PR reminder stuff. Steve # Satoshi # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 06:56:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA22838 for freebsd-ports-outgoing; Wed, 11 Nov 1998 06:56:51 -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 GAA22829; Wed, 11 Nov 1998 06:56:45 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id GAA17918; Wed, 11 Nov 1998 06:33:23 -0800 (PST) Date: Wed, 11 Nov 1998 06:33:23 -0800 (PST) Message-Id: <199811111433.GAA17918@freefall.freebsd.org> To: taoka@infonets.hiroshima-u.ac.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8224 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update: print/yatex State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Wed Nov 11 06:33:04 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 Wed Nov 11 07:13:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA24415 for freebsd-ports-outgoing; Wed, 11 Nov 1998 07:13:05 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dingo.cdrom.com (castles229.castles.com [208.214.165.229]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA24397; Wed, 11 Nov 1998 07:13:02 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Received: from dingo.cdrom.com (localhost [127.0.0.1]) by dingo.cdrom.com (8.9.1/8.8.8) with ESMTP id VAA00651; Tue, 10 Nov 1998 21:54:51 -0800 (PST) (envelope-from mike@dingo.cdrom.com) Message-Id: <199811110554.VAA00651@dingo.cdrom.com> X-Mailer: exmh version 2.0.2 2/24/98 To: asami@FreeBSD.ORG (Satoshi Asami) cc: sprice@hiwaay.net, ports@FreeBSD.ORG, msmith@FreeBSD.ORG Subject: Re: auto ports build script In-reply-to: Your message of "Tue, 10 Nov 1998 18:46:52 PST." <199811110246.SAA13193@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 10 Nov 1998 21:54:51 -0800 From: Mike Smith Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > * Howdy guys, > > I'm moving this to ports as this is not really at a release > engineering state. I'm copying msmith since I'm not sure if he's on > the ports list. Nope. Thanks for the cc:. > How about something like this? > > Ingredients: > > (i) A tarball that contains an extracted bindist, tweaked /etc and > whatever others (like share/info/dir) that are needed, plus portcheckout What this *screams* out for is unionfs. > (ii) A package of XFree86-3.3.2, but stripped down so it includes only the > minimum required for building other stuff (lib/lib*, bin/imake, > lib/X11/config, etc.) Don't be stingy about space, and wherever possible, don't vary from what people are "normally" going to have. > For speeding up (2), one thing we my want to do is to add an > "uncompressed" package type to pkg_*. Those packages should be much > faster to pkg_add. (They will also be faster to build, but that has > to be done sooner or later so it doesn't help the overall time.) If it's a real issue, try a "pick'n'place" approach, where everyting on the packing list gets picked up and transferred into an individual temporary subtree, where a batch process can come compress it later. This'll translate well as we move to the new package format too. > I wish I can use the space we have here at school for this, we have 20 > FreeBSD machines with lots of disks (but they are nearly full). Maybe > I'll talk to my professor to make this our next research topic after > we find a way to move that data elsewhere. :) Don't stress about space or computrons; that's for me and Jordan to worry about - you need to tell us what you need, and then get it done. -- \\ Sometimes you're ahead, \\ Mike Smith \\ sometimes you're behind. \\ mike@smith.net.au \\ The race is long, and in the \\ msmith@freebsd.org \\ end it's only with yourself. \\ msmith@cdrom.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 07:37:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA26891 for freebsd-ports-outgoing; Wed, 11 Nov 1998 07:37:45 -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 HAA26886; Wed, 11 Nov 1998 07:37:35 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA24305; Wed, 11 Nov 1998 07:37:38 -0800 (PST) Date: Wed, 11 Nov 1998 07:37:38 -0800 (PST) Message-Id: <199811111537.HAA24305@freefall.freebsd.org> To: darius@holly.dons.net.au, vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8626 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: The devel/glade port won't run State-Changed-From-To: open-closed State-Changed-By: vanilla State-Changed-When: Wed Nov 11 07:36:45 PST 1998 State-Changed-Why: I fix gtk11 already, glade should work fine now. thanks. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 07:51:57 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA28681 for freebsd-ports-outgoing; Wed, 11 Nov 1998 07:51:57 -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 HAA28675; Wed, 11 Nov 1998 07:51:56 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA24993; Wed, 11 Nov 1998 07:51:59 -0800 (PST) Date: Wed, 11 Nov 1998 07:51:59 -0800 (PST) Message-Id: <199811111551.HAA24993@freefall.freebsd.org> To: billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/8584 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: net/beroftpd Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Wed Nov 11 07:50:50 PST 1998 Responsible-Changed-Why: I'm taking my own port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 08:03:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA00340 for freebsd-ports-outgoing; Wed, 11 Nov 1998 08:03:14 -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 IAA00315; Wed, 11 Nov 1998 08:02:59 -0800 (PST) (envelope-from vanilla@FreeBSD.org) From: "Vanilla I. Shu" Received: (from vanilla@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA25538; Wed, 11 Nov 1998 08:03:02 -0800 (PST) Date: Wed, 11 Nov 1998 08:03:02 -0800 (PST) Message-Id: <199811111603.IAA25538@freefall.freebsd.org> To: vanilla@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, vanilla@FreeBSD.ORG Subject: Re: ports/8572 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: gtksamba-0.1.0 Responsible-Changed-From-To: freebsd-ports->vanilla Responsible-Changed-By: vanilla Responsible-Changed-When: Wed Nov 11 08:02:16 PST 1998 Responsible-Changed-Why: I take this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 08:47:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA06227 for freebsd-ports-outgoing; Wed, 11 Nov 1998 08:47:00 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from wopr.caltech.edu (wopr.caltech.edu [131.215.240.222]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA06222 for ; Wed, 11 Nov 1998 08:46:59 -0800 (PST) (envelope-from mph@wopr.caltech.edu) Received: (from mph@localhost) by wopr.caltech.edu (8.9.1/8.9.1) id IAA26965; Wed, 11 Nov 1998 08:46:40 -0800 (PST) (envelope-from mph) Message-ID: <19981111084639.A26880@wopr.caltech.edu> Date: Wed, 11 Nov 1998 08:46:39 -0800 From: Matthew Hunt To: Daniel Eischen , freebsd-ports@FreeBSD.ORG Subject: Re: ports/8616 References: <199811110444.XAA14898@pcnet1.pcnet.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199811110444.XAA14898@pcnet1.pcnet.com>; from Daniel Eischen on Tue, Nov 10, 1998 at 11:44:14PM -0500 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Tue, Nov 10, 1998 at 11:44:14PM -0500, Daniel Eischen wrote: > Right, patch-ad should be deleted. I thought the diff -ur would > do that, but I guess it didn't. diff -urN will more or less do that. As the man page says: -N --new-file In directory comparison, if a file is found in only one directory, treat it as present but empty in the other directory. The effect is that files won't be deleted when the patch is applied, but they will be truncated to zero length. That's normally enough of a clue to the committer that the file should be deleted. Just to make sure the committer is paying attention, it never hurts to mention in the PR that files should be deleted. Matt -- Matthew Hunt * Science rules. http://www.pobox.com/~mph/pgp.key for PGP public key 0x67203349. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 08:58:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA07244 for freebsd-ports-outgoing; Wed, 11 Nov 1998 08:58:31 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from phmit.demon.co.uk (phmit.demon.co.uk [194.222.15.209]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id IAA07236 for ; Wed, 11 Nov 1998 08:58:22 -0800 (PST) (envelope-from dom@phmit.demon.co.uk) Received: from voodoo.pandhm.co.uk [10.100.35.12] by phmit.demon.co.uk with esmtp (Exim 1.82 #1) id 0zddbB-000394-00; Wed, 11 Nov 1998 16:58:29 +0000 Received: from dom by voodoo.pandhm.co.uk with local (Exim 1.92 #1) id 0zddaf-00004d-00; Wed, 11 Nov 1998 16:57:57 +0000 To: Bill Fumerola cc: ports@FreeBSD.ORG Subject: Re: GNU getopt X-Mailer: nmh v0.26 X-Colour: Green Organization: Palmer & Harvey McLane In-reply-to: Bill Fumerola's message of "Wed, 11 Nov 1998 09:41:56 EST" Date: Wed, 11 Nov 1998 16:57:56 +0000 From: Dom Mitchell Message-Id: Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 11 November 1998, Bill Fumerola proclaimed: > On Wed, 11 Nov 1998, Dom Mitchell wrote: > > Is there a standard way to include GNU getopt with a port? I'm trying > > to port npadmin , > > but it needs getopt_long. The easiest way I can think of is to snarf a > > copy from (say) /usr/src/contrib/cpio, but that's certainly not > > guaranteed to work... > > I have long agonized over this. The easiest way to do it would be just to > put getopt.h in the ports files directory, but I've seen > inconsistencies with the Linux getopt_long(which from the word > penguin above, I'm assuming it wants) and the FreeBSD getopt* stuff. What, stuff getopt.c and getopt.h in the files directory, and then patch them into place? Fair enough... I'll try that and see how it goes. The cpio ones seem like a good choice as I can't be bothered to download the entire glibc just for two files... What a pain, it seemed like such a useful little tool to start with. I shall mail the author and ask him to include those files with the distribution, because I'm sure that FreeBSD isn't the only Unix which has problems with getopt_long. -- Dom Mitchell -- Palmer & Harvey McLane -- Unix Systems Administrator "Xerox studies suggest that most people print out electronic mail that is longer than half a page; paper use rises by 40 percent in offices that introduce E-mail." -- CCM To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 09:13:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA08720 for freebsd-ports-outgoing; Wed, 11 Nov 1998 09:13:56 -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 JAA08558; Wed, 11 Nov 1998 09:11:57 -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 JAA29090; Wed, 11 Nov 1998 09:11:56 -0800 (PST) Date: Wed, 11 Nov 1998 09:11:56 -0800 (PST) Message-Id: <199811111711.JAA29090@freefall.freebsd.org> To: yds@ingress.net, tg@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8636 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: configure for python-1.5.1 thinks cc is a cross compiler State-Changed-From-To: open-closed State-Changed-By: tg State-Changed-When: Wed Nov 11 09:10:35 PST 1998 State-Changed-Why: Local problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 09:29:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA10658 for freebsd-ports-outgoing; Wed, 11 Nov 1998 09:29:59 -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 JAA10650 for ; Wed, 11 Nov 1998 09:29:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA00633; Wed, 11 Nov 1998 09:30:01 -0800 (PST) Received: from mail.lig.bellsouth.net (mail.lig.bellsouth.net [205.152.0.50]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA10532 for ; Wed, 11 Nov 1998 09:28:21 -0800 (PST) (envelope-from gljohns@bellsouth.net) Received: from gforce.johnson.home (host-209-214-148-219.msy.bellsouth.net [209.214.148.219]) by mail.lig.bellsouth.net (8.8.8-spamdog/8.8.5) with ESMTP id MAA16837 for ; Wed, 11 Nov 1998 12:28:02 -0500 (EST) Received: (from glenn@localhost) by gforce.johnson.home (8.9.1/8.9.1) id LAA28101; Wed, 11 Nov 1998 11:27:21 -0600 (CST) (envelope-from glenn) Message-Id: <199811111727.LAA28101@gforce.johnson.home> Date: Wed, 11 Nov 1998 11:27:21 -0600 (CST) From: Glenn Johnson To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8652: Fix for wmavgload port Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8652 >Category: ports >Synopsis: Fix for wmavgload port >Confidential: yes >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 11 09:30:00 PST 1998 >Last-Modified: >Originator: Glenn Johnson >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: FreeBSD 3.0-CURRENT, elf >Description: Fix wmavgload port, upgrade to wmavgload-0.7.0 >How-To-Repeat: >Fix: patch-aa and patch-ab are no longer needed. However, there is a typo in the file get_load.c. Apply the following patch to fix: *** get_load.c.orig Wed Nov 11 11:10:07 1998 --- get_load.c Wed Nov 11 11:10:29 1998 *************** *** 104,110 **** } #endif ! #if defined(__FreeBSD) || defined(__NetBSD__) || defined(__OpenBSD__) void GetLoad(float *small, float *medium, float *large) { static double loadavg[3]; --- 104,110 ---- } #endif ! #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) void GetLoad(float *small, float *medium, float *large) { static double loadavg[3]; >Audit-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 Nov 11 10:37:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA18056 for freebsd-ports-outgoing; Wed, 11 Nov 1998 10:37:56 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from tickets.advantix.com ([209.64.74.70]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA18042 for ; Wed, 11 Nov 1998 10:37:48 -0800 (PST) (envelope-from rwilson@tickets.advantix.com) Received: from rsw (rsw.pc.advantix.com [199.26.158.135]) by tickets.advantix.com with SMTP (8.8.6 (PHNE_14041)/8.7.1) id NAA02823 for ; Wed, 11 Nov 1998 13:37:30 -0500 (EST) Message-ID: <018201be0da2$935c37f0$879e1ac7@rsw.advantix.com> From: "Randy S Wilson" To: Subject: makedepend source Date: Wed, 11 Nov 1998 13:39:07 -0500 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_NextPart_000_017F_01BE0D78.A7DB3430" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.2120.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2120.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. ------=_NextPart_000_017F_01BE0D78.A7DB3430 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Is the link to sources for makedepend incorrect (appears to point to = imapd sources) Thanks, RSWilson ------=_NextPart_000_017F_01BE0D78.A7DB3430 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Is the link to sources for = makedepend incorrect=20 (appears to point to imapd sources)
 
Thanks,
 
RSWilson
 
------=_NextPart_000_017F_01BE0D78.A7DB3430-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 10:42:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA18576 for freebsd-ports-outgoing; Wed, 11 Nov 1998 10:42:44 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from paris.dppl.com (paris.dppl.com [205.230.74.150]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id KAA18571 for ; Wed, 11 Nov 1998 10:42:42 -0800 (PST) (envelope-from yds@ingress.net) Received: (qmail 5498 invoked from network); 11 Nov 1998 16:55:42 -0000 Received: from ichiban.ingress.com (HELO ichiban) (205.230.64.31) by paris.dppl.com with SMTP; 11 Nov 1998 16:55:42 -0000 Message-ID: <00c201be0d94$20bb0180$1f40e6cd@ichiban.ingress.com> From: "Yarema" To: Subject: Re: ports/8634; ports/8635; ports/8636 Date: Wed, 11 Nov 1998 11:55:46 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3155.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org My goof. The above PRs might as well be closed. The problem was that I did a buildworld with CFLAGS containing something other than just -O. This caused me all kinds of grief. Now that I re built and reinstalled 3.0-CURRENT with CFLAGS= -pipe -O most everything works fine.. -- Yarema P.S. If there's a way for me to close PR that I submit myself please let me know so I don't have to bother anyone else.. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 10:43:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA18675 for freebsd-ports-outgoing; Wed, 11 Nov 1998 10:43:15 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from paris.dppl.com (paris.dppl.com [205.230.74.150]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id KAA18668 for ; Wed, 11 Nov 1998 10:43:13 -0800 (PST) (envelope-from yds@ingress.net) Received: (qmail 5554 invoked from network); 11 Nov 1998 16:56:13 -0000 Received: from ichiban.ingress.com (HELO ichiban) (205.230.64.31) by paris.dppl.com with SMTP; 11 Nov 1998 16:56:13 -0000 Message-ID: <00c301be0d94$332164e0$1f40e6cd@ichiban.ingress.com> From: "Yarema" To: "Thomas Gellekum" Cc: Subject: Re: ports/8636: configure for python-1.5.1 thinks cc is a cross compiler Date: Wed, 11 Nov 1998 11:56:17 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 4.72.3155.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Nevermind, thanks for the help though. It was my goof. I did a buildworld with optimizations other than -O. It caused me a bit of grief the PR below being one of them. After setting CFLAGS= -pipe -O and doing another buildworld the problem below went away. I learned my lesson... -- Yarema -----Original Message----- From: Thomas Gellekum To: Yarema Date: Wednesday, November 11, 1998 10:44 AM Subject: Re: ports/8636: configure for python-1.5.1 thinks cc is a cross compiler >Yarema writes: > >> As requested this is the entire config.log file: >> >> This file contains any messages produced by compilers while >> running configure, to aid debugging if configure makes a mistake. >> >> configure:589: checking MACHDEP >> configure:634: checking CCC >> configure:649: checking for --without-gcc >> configure:683: checking for gcc >> configure:760: checking whether the C compiler >> (cc -pipe -O2 -D_THREAD_SAFE -pthread -rdynamic) works >> configure:774: cc -o onftest -pipe -O2 -D_THREAD_SAFE -pthread -rdynamic >> conftest.c 1>&5 >> configure:794: checking whether the C compiler >> (cc -pipe -O2 -D_THREAD_SAFE -pthread -rdynamic) is a cross-compiler > >Here's the relevant code from configure: > >cat > conftest.$ac_ext <#line 770 "configure" >#include "confdefs.h" >main(){return(0);} >EOF >if { (eval echo configure:774: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then > ac_cv_prog_cc_works=yes > # If we can't run a trivial program, we are probably using a cross compiler. > if (./conftest; exit) 2>/dev/null; then > ac_cv_prog_cc_cross=no > else > ac_cv_prog_cc_cross=yes > fi >else > >Your output means that the (eval $ac_link) worked fine, but >(./conftest; exit) returned something different than 0. Could you >check this by hand, like this: > >tmp:228) cc -o conftest conftest.c >tmp:229) (./conftest; exit) >tmp:230) echo $? >0 > >> BTW, confdefs.h is only 1 byte at this point. > >This is normal, confdefs.h contains only a newline. > >tg > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 11:03:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA20746 for freebsd-ports-outgoing; Wed, 11 Nov 1998 11:03:49 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from hp9000.chc-chimes.com (hp9000.chc-chimes.com [206.67.97.84]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA20708 for ; Wed, 11 Nov 1998 11:03:42 -0800 (PST) (envelope-from billf@chc-chimes.com) Received: from localhost by hp9000.chc-chimes.com with SMTP (1.39.111.2/16.2) id AA095030847; Wed, 11 Nov 1998 14:00:47 -0500 Date: Wed, 11 Nov 1998 14:00:47 -0500 (EST) From: Bill Fumerola To: Dom Mitchell Cc: ports@FreeBSD.ORG Subject: Re: GNU getopt 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, 11 Nov 1998, Dom Mitchell wrote: > What a pain, it seemed like such a useful little tool to start with. I > shall mail the author and ask him to include those files with the > distribution, because I'm sure that FreeBSD isn't the only Unix which > has problems with getopt_long. In a recent port I did (but haven't committed it yet) the author provided a define to disable it. The only thing you lost by not having getopt_long, was long options, not the whole command line interface, which is what sometimes happens with these apps. Perhaps someone from -hackers or something could comment on how we could have a getopt_long that could be implemented in these ports. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 12:17:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA28306 for freebsd-ports-outgoing; Wed, 11 Nov 1998 12:17: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 MAA28296; Wed, 11 Nov 1998 12:17:26 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA10486; Wed, 11 Nov 1998 12:17:29 -0800 (PST) Date: Wed, 11 Nov 1998 12:17:29 -0800 (PST) Message-Id: <199811112017.MAA10486@freefall.freebsd.org> To: yds@ingress.net, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8635 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mysql322 w/-lc_r thinks size of char is 0 State-Changed-From-To: open-closed State-Changed-By: billf State-Changed-When: Wed Nov 11 12:14:08 PST 1998 State-Changed-Why: closed at submitter's request To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 12:18:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA28508 for freebsd-ports-outgoing; Wed, 11 Nov 1998 12:18:47 -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 MAA28492; Wed, 11 Nov 1998 12:18:43 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA10594; Wed, 11 Nov 1998 12:18:46 -0800 (PST) Date: Wed, 11 Nov 1998 12:18:46 -0800 (PST) Message-Id: <199811112018.MAA10594@freefall.freebsd.org> To: yds@ingress.net, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8634 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: mysql32[12] mysqld Seg faults durring indstall State-Changed-From-To: open-closed State-Changed-By: billf State-Changed-When: Wed Nov 11 12:17:45 PST 1998 State-Changed-Why: closed at submitters request. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 13:00:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA02269 for freebsd-ports-outgoing; Wed, 11 Nov 1998 13:00:33 -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 NAA02255; Wed, 11 Nov 1998 13:00:13 -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 NAA12838; Wed, 11 Nov 1998 13:00:16 -0800 (PST) Date: Wed, 11 Nov 1998 13:00:16 -0800 (PST) Message-Id: <199811112100.NAA12838@freefall.freebsd.org> To: gljohns@bellsouth.net, asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8652 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fix for wmavgload port State-Changed-From-To: open-closed State-Changed-By: asami State-Changed-When: Wed Nov 11 12:59:33 PST 1998 State-Changed-Why: Committed, thanks! BTW, next time please the PR with confidential: no so everyone else will see it too! :) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 13:31:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA05195 for freebsd-ports-outgoing; Wed, 11 Nov 1998 13:31:00 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.gtn.com (mail.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA05162; Wed, 11 Nov 1998 13:30:56 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by mail.gtn.com (8.8.6/8.8.6) with UUCP id WAA07013; Wed, 11 Nov 1998 22:30:16 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.9.1/8.9.1) id WAA02577; Wed, 11 Nov 1998 22:21:42 +0100 (CET) (envelope-from andreas) Message-ID: <19981111222142.C2553@klemm.gtn.com> Date: Wed, 11 Nov 1998 22:21:42 +0100 From: Andreas Klemm To: Werner Griessl , andreas@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: lyx & current References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: ; from Werner Griessl on Wed, Nov 11, 1998 at 12:34:02PM +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 Wed, Nov 11, 1998 at 12:34:02PM +0100, Werner Griessl wrote: > > ---------------------------------- > > Hi Andreas, > > The new LyX (lyx-1.0.0pre2) compiles and installs without problems > on my current ELF system. > But if I try to run it fails with: > > /usr/libexec/ld-elf.so.1: Shared object "libforms.so.0.88" not found > > I installed xforms (elf) before. create a symlink, so that this file will be found ;-) The people who build this binary release didn't do it right. -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example, in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 14:00:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA08032 for freebsd-ports-outgoing; Wed, 11 Nov 1998 14:00:01 -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 NAA08005; Wed, 11 Nov 1998 13:59:57 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA17148; Wed, 11 Nov 1998 14:00:01 -0800 (PST) Date: Wed, 11 Nov 1998 14:00:01 -0800 (PST) Message-Id: <199811112200.OAA17148@freefall.freebsd.org> To: sakai@miya3f01.ee.kagu.sut.ac.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8481 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port of XStarRoll State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Wed Nov 11 13:59:35 PST 1998 State-Changed-Why: Obsoleted by ports/8497. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 14:39:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA11977 for freebsd-ports-outgoing; Wed, 11 Nov 1998 14:39:19 -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 OAA11967; Wed, 11 Nov 1998 14:39:15 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca9-181.ix.netcom.com [209.109.236.181]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id OAA26817; Wed, 11 Nov 1998 14:38:55 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id OAA16776; Wed, 11 Nov 1998 14:38:51 -0800 (PST) Date: Wed, 11 Nov 1998 14:38:51 -0800 (PST) Message-Id: <199811112238.OAA16776@silvia.hip.berkeley.edu> To: sprice@hiwaay.net CC: ports@FreeBSD.ORG, msmith@FreeBSD.ORG In-reply-to: (message from Steve Price on Wed, 11 Nov 1998 08:45:28 -0600 (CST)) Subject: Re: auto ports build script From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Yes, 2) make things complicated but we shouldn't ignore it. * With Mike's promise to find the resources we need, we shouldn't * have a problem addressing 2) in a separate build tree. I'm not saying it should be ignored, I'm just contending that it's an entirely different problem. :) * Ah, it is amazing what the dawn of a new day can do to the * fog in one's head. I'm finally beginning to see what you are * getting at. The really cool part is that the script you Good thing we agree with each other. :) * already have does what you describe without all the pkg_add * business. Given a fresh chroot'd environment the algorithm goes * something like this: * * for each line in INDEX file * save dependencies for this port * for each port * build an inverse dependency list, aka a required by list * for each port * if this port doesn't depend on any other port then * recurse(port) * * And recurse() looks like this: * * if this port has been visited before then * return * set visited to 1 * for each port this one depends on * recurse(port) * install, package this port * for each port that requires this port * recurse(port) * deinstall this port Oh, I see. * All this in 157 lines of perl code that should be pretty much * immune to changes to bsd.port*.mk. You also get a nifty * exclude feature to boot - like excluding XFree86-3.3.2 and * all the ports that depend on it. :) That's a nice feature. * Now I see said the blind man. All I have to do is copy it out * of the chroot'd environment. The only difference between what * you are describing is when this is done. If I really understand * your proposed method, you build up, copy out the good stuff, and * break down the chroot'd env for each port. What I gave you was * something that built up the tree once, simulated the one dependency * tree approach in between, and then copied everything at the very * end. This latter approach should be magnitudes faster, take * the same amount of total space (maybe a little more in a few * corner cases), and accomplishes the same thing. :) I'm trying to come up with something that is easily parallelizable. It's not clear to me how you can do that in perl, although I think we can use your script (modified) to take care of a single port in the parallelized world. Another is that I truly believe the only way to build correct packages is to always start with an empty /usr/local. One thing I haven't mentioned yet in this discussion is the existence of ports that configure themselves and include support for all sorts of cruft they find. You see all the gunk in the tree that says ".if defined(PACKAGE_BUILDING) CONFIGURE_ARGS=--disable-foobar"? That's because when we build packages on a heavily populated machine, there are stuff that aren't on the porter's machine and we end up shipping a binary with dependencies which are not covered by @pkgdep. The only way to find this, right now, is to have an annoyed package user report to us. Since this problem is not reproducible without a specific set of conditions, it is very hard to diagnose, requires a hack to work around, and there always is a danger that it will slip through whenever someone makes a last-minute update before releases. Another nice thing the empty /usr/local approach will let us do is to add a check to verify completeness of pkg/PLIST. Just pkg_delete all the stuff in /var/db/pkg and if anything is still under /usr/local, the port in question is probably missing some entries. :) * This is exactly what my little perl script does, except it doesn't * just print it out. It does the real work during the post-order * tranversal. I see. I told you it's easy. :) * I'll play with this a little more later on today. Pretty impressive * if this does in one long line of awk what took me 157 lines of perl. ;) Well, it does only print it out so far, but I think this is the approach we should take. Building stuff according to dependencies is exactly what make is designed for. In fact, I think our final goal should be to use pmake to parallelize this between machines. That way, we can guarantee that a dependency is built before a port that's requiring it, so we can always use packages. By the way, does anyone know where I can find most up-to-date sources of pmake? I know there's some stuff in /usr/src/usr.bin/make, but the "pmake tutorial" doesn't seem to agree with the manpage, and adding "-DREMOTE" to CFLAGS causes the build to fail. Also, the tutorial says nothing about how to specify remote machines, etc. * Yes, walking the whole tree once, updating, and starting over * was what I was proposing too. Ok. * This would be nice. Changing one line in the lps (little perl * script :) would make the whole thing much faster and cleaner * if this were implemented. However, it shouldn't really matter if all the dependencies are built first. It will use packages most of the time anyway. (Also, aren't there RUN_DEPENDS that truly are required for installing, not only running? USE_PERL5 is one of them....) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 14:41:01 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA12348 for freebsd-ports-outgoing; Wed, 11 Nov 1998 14:41:01 -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 OAA12341; Wed, 11 Nov 1998 14:40:52 -0800 (PST) (envelope-from mph@FreeBSD.org) From: Matthew Hunt Received: (from mph@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19232; Wed, 11 Nov 1998 14:40:55 -0800 (PST) Date: Wed, 11 Nov 1998 14:40:55 -0800 (PST) Message-Id: <199811112240.OAA19232@freefall.freebsd.org> To: croyle@gelemna.ft-wayne.in.us, mph@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, mph@FreeBSD.ORG Subject: Re: ports/8649 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update x11-wm/blackbox to 0.40.13 State-Changed-From-To: open-closed State-Changed-By: mph State-Changed-When: Wed Nov 11 17:40:34 EST 1998 State-Changed-Why: Update applied, thanks. Responsible-Changed-From-To: freebsd-ports->mph Responsible-Changed-By: mph Responsible-Changed-When: Wed Nov 11 17:40:34 EST 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 Wed Nov 11 14:43:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA12578 for freebsd-ports-outgoing; Wed, 11 Nov 1998 14:43:33 -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 OAA12572; Wed, 11 Nov 1998 14:43:32 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19383; Wed, 11 Nov 1998 14:43:35 -0800 (PST) Date: Wed, 11 Nov 1998 14:43:35 -0800 (PST) Message-Id: <199811112243.OAA19383@freefall.freebsd.org> To: billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/7582 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: net/portscanner Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Wed Nov 11 14:41:17 PST 1998 Responsible-Changed-Why: It's my own port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 14:44:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA12727 for freebsd-ports-outgoing; Wed, 11 Nov 1998 14:44:24 -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 OAA12721; Wed, 11 Nov 1998 14:44:23 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19480; Wed, 11 Nov 1998 14:44:26 -0800 (PST) Date: Wed, 11 Nov 1998 14:44:26 -0800 (PST) Message-Id: <199811112244.OAA19480@freefall.freebsd.org> To: billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/7732 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: graphics/qcread Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Wed Nov 11 14:43:44 PST 1998 Responsible-Changed-Why: It's my port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 14:47:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA12948 for freebsd-ports-outgoing; Wed, 11 Nov 1998 14:47:04 -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 OAA12939; Wed, 11 Nov 1998 14:47:02 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19630; Wed, 11 Nov 1998 14:47:05 -0800 (PST) Date: Wed, 11 Nov 1998 14:47:05 -0800 (PST) Message-Id: <199811112247.OAA19630@freefall.freebsd.org> To: billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/8109 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: net/muh Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Wed Nov 11 14:44:49 PST 1998 Responsible-Changed-Why: It is my port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 14:47:32 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13076 for freebsd-ports-outgoing; Wed, 11 Nov 1998 14:47:32 -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 OAA13070; Wed, 11 Nov 1998 14:47:31 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca9-181.ix.netcom.com [209.109.236.181]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id OAA26827; Wed, 11 Nov 1998 14:47:09 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id OAA16799; Wed, 11 Nov 1998 14:47:04 -0800 (PST) Date: Wed, 11 Nov 1998 14:47:04 -0800 (PST) Message-Id: <199811112247.OAA16799@silvia.hip.berkeley.edu> To: mike@smith.net.au CC: sprice@hiwaay.net, ports@FreeBSD.ORG, msmith@FreeBSD.ORG In-reply-to: <199811110554.VAA00651@dingo.cdrom.com> (message from Mike Smith on Tue, 10 Nov 1998 21:54:51 -0800) Subject: Re: auto ports build script From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * > (i) A tarball that contains an extracted bindist, tweaked /etc and * > whatever others (like share/info/dir) that are needed, plus portcheckout * * What this *screams* out for is unionfs. That's what I thought too. Too bad I don't have the knowledge to fix it. :< * Don't be stingy about space, and wherever possible, don't vary from * what people are "normally" going to have. It's not really about space, it's because of speed. It takes a looooooong time to unpack that 26MB (compressed) tarball. :) * > For speeding up (2), one thing we my want to do is to add an * > "uncompressed" package type to pkg_*. Those packages should be much * > faster to pkg_add. (They will also be faster to build, but that has * > to be done sooner or later so it doesn't help the overall time.) * * If it's a real issue, try a "pick'n'place" approach, where everyting on * the packing list gets picked up and transferred into an individual * temporary subtree, where a batch process can come compress it later. * This'll translate well as we move to the new package format too. That might miss some @exec/@unexec lines in PLIST or install/deinstall scripts. I thought it might just be easier to add a new option to pkg_create to not add -z to the tar flag (and an ability to pkg_add to recognize it and DTRT). * Don't stress about space or computrons; that's for me and Jordan to * worry about - you need to tell us what you need, and then get it done. Well, as I said, I think we need at least 8 machines, P6-200 or faster, and Jordan already said no. :) The truth of fact is that we do have 20 machines, all running FreeBSD, with at least one spare 7GB partition each. So I might be able to put this together much faster than you guys if I can convince my professor. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 14:47:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13114 for freebsd-ports-outgoing; Wed, 11 Nov 1998 14:47:37 -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 OAA13100; Wed, 11 Nov 1998 14:47:35 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19710; Wed, 11 Nov 1998 14:47:38 -0800 (PST) Date: Wed, 11 Nov 1998 14:47:38 -0800 (PST) Message-Id: <199811112247.OAA19710@freefall.freebsd.org> To: billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/8124 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: net/proftpd-devel Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Wed Nov 11 14:47:20 PST 1998 Responsible-Changed-Why: It is my port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 14:48:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13339 for freebsd-ports-outgoing; Wed, 11 Nov 1998 14:48: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 OAA13332; Wed, 11 Nov 1998 14:48:21 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19783; Wed, 11 Nov 1998 14:48:24 -0800 (PST) Date: Wed, 11 Nov 1998 14:48:24 -0800 (PST) Message-Id: <199811112248.OAA19783@freefall.freebsd.org> To: billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/8126 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: misc/gtkfind Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Wed Nov 11 14:48:09 PST 1998 Responsible-Changed-Why: It is my port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 14:49:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13465 for freebsd-ports-outgoing; Wed, 11 Nov 1998 14:49: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 OAA13459; Wed, 11 Nov 1998 14:48:58 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19867; Wed, 11 Nov 1998 14:49:01 -0800 (PST) Date: Wed, 11 Nov 1998 14:49:01 -0800 (PST) Message-Id: <199811112249.OAA19867@freefall.freebsd.org> To: billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/8292 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update port: net/ntop Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Wed Nov 11 14:48:36 PST 1998 Responsible-Changed-Why: It is my port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 14:49:28 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13605 for freebsd-ports-outgoing; Wed, 11 Nov 1998 14:49:28 -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 OAA13598; Wed, 11 Nov 1998 14:49:26 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA19936; Wed, 11 Nov 1998 14:49:30 -0800 (PST) Date: Wed, 11 Nov 1998 14:49:30 -0800 (PST) Message-Id: <199811112249.OAA19936@freefall.freebsd.org> To: billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/8546 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: new port: [net/benchmarks]/nttcp Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Wed Nov 11 14:49:13 PST 1998 Responsible-Changed-Why: It is my port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 15:26:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA17611 for freebsd-ports-outgoing; Wed, 11 Nov 1998 15:26:21 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA17603; Wed, 11 Nov 1998 15:26:15 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id RAA05070; Wed, 11 Nov 1998 17:25:45 -0600 (CST) Date: Wed, 11 Nov 1998 17:25:45 -0600 (CST) From: Steve Price To: Satoshi Asami cc: ports@FreeBSD.ORG, msmith@FreeBSD.ORG Subject: Re: auto ports build script In-Reply-To: <199811112238.OAA16776@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 Wed, 11 Nov 1998, Satoshi Asami wrote: # I'm trying to come up with something that is easily parallelizable. # It's not clear to me how you can do that in perl, although I think we # can use your script (modified) to take care of a single port in the # parallelized world. Yes this would be an easy mod. I'm working on it right now. # Another is that I truly believe the only way to build correct packages # is to always start with an empty /usr/local. The only thing that is in /usr/local right now with my little script is those files that are required to build the current port. Everything else is 'make deinstall'd before the script moves on. # One thing I haven't mentioned yet in this discussion is the existence # of ports that configure themselves and include support for all sorts # of cruft they find. You see all the gunk in the tree that says ".if # defined(PACKAGE_BUILDING) CONFIGURE_ARGS=--disable-foobar"? That's # because when we build packages on a heavily populated machine, there # are stuff that aren't on the porter's machine and we end up shipping a # binary with dependencies which are not covered by @pkgdep. These problems make for the majority of what Justin and I were finding during the last release (excluding all the ELF dead). # In fact, I think our final goal should be to use pmake to parallelize # this between machines. That way, we can guarantee that a dependency # is built before a port that's requiring it, so we can always use # packages. There are currently 746 distinct dependency trees. It should be easy to tweek my little script and provide a frontend for it that created a new process per dependency tree. No need for anything fancy (like pmake) - the script'll do. ;) A quick example if you would allow me. Suppose I have a simple dependency tree like so: A depends on B, B depends on C, and C depends on nothing. If I understand your approach it would go something like this (I've left out a few steps to try and keep it short). 1) build C's package and pkg_delete C 2) pkg_add C, build B's package, pkg_delete B C 3) pkg_add C B, build A's package, pkg_delete A B C The current tact that my little script takes is this: 1) build C's package 2) build B's package 3) build A's package, pkg_delete A B C After it is done with this dependency tree it does the next one until it has covered all of them. Another example of a more complex tree could be: A depends on C, B depends on C, and C is standalone. Your approach would do this: 1) build C's package and pkg_delete C 2) pkg_add C, build A's package, pkg_delete A C 3) pkg_add C, build B's package, pkg_delete B C My little script does this: 1) build C's package 2) build A's package, pkg_delete A 3) build B's package, pkg_delete B C Unless I'm missing something fundamental here, doing the latter in both cases seems to not only do the "same thing", but does it in a more efficient manner. Please tell me how come I can't see the forest for the trees. :) -steve # Satoshi # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 15:36:38 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA18996 for freebsd-ports-outgoing; Wed, 11 Nov 1998 15:36:38 -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 PAA18991; Wed, 11 Nov 1998 15:36:37 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca9-181.ix.netcom.com [209.109.236.181]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id PAA26882; Wed, 11 Nov 1998 15:36:18 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id PAA17057; Wed, 11 Nov 1998 15:36:15 -0800 (PST) Date: Wed, 11 Nov 1998 15:36:15 -0800 (PST) Message-Id: <199811112336.PAA17057@silvia.hip.berkeley.edu> To: jkh@FreeBSD.ORG CC: ports@FreeBSD.ORG Subject: FWF depends on Motif? From: asami@cs.berkeley.edu (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I built x11-toolkits/FWF on a machine with HAVE_MOTIF set and no Motif installed, and I got this: === Adding ImageSel.o To Library ../../lib/libfwf.a ar qc ../../lib/libfwf.a ImageSel.o ranlib ../../lib/libfwf.a cp ./ImageSel.man ../../man/ImageSel.man cp ./ImageSelT.man ../../man/ImageSelT.man building objects in src/Rheostat... rm -f Rheostat.o cc -c -I../../include -I/usr/X11R6/include -O -Wall -I/usr/X11R6/include -I/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -DMOTIF=1 Rheostat.c Rheostat.c:64: Xm/XmP.h: No such file or directory Rheostat.c:65: Xm/PrimitiveP.h: No such file or directory *** Error code 1 Stop. === Hmm. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 15:40:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA19480 for freebsd-ports-outgoing; Wed, 11 Nov 1998 15:40:31 -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 PAA19472; Wed, 11 Nov 1998 15:40:28 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca9-181.ix.netcom.com [209.109.236.181]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id PAA26893; Wed, 11 Nov 1998 15:40:08 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id PAA17073; Wed, 11 Nov 1998 15:40:06 -0800 (PST) Date: Wed, 11 Nov 1998 15:40:06 -0800 (PST) Message-Id: <199811112340.PAA17073@silvia.hip.berkeley.edu> To: sprice@hiwaay.net CC: ports@FreeBSD.ORG, msmith@FreeBSD.ORG In-reply-to: (message from Steve Price on Wed, 11 Nov 1998 17:25:45 -0600 (CST)) Subject: Re: auto ports build script From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * The only thing that is in /usr/local right now with my little * script is those files that are required to build the current * port. Everything else is 'make deinstall'd before the script * moves on. Oh, ok. * # One thing I haven't mentioned yet in this discussion is the existence * # of ports that configure themselves and include support for all sorts * # of cruft they find. You see all the gunk in the tree that says ".if * These problems make for the majority of what Justin and I * were finding during the last release (excluding all the ELF * dead). You were actually finding those? Wow. * There are currently 746 distinct dependency trees. It * should be easy to tweek my little script and provide a * frontend for it that created a new process per dependency * tree. No need for anything fancy (like pmake) - the * script'll do. ;) The problem here is that dependencies are not trees. What we have is an directed acyclic graph (DAG). You can't guarantee ordering on DAG's unless you wait for completions of some processes, which a shell "&" won't do while make does. * A quick example if you would allow me. Suppose I have a * simple dependency tree like so: A depends on B, B depends * on C, and C depends on nothing. If I understand your * approach it would go something like this (I've left out * a few steps to try and keep it short). * 1) build C's package * 2) build B's package * 3) build A's package, pkg_delete A B C * * After it is done with this dependency tree it does the * next one until it has covered all of them. This is nice, but what do you do if there is another port, D, that depends on B? You don't have to wait for 3 to complete to start the build of D, you only need 2. * Another example of a more complex tree could be: A depends * on C, B depends on C, and C is standalone. Your approach * would do this: * * 1) build C's package and pkg_delete C * 2) pkg_add C, build A's package, pkg_delete A C * 3) pkg_add C, build B's package, pkg_delete B C Note 2 and 3 can be done in parallel. * My little script does this: * * 1) build C's package * 2) build A's package, pkg_delete A * 3) build B's package, pkg_delete B C * * Unless I'm missing something fundamental here, doing the * latter in both cases seems to not only do the "same thing", * but does it in a more efficient manner. Please tell me * how come I can't see the forest for the trees. :) It's surely more efficient on one machine, but I'm just not sure how well it parallelizes. :) Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 15:44:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA19884 for freebsd-ports-outgoing; Wed, 11 Nov 1998 15:44:47 -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 PAA19877 for ; Wed, 11 Nov 1998 15:44:45 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca9-181.ix.netcom.com [209.109.236.181]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id PAA26897; Wed, 11 Nov 1998 15:44:26 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id PAA17083; Wed, 11 Nov 1998 15:44:23 -0800 (PST) Date: Wed, 11 Nov 1998 15:44:23 -0800 (PST) Message-Id: <199811112344.PAA17083@silvia.hip.berkeley.edu> To: andreas@klemm.gtn.com CC: ports@FreeBSD.ORG In-reply-to: <19981111222924.A2671@klemm.gtn.com> (message from Andreas Klemm on Wed, 11 Nov 1998 22:29:24 +0100) Subject: Re: cvs commit: ports/x11-toolkits/qt Makefile ports/x11-toolkits/qt133 Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Yes, and then a respository copy from qt140 to qt141 ;-) You want a *what*? ;) After the latest qt and gtk debacle, I'm very weary of allowing another qt version in the tree. I have a few questions I need to ask you first: (1) Is qt141 upwards compatible to qt140? In other words, can I change the USE_QT define in bsd.port.mk, cvs remove qt140 (in other words, this is a straght upgrade, with the repository copy only necessary because of the name change) and will the entire world be happy? (2) If not, how hard do you think is it to fix all the ports that don't work with qt141? Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 15:53:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA20721 for freebsd-ports-outgoing; Wed, 11 Nov 1998 15:53:23 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA20713; Wed, 11 Nov 1998 15:53:20 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id RAA23576; Wed, 11 Nov 1998 17:53:02 -0600 (CST) Date: Wed, 11 Nov 1998 17:53:01 -0600 (CST) From: Steve Price To: Satoshi Asami cc: ports@FreeBSD.ORG, msmith@FreeBSD.ORG Subject: Re: auto ports build script In-Reply-To: <199811112340.PAA17073@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 Wed, 11 Nov 1998, Satoshi Asami wrote: # The problem here is that dependencies are not trees. What we have is # an directed acyclic graph (DAG). You can't guarantee ordering on # DAG's unless you wait for completions of some processes, which a shell # "&" won't do while make does. Yes they are DAG's. And yes parallelizing within a DAG might be difficult to achieve, but with 746 of these little beasties it is trivial to do it among them. That is, theoretically all 746 could be run concurrently. :) # * 1) build C's package # * 2) build B's package # * 3) build A's package, pkg_delete A B C # * # This is nice, but what do you do if there is another port, D, that # depends on B? You don't have to wait for 3 to complete to start the # build of D, you only need 2. The recurse method takes care of it. It would do something like this: 1) build C's package 2) build B's pacakge 3) build D's package, pkg_delete D 4) build A's package, pkg_delete A B C # * Another example of a more complex tree could be: A depends # * on C, B depends on C, and C is standalone. Your approach # * would do this: # * # * 1) build C's package and pkg_delete C # * 2) pkg_add C, build A's package, pkg_delete A C # * 3) pkg_add C, build B's package, pkg_delete B C # # Note 2 and 3 can be done in parallel. Yes, they can but only in separate chroot envs. As I said earlier, you can achieve parallelism among DAGs just as easy and with less overhead wrt to CPU and mass storage. # * My little script does this: # * # * 1) build C's package # * 2) build A's package, pkg_delete A # * 3) build B's package, pkg_delete B C # * # * Unless I'm missing something fundamental here, doing the # * latter in both cases seems to not only do the "same thing", # * but does it in a more efficient manner. Please tell me # * how come I can't see the forest for the trees. :) # # It's surely more efficient on one machine, but I'm just not sure how # well it parallelizes. :) See above. :) -steve # Satoshi # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 16:04:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA23228 for freebsd-ports-outgoing; Wed, 11 Nov 1998 16:04:51 -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 QAA23174; Wed, 11 Nov 1998 16:04:50 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca9-181.ix.netcom.com [209.109.236.181]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id QAA26933; Wed, 11 Nov 1998 16:04:31 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id QAA17185; Wed, 11 Nov 1998 16:04:28 -0800 (PST) Date: Wed, 11 Nov 1998 16:04:28 -0800 (PST) Message-Id: <199811120004.QAA17185@silvia.hip.berkeley.edu> To: sprice@hiwaay.net CC: ports@FreeBSD.ORG, msmith@FreeBSD.ORG In-reply-to: (message from Steve Price on Wed, 11 Nov 1998 17:53:01 -0600 (CST)) Subject: Re: auto ports build script From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Yes they are DAG's. And yes parallelizing within a DAG might * be difficult to achieve, but with 746 of these little beasties * it is trivial to do it among them. That is, theoretically * all 746 could be run concurrently. :) I'm not sure I follow you here. What exactly do we have 746 of? * The recurse method takes care of it. It would do something * like this: * * 1) build C's package * 2) build B's pacakge * 3) build D's package, pkg_delete D * 4) build A's package, pkg_delete A B C I'm not saying your script won't work, I'm just asking how it can be taught to coordinate between parallel builds. * # * Another example of a more complex tree could be: A depends * # * on C, B depends on C, and C is standalone. Your approach * # * would do this: * # * * # * 1) build C's package and pkg_delete C * # * 2) pkg_add C, build A's package, pkg_delete A C * # * 3) pkg_add C, build B's package, pkg_delete B C * # * # Note 2 and 3 can be done in parallel. * * Yes, they can but only in separate chroot envs. Sorry, I thought I made it clear that I'm running these on different machines (and in different chroot envs). Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 16:13:26 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA24887 for freebsd-ports-outgoing; Wed, 11 Nov 1998 16:13:26 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA24878; Wed, 11 Nov 1998 16:13:20 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id SAA27877; Wed, 11 Nov 1998 18:13:02 -0600 (CST) Date: Wed, 11 Nov 1998 18:13:02 -0600 (CST) From: Steve Price To: Satoshi Asami cc: ports@FreeBSD.ORG, msmith@FreeBSD.ORG Subject: Re: auto ports build script In-Reply-To: <199811120004.QAA17185@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 Wed, 11 Nov 1998, Satoshi Asami wrote: # * Yes they are DAG's. And yes parallelizing within a DAG might # * be difficult to achieve, but with 746 of these little beasties # * it is trivial to do it among them. That is, theoretically # * all 746 could be run concurrently. :) # # I'm not sure I follow you here. What exactly do we have 746 of? If you consider the dependencies for each port and you clump them together based on these dependencies into a DAG, you end up with 746 of them. Suppose you had 5 ports, A-E, and the following dependencies. A depends on B B is standalone C depends on A D depends on E E is standalone This would form two DAGs: one with {A, B, C} and one with {D, E}. # * The recurse method takes care of it. It would do something # * like this: # * # * 1) build C's package # * 2) build B's pacakge # * 3) build D's package, pkg_delete D # * 4) build A's package, pkg_delete A B C # # I'm not saying your script won't work, I'm just asking how it can be # taught to coordinate between parallel builds. Working on it right now. # * # * Another example of a more complex tree could be: A depends # * # * on C, B depends on C, and C is standalone. Your approach # * # * would do this: # * # * # * # * 1) build C's package and pkg_delete C # * # * 2) pkg_add C, build A's package, pkg_delete A C # * # * 3) pkg_add C, build B's package, pkg_delete B C # * # # * # Note 2 and 3 can be done in parallel. # * # * Yes, they can but only in separate chroot envs. # # Sorry, I thought I made it clear that I'm running these on different # machines (and in different chroot envs). Yes, you did. My point was that this approach was only one way of achieving parallelism. -steve # Satoshi # To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 16:16:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA25410 for freebsd-ports-outgoing; Wed, 11 Nov 1998 16:16:21 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from tick.ssec.wisc.edu (tick.ssec.wisc.edu [144.92.108.121]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id QAA25402; Wed, 11 Nov 1998 16:16:19 -0800 (PST) (envelope-from dglo@tick.ssec.wisc.edu) Received: from tick.ssec.wisc.edu (localhost [127.0.0.1]) by tick.ssec.wisc.edu (8.8.7/8.8.7) with ESMTP id SAA15795; Wed, 11 Nov 1998 18:15:59 -0600 (CST) From: Dave Glowacki Message-Id: <199811120015.SAA15795@tick.ssec.wisc.edu> X-Mailer: exmh version 2.0.2 2/24/98 To: asami@FreeBSD.ORG (Satoshi Asami) Cc: sprice@hiwaay.net, ports@FreeBSD.ORG, msmith@FreeBSD.ORG Subject: Re: auto ports build script In-reply-to: Your message of "Wed, 11 Nov 1998 14:38:51 PST." <199811112238.OAA16776@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 11 Nov 1998 18:15:58 -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > By the way, does anyone know where I can find most up-to-date sources > of pmake? Back when I was building the BSD KerberosIV for SWW, the best source for pmake was ICSI. ftp://ftp.icsi.berkeley.edu:/pub/ai/stolcke/software/pmake-2.1.33.tar.Z looks to be the most recent version of this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 18:36:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA09520 for freebsd-ports-outgoing; Wed, 11 Nov 1998 18:36:40 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from galois.boolean.net (galois.boolean.net [209.133.111.74]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA09513 for ; Wed, 11 Nov 1998 18:36:38 -0800 (PST) (envelope-from Kurt@OpenLDAP.Org) Received: from gypsy (galois.boolean.net [209.133.111.74]) by galois.boolean.net (8.8.8/8.8.8) with SMTP id CAA13093 for ; Thu, 12 Nov 1998 02:45:42 GMT (envelope-from Kurt@OpenLDAP.Org) Message-Id: <3.0.5.32.19981111184533.00926710@localhost> X-Sender: kurt@localhost (Unverified) X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Wed, 11 Nov 1998 18:45:33 -0800 To: freebsd-ports@FreeBSD.ORG From: "Kurt D. Zeilenga" Subject: compress manuals or not Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I am working an autoconf build environment for OpenLDAP 1.1. I am trying to sort out how to properly detect if the system supports compress man pages, if so, which compress mechanism should be used. I also would like to disable installation of compressed man based upon system defaults. My goal is that the OpenLDAP 1.1 distribution install properly on FreeBSD whether the installer used my distribution tarball or the ports/packages. That is, I'd like to eliminate the need for port/package maintainer to have to patch our distribution. Has FreeBSD always supported compressed man pages? If not, which was the first release with this support. Has FreeBSD always supported GNU zip'ed man pages? If not, which was the first release with this support. Has FreeBSD always supported the $(NOMANCOMPRESS) variable to disabling compressed manuals? If not, which was the first release with this support. I could, after determining the platform was FreeBSD, have configure create a makefile with all:; echo x$(NOMANCOMPRESS) to see if this variable is set. If not, set the compress program to gzip -c and the suffix to .gz. Is there a better way to determine which compress command/suffix to use under FreeBSD? Is there a better way to determine which compress command/suffix to use generally? If anyone knows of a port (or other application) that has multiple platform man compression detection in their build environment, I'd appreciate a pointer. Thanks, Kurt PS: please cc me on followup as I am not currently subscribed to this list. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 19:04:44 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA12555 for freebsd-ports-outgoing; Wed, 11 Nov 1998 19:04:44 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA12548; Wed, 11 Nov 1998 19:04:39 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id VAA22324; Wed, 11 Nov 1998 21:04:12 -0600 (CST) Date: Wed, 11 Nov 1998 21:04:11 -0600 (CST) From: Steve Price To: Satoshi Asami cc: ports@FreeBSD.ORG, msmith@FreeBSD.ORG Subject: Re: auto ports build script In-Reply-To: <199811120004.QAA17185@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 Alright I must admit after our little 'talk' session I'm feeling a little less confident in the little script I wrote. I did some further digging and you're right that it isn't enough to just have 746 DAGs that can be easily parallelized, especially when one of those DAGs represents over half of the total number of ports. Pruning out stuff like XFree86 didn't help much either. I was able to quickly get it to around 1100 DAGs, but one of them still contained over 500 ports. :( *off looking for inspiration* -steve To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 22:21:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA01885 for freebsd-ports-outgoing; Wed, 11 Nov 1998 22:21:10 -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 WAA01879 for ; Wed, 11 Nov 1998 22:21:09 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca9-181.ix.netcom.com [209.109.236.181]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id WAA27221; Wed, 11 Nov 1998 22:20:50 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id WAA17992; Wed, 11 Nov 1998 22:20:47 -0800 (PST) Date: Wed, 11 Nov 1998 22:20:47 -0800 (PST) Message-Id: <199811120620.WAA17992@silvia.hip.berkeley.edu> To: Kurt@OpenLDAP.Org CC: freebsd-ports@FreeBSD.ORG In-reply-to: <3.0.5.32.19981111184533.00926710@localhost> (Kurt@OpenLDAP.Org) Subject: Re: compress manuals or not From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * I am working an autoconf build environment for OpenLDAP 1.1. * I am trying to sort out how to properly detect if the * system supports compress man pages, if so, which * compress mechanism should be used. I also would like to * disable installation of compressed man based upon system * defaults. I'm not sure how far you want to go, but for a reasonably recent FreeBSD, you can just install the manpages uncompressed and list the names in MAN? variables in the port Makefile. See the handbook for details. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 22:37:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA03316 for freebsd-ports-outgoing; Wed, 11 Nov 1998 22:37:51 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.gtn.com (mail.gtn.com [194.77.0.15]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA03304; Wed, 11 Nov 1998 22:37:49 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by mail.gtn.com (8.8.6/8.8.6) with UUCP id HAA24751; Thu, 12 Nov 1998 07:30:19 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.9.1/8.9.1) id HAA29364; Thu, 12 Nov 1998 07:25:47 +0100 (CET) (envelope-from andreas) Message-ID: <19981112072547.A18915@klemm.gtn.com> Date: Thu, 12 Nov 1998 07:25:47 +0100 From: Andreas Klemm To: Satoshi Asami Cc: ports@FreeBSD.ORG Subject: Re: cvs commit: ports/x11-toolkits/qt Makefile ports/x11-toolkits/qt133 Makefile References: <19981111222924.A2671@klemm.gtn.com> <199811112344.PAA17083@silvia.hip.berkeley.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <199811112344.PAA17083@silvia.hip.berkeley.edu>; from Satoshi Asami on Wed, Nov 11, 1998 at 03:44:23PM -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 Wed, Nov 11, 1998 at 03:44:23PM -0800, Satoshi Asami wrote: > * Yes, and then a respository copy from qt140 to qt141 ;-) > > You want a *what*? ;) > > After the latest qt and gtk debacle, I'm very weary of allowing > another qt version in the tree. I have a few questions I need to ask > you first: >From the website: Version 1.41 adds several corrections, bug-fixes and minor extensions to Qt version 1.40. For details, please see the Qt Changes pages. http://www.troll.no/changes/ > (1) Is qt141 upwards compatible to qt140? In other words, can I > change the USE_QT define in bsd.port.mk, cvs remove qt140 (in > other words, this is a straght upgrade, with the repository copy > only necessary because of the name change) and will the entire > world be happy? > > (2) If not, how hard do you think is it to fix all the ports that > don't work with qt141? Can't say it ... only possibility to test it is to make the 1.41 port, and every maintainer locally changes USE_QT to the new version and lets see... -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example, in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 22:46:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA03936 for freebsd-ports-outgoing; Wed, 11 Nov 1998 22:46:00 -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 WAA03931 for ; Wed, 11 Nov 1998 22:45:59 -0800 (PST) (envelope-from asami@vader.cs.berkeley.edu) Received: from silvia.hip.berkeley.edu (sji-ca9-181.ix.netcom.com [209.109.236.181]) by vader.cs.berkeley.edu (8.8.7/8.7.3) with ESMTP id WAA27248; Wed, 11 Nov 1998 22:45:39 -0800 (PST) Received: (from asami@localhost) by silvia.hip.berkeley.edu (8.8.8/8.6.9) id WAA18062; Wed, 11 Nov 1998 22:45:36 -0800 (PST) Date: Wed, 11 Nov 1998 22:45:36 -0800 (PST) Message-Id: <199811120645.WAA18062@silvia.hip.berkeley.edu> To: andreas@klemm.gtn.com CC: ports@FreeBSD.ORG In-reply-to: <19981112072547.A18915@klemm.gtn.com> (message from Andreas Klemm on Thu, 12 Nov 1998 07:25:47 +0100) Subject: Re: cvs commit: ports/x11-toolkits/qt Makefile ports/x11-toolkits/qt133 Makefile From: asami@FreeBSD.ORG (Satoshi Asami) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org * Version 1.41 adds several corrections, bug-fixes and minor * extensions to Qt version 1.40. For details, please see the * Qt Changes pages. * * http://www.troll.no/changes/ They make it sound like just a bugfix release. * Can't say it ... only possibility to test it is to make the 1.41 port, * and every maintainer locally changes USE_QT to the new version and * lets see... Ok. I've done the copy, please update it but don't remove the "BROKEN=testing only" tag. I'll install it here and see if everything compiles. Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 23:28:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA07000 for freebsd-ports-outgoing; Wed, 11 Nov 1998 23:28:13 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from tibatong.ihf.rwth-aachen.de (tibatong.ihf.RWTH-Aachen.DE [134.130.90.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA06995 for ; Wed, 11 Nov 1998 23:28:10 -0800 (PST) (envelope-from tg@tibatong.ihf.rwth-aachen.de) Received: (from tg@localhost) by tibatong.ihf.rwth-aachen.de (8.8.8/8.8.8) id IAA00497; Thu, 12 Nov 1998 08:27:37 +0100 (CET) (envelope-from tg) To: Bill Fumerola Cc: Dom Mitchell , ports@FreeBSD.ORG Subject: Re: GNU getopt References: Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII From: Thomas Gellekum Date: 12 Nov 1998 08:27:37 +0100 In-Reply-To: Bill Fumerola's message of "Wed, 11 Nov 1998 14:00:47 -0500 (EST)" Message-ID: <87iugl74ly.fsf@tibatong.ihf.rwth-aachen.de> Lines: 10 X-Mailer: Gnus v5.6.34/XEmacs 20.4 - "Emerald" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Bill Fumerola writes: > Perhaps someone from -hackers or something could comment on how we could > have a getopt_long that could be implemented in these ports. Um, take the three (I think) files + COPYING, tar, feather and make a port of it? Something like libgnugetopt? There's no in the base system, so this shouldn't screw up anything. tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Wed Nov 11 23:49:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA08611 for freebsd-ports-outgoing; Wed, 11 Nov 1998 23:49:59 -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 XAA08604 for ; Wed, 11 Nov 1998 23:49:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id XAA18571; Wed, 11 Nov 1998 23:50:01 -0800 (PST) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA08337 for ; Wed, 11 Nov 1998 23:44:51 -0800 (PST) (envelope-from andy@icc.surw.chel.su) Received: (from andy@localhost) by icc.surw.chel.su (8.8.8/8.8.8) id KAA21296; Thu, 12 Nov 1998 10:41:51 +0300 (MSK) (envelope-from andy) Message-Id: <199811120741.KAA21296@icc.surw.chel.su> Date: Thu, 12 Nov 1998 10:41:51 +0300 (MSK) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8658: New port: gtkballs-1.02 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8658 >Category: ports >Synopsis: New port: gtkballs-1.02 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Nov 11 23:50:00 PST 1998 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: South Ural Railway ICC >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: >Description: This is a port of gtkballs-1.02, an old game of balls ;) where your goal is to remove as many balls from the game field as you can. Look at http://lucifer.dorms.spbu.ru/projects.html # 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: # # gtkballs-1.02 # gtkballs-1.02/Makefile # gtkballs-1.02/files # gtkballs-1.02/files/md5 # gtkballs-1.02/patches # gtkballs-1.02/patches/patch-ac # gtkballs-1.02/patches/patch-ab # gtkballs-1.02/patches/patch-aa # gtkballs-1.02/pkg # gtkballs-1.02/pkg/COMMENT # gtkballs-1.02/pkg/DESCR # gtkballs-1.02/pkg/PLIST # echo c - gtkballs-1.02 mkdir -p gtkballs-1.02 > /dev/null 2>&1 echo x - gtkballs-1.02/Makefile sed 's/^X//' >gtkballs-1.02/Makefile << 'END-of-gtkballs-1.02/Makefile' X# New ports collection makefile for: gtkballs X# Version required: 1.02 X# Date created: 11 November 1998 X# Whom: Andrey Zakhvatov X# X# $Id$ X# X XDISTNAME= gtkballs-1.02 XCATEGORIES= games XMASTER_SITES= ftp://lucifer.dorms.spbu.ru/pub/Linux/games/ \ X http://lucifer.dorms.spbu.ru/gtkballs/ \ X ${MASTER_SITE_SUNSITE} XMASTER_SITE_SUBDIR= games/strategy X XMAINTAINER= andy@icc.surw.chel.su X XLIB_DEPENDS= gtk.1.:${PORTSDIR}/x11-toolkits/gtk X XALL_TARGET= gtkballs XMAKEFILE= makefile XUSE_X_PREFIX= yes X XMAN6= gtkballs.6 X Xdo-install: X @ ${INSTALL_PROGRAM} ${WRKSRC}/gtkballs ${PREFIX}/bin X @ ${INSTALL_MAN} ${WRKSRC}/gtkballs.6 ${PREFIX}/man/man6 X @ ${MKDIR} ${PREFIX}/share/gtkballs X @ ${INSTALL_DATA} ${WRKSRC}/gtkballs-data/*.xpm ${PREFIX}/share/gtkballs X @ ${INSTALL_DATA} ${WRKSRC}/gtkballs-data/.gtkballs-score ${PREFIX}/share/gtkballs/score X @ chmod a+rw ${PREFIX}/share/gtkballs/score X.if !defined(NOPORTDOCS) X @ ${MKDIR} ${PREFIX}/share/doc/gtkballs X.for file in COPYING README README.russian TODO X @ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/gtkballs X.endfor X.endif X X.include END-of-gtkballs-1.02/Makefile echo c - gtkballs-1.02/files mkdir -p gtkballs-1.02/files > /dev/null 2>&1 echo x - gtkballs-1.02/files/md5 sed 's/^X//' >gtkballs-1.02/files/md5 << 'END-of-gtkballs-1.02/files/md5' XMD5 (gtkballs-1.02.tar.gz) = 2d4e12961a62797b05f230eef0b0aad8 END-of-gtkballs-1.02/files/md5 echo c - gtkballs-1.02/patches mkdir -p gtkballs-1.02/patches > /dev/null 2>&1 echo x - gtkballs-1.02/patches/patch-ac sed 's/^X//' >gtkballs-1.02/patches/patch-ac << 'END-of-gtkballs-1.02/patches/patch-ac' X--- scoreboard.c Wed Aug 26 14:23:38 1998 X+++ /home/andy/tmp/wrk/scoreboard.c Thu Nov 12 14:27:07 1998 X@@ -28,7 +28,7 @@ X FILE *score_file; X int i; X X- score_file = fopen ("gtkballs-data/.gtkballs-score", "w"); X+ score_file = fopen (PREFIX "/share/gtkballs/score", "w"); X if (!score_file) X /* unable to save score */ X return FALSE; X@@ -50,7 +50,7 @@ X FILE *score_file; X int i, j; X X- score_file = fopen ("gtkballs-data/.gtkballs-score", "r"); X+ score_file = fopen (PREFIX "/share/gtkballs/score", "r"); X if (!score_file) X /* unable to load score */ X return FALSE; END-of-gtkballs-1.02/patches/patch-ac echo x - gtkballs-1.02/patches/patch-ab sed 's/^X//' >gtkballs-1.02/patches/patch-ab << 'END-of-gtkballs-1.02/patches/patch-ab' X--- makefile Sun Oct 4 19:53:44 1998 X+++ /home/andy/tmp/wrk/makefile Thu Nov 12 14:27:48 1998 X@@ -1,36 +1,50 @@ X-CFLAGS= -I/usr/local/lib/glib/include -Wall -ansi -pedantic -g X-CLIBS=-L/usr/X11R6/lib -L/usr/local/lib -lgtk -lgdk -lglib -lX11 -lXext -lm X+# X+# C compiler X+# X+CC?=cc X+ X+# X+# Installation prefix X+# X+PREFIX?=/usr/local X+ X+# X+# C options X+# X+CFLAGS?= -Wall -ansi -pedantic -g X+CFLAGS+= -DPREFIX=\"$(PREFIX)\" X+CFLAGS+= `gtk-config --cflags` X+CLIBS= `gtk-config --libs` X X all: gtkballs TAGS X X # This is a very bad script. But I am a bad shell programmer X install: X- cp -f gtkballs /usr/local/games X- if [ -d /usr/local/games/gtkballs-data ]; then rm -rf /usr/local/games/gtkballs-data ; fi X- mkdir /usr/local/games/gtkballs-data X- cp gtkballs-data/*.xpm /usr/local/games/gtkballs-data X- touch /usr/local/games/gtkballs-data/.gtkballs-score X- chmod go+rw /usr/local/games/gtkballs-data X- chmod go+rw /usr/local/games/gtkballs-data/.gtkballs-score X- cp -f gtkballs.6 /usr/local/man/man6 X+ cp -f gtkballs $(PREFIX)/bin X+ if [ -d $(PREFIX)/share/gtkballs/ ]; then rm -rf $(PREFIX)/share/gtkballs ; fi X+ mkdir -p $(PREFIX)/share/gtkballs X+ cp gtkballs-data/*.xpm $(PREFIX)/share/gtkballs X+ touch $(PREFIX)/share/gtkballs/score X+ chmod go+rw $(PREFIX)/share/gtkballs $(PREFIX)/share/gtkballs/score X+ cp -f gtkballs.6 $(PREFIX)/man/man6 X X gtkballs: gtkballs.o path.o interface.o scoreboard.o license.o X- cc -o gtkballs $(CFLAGS) $(CLIBS) gtkballs.o path.o interface.o scoreboard.o license.o X+ $(CC) -o gtkballs $(CFLAGS) $(CLIBS) gtkballs.o path.o interface.o scoreboard.o license.o X X TAGS: path.c path.h interface.c interface.h gtkballs.c scoreboard.c scoreboard.h X etags path.c path.h interface.c interface.h gtkballs.c scoreboard.c scoreboard.h X X gtkballs.o: gtkballs.c path.h interface.h scoreboard.h license.h X- cc -c $(CFLAGS) gtkballs.c X+ $(CC) -c $(CFLAGS) gtkballs.c X X path.o: path.c path.h X- cc -c $(CFLAGS) path.c X+ $(CC) -c $(CFLAGS) path.c X X interface.o: interface.c interface.h X- cc -c $(CFLAGS) interface.c X+ $(CC) -c $(CFLAGS) interface.c X X scoreboard.o: scoreboard.c scoreboard.h X- cc -c $(CFLAGS) scoreboard.c X+ $(CC) -c $(CFLAGS) scoreboard.c X X license.o: license.h license.c X- cc -c $(CFLAGS) license.c X+ $(CC) -c $(CFLAGS) license.c END-of-gtkballs-1.02/patches/patch-ab echo x - gtkballs-1.02/patches/patch-aa sed 's/^X//' >gtkballs-1.02/patches/patch-aa << 'END-of-gtkballs-1.02/patches/patch-aa' X--- gtkballs.c Wed Aug 26 14:23:37 1998 X+++ /home/andy/tmp/wrk/gtkballs.c Thu Nov 12 14:25:16 1998 X@@ -498,25 +498,25 @@ X style = gtk_widget_get_style (main_window); X small_balls[BLUE_BALL] = gdk_pixmap_create_from_xpm (main_window->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/small_blue_ball.xpm"); X+ PREFIX "/share/gtkballs/small_blue_ball.xpm"); X small_balls[BROWN_BALL] = gdk_pixmap_create_from_xpm (main_window->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/small_brown_ball.xpm"); X+ PREFIX "/share/gtkballs/small_brown_ball.xpm"); X small_balls[GREEN_BALL] = gdk_pixmap_create_from_xpm (main_window->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/small_green_ball.xpm"); X+ PREFIX "/share/gtkballs/small_green_ball.xpm"); X small_balls[RED_BALL] = gdk_pixmap_create_from_xpm (main_window->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/small_red_ball.xpm"); X+ PREFIX "/share/gtkballs/small_red_ball.xpm"); X small_balls[YELLOW_BALL] = gdk_pixmap_create_from_xpm (main_window->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/small_yellow_ball.xpm"); X+ PREFIX "/share/gtkballs/small_yellow_ball.xpm"); X small_balls[PINK_BALL] = gdk_pixmap_create_from_xpm (main_window->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/small_pink_ball.xpm"); X+ PREFIX "/share/gtkballs/small_pink_ball.xpm"); X small_balls[CYAN_BALL] = gdk_pixmap_create_from_xpm (main_window->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/small_cyan_ball.xpm"); X+ PREFIX "/share/gtkballs/small_cyan_ball.xpm"); X X ball1 = gtk_pixmap_new (small_balls[next_colors[0]], mask); X gtk_box_pack_start (GTK_BOX (small_balls_box), ball1, FALSE, FALSE, 0); X@@ -603,144 +603,144 @@ X /* load balls */ X balls[0] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/empty_cell.xpm"); X+ PREFIX "/share/gtkballs/empty_cell.xpm"); X balls[BLUE_BALL] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/blue_ball.xpm"); X+ PREFIX "/share/gtkballs/blue_ball.xpm"); X balls[BROWN_BALL] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/brown_ball.xpm"); X+ PREFIX "/share/gtkballs/brown_ball.xpm"); X balls[GREEN_BALL] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/green_ball.xpm"); X+ PREFIX "/share/gtkballs/green_ball.xpm"); X balls[RED_BALL] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/red_ball.xpm"); X+ PREFIX "/share/gtkballs/red_ball.xpm"); X balls[YELLOW_BALL] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/yellow_ball.xpm"); X+ PREFIX "/share/gtkballs/yellow_ball.xpm"); X balls[PINK_BALL] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/pink_ball.xpm"); X+ PREFIX "/share/gtkballs/pink_ball.xpm"); X balls[CYAN_BALL] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/cyan_ball.xpm"); X+ PREFIX "/share/gtkballs/cyan_ball.xpm"); X X phases[0][0] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/blue_ball_1.xpm"); X+ PREFIX "/share/gtkballs/blue_ball_1.xpm"); X phases[0][1] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/blue_ball_2.xpm"); X+ PREFIX "/share/gtkballs/blue_ball_2.xpm"); X phases[0][2] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/blue_ball_3.xpm"); X+ PREFIX "/share/gtkballs/blue_ball_3.xpm"); X phases[0][3] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/blue_ball_4.xpm"); X+ PREFIX "/share/gtkballs/blue_ball_4.xpm"); X phases[0][4] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/blue_ball_5.xpm"); X+ PREFIX "/share/gtkballs/blue_ball_5.xpm"); X X phases[1][0] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/brown_ball_1.xpm"); X+ PREFIX "/share/gtkballs/brown_ball_1.xpm"); X phases[1][1] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/brown_ball_2.xpm"); X+ PREFIX "/share/gtkballs/brown_ball_2.xpm"); X phases[1][2] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/brown_ball_3.xpm"); X+ PREFIX "/share/gtkballs/brown_ball_3.xpm"); X phases[1][3] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/brown_ball_4.xpm"); X+ PREFIX "/share/gtkballs/brown_ball_4.xpm"); X phases[1][4] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/brown_ball_5.xpm"); X+ PREFIX "/share/gtkballs/brown_ball_5.xpm"); X X phases[2][0] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/green_ball_1.xpm"); X+ PREFIX "/share/gtkballs/green_ball_1.xpm"); X phases[2][1] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/green_ball_2.xpm"); X+ PREFIX "/share/gtkballs/green_ball_2.xpm"); X phases[2][2] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/green_ball_3.xpm"); X+ PREFIX "/share/gtkballs/green_ball_3.xpm"); X phases[2][3] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/green_ball_4.xpm"); X+ PREFIX "/share/gtkballs/green_ball_4.xpm"); X phases[2][4] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/green_ball_5.xpm"); X+ PREFIX "/share/gtkballs/green_ball_5.xpm"); X X phases[3][0] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/red_ball_1.xpm"); X+ PREFIX "/share/gtkballs/red_ball_1.xpm"); X phases[3][1] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/red_ball_2.xpm"); X+ PREFIX "/share/gtkballs/red_ball_2.xpm"); X phases[3][2] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/red_ball_3.xpm"); X+ PREFIX "/share/gtkballs/red_ball_3.xpm"); X phases[3][3] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/red_ball_4.xpm"); X+ PREFIX "/share/gtkballs/red_ball_4.xpm"); X phases[3][4] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/red_ball_5.xpm"); X+ PREFIX "/share/gtkballs/red_ball_5.xpm"); X X phases[4][0] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/yellow_ball_1.xpm"); X+ PREFIX "/share/gtkballs/yellow_ball_1.xpm"); X phases[4][1] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/yellow_ball_2.xpm"); X+ PREFIX "/share/gtkballs/yellow_ball_2.xpm"); X phases[4][2] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/yellow_ball_3.xpm"); X+ PREFIX "/share/gtkballs/yellow_ball_3.xpm"); X phases[4][3] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/yellow_ball_4.xpm"); X+ PREFIX "/share/gtkballs/yellow_ball_4.xpm"); X phases[4][4] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/yellow_ball_5.xpm"); X+ PREFIX "/share/gtkballs/yellow_ball_5.xpm"); X X phases[5][0] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/pink_ball_1.xpm"); X+ PREFIX "/share/gtkballs/pink_ball_1.xpm"); X phases[5][1] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/pink_ball_2.xpm"); X+ PREFIX "/share/gtkballs/pink_ball_2.xpm"); X phases[5][2] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/pink_ball_3.xpm"); X+ PREFIX "/share/gtkballs/pink_ball_3.xpm"); X phases[5][3] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/pink_ball_4.xpm"); X+ PREFIX "/share/gtkballs/pink_ball_4.xpm"); X phases[5][4] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/pink_ball_5.xpm"); X+ PREFIX "/share/gtkballs/pink_ball_5.xpm"); X X phases[6][0] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/cyan_ball_1.xpm"); X+ PREFIX "/share/gtkballs/cyan_ball_1.xpm"); X phases[6][1] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/cyan_ball_2.xpm"); X+ PREFIX "/share/gtkballs/cyan_ball_2.xpm"); X phases[6][2] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/cyan_ball_3.xpm"); X+ PREFIX "/share/gtkballs/cyan_ball_3.xpm"); X phases[6][3] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/cyan_ball_4.xpm"); X+ PREFIX "/share/gtkballs/cyan_ball_4.xpm"); X phases[6][4] = gdk_pixmap_create_from_xpm (drawing_area->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/cyan_ball_5.xpm"); X+ PREFIX "/share/gtkballs/cyan_ball_5.xpm"); X X icon = gdk_pixmap_create_from_xpm (main_window->window, &mask, X &style->bg[GTK_STATE_NORMAL], X- "gtkballs-data/gtkballs.xpm"); X+ PREFIX "/share/gtkballs/gtkballs.xpm"); X gdk_window_set_icon (main_window->window, X NULL, X icon, END-of-gtkballs-1.02/patches/patch-aa echo c - gtkballs-1.02/pkg mkdir -p gtkballs-1.02/pkg > /dev/null 2>&1 echo x - gtkballs-1.02/pkg/COMMENT sed 's/^X//' >gtkballs-1.02/pkg/COMMENT << 'END-of-gtkballs-1.02/pkg/COMMENT' XLines-like simple logic game for X Window System. END-of-gtkballs-1.02/pkg/COMMENT echo x - gtkballs-1.02/pkg/DESCR sed 's/^X//' >gtkballs-1.02/pkg/DESCR << 'END-of-gtkballs-1.02/pkg/DESCR' XIt's an old game of balls where your goal is to remove as many Xballs from the game field as you can. X Xhttp://lucifer.dorms.spbu.ru/projects.html END-of-gtkballs-1.02/pkg/DESCR echo x - gtkballs-1.02/pkg/PLIST sed 's/^X//' >gtkballs-1.02/pkg/PLIST << 'END-of-gtkballs-1.02/pkg/PLIST' Xbin/gtkballs Xshare/doc/gtkballs/COPYING Xshare/doc/gtkballs/README Xshare/doc/gtkballs/README.russian Xshare/doc/gtkballs/TODO Xshare/gtkballs/blue_ball.xpm Xshare/gtkballs/blue_ball_1.xpm Xshare/gtkballs/blue_ball_2.xpm Xshare/gtkballs/blue_ball_3.xpm Xshare/gtkballs/blue_ball_4.xpm Xshare/gtkballs/blue_ball_5.xpm Xshare/gtkballs/brown_ball.xpm Xshare/gtkballs/brown_ball_1.xpm Xshare/gtkballs/brown_ball_2.xpm Xshare/gtkballs/brown_ball_3.xpm Xshare/gtkballs/brown_ball_4.xpm Xshare/gtkballs/brown_ball_5.xpm Xshare/gtkballs/cyan_ball.xpm Xshare/gtkballs/cyan_ball_1.xpm Xshare/gtkballs/cyan_ball_2.xpm Xshare/gtkballs/cyan_ball_3.xpm Xshare/gtkballs/cyan_ball_4.xpm Xshare/gtkballs/cyan_ball_5.xpm Xshare/gtkballs/empty_cell.xpm Xshare/gtkballs/green_ball.xpm Xshare/gtkballs/green_ball_1.xpm Xshare/gtkballs/green_ball_2.xpm Xshare/gtkballs/green_ball_3.xpm Xshare/gtkballs/green_ball_4.xpm Xshare/gtkballs/green_ball_5.xpm Xshare/gtkballs/gtkballs.xpm Xshare/gtkballs/pink_ball.xpm Xshare/gtkballs/pink_ball_1.xpm Xshare/gtkballs/pink_ball_2.xpm Xshare/gtkballs/pink_ball_3.xpm Xshare/gtkballs/pink_ball_4.xpm Xshare/gtkballs/pink_ball_5.xpm Xshare/gtkballs/red_ball.xpm Xshare/gtkballs/red_ball_1.xpm Xshare/gtkballs/red_ball_2.xpm Xshare/gtkballs/red_ball_3.xpm Xshare/gtkballs/red_ball_4.xpm Xshare/gtkballs/red_ball_5.xpm X@mode 666 Xshare/gtkballs/score X@mode Xshare/gtkballs/small_blue_ball.xpm Xshare/gtkballs/small_brown_ball.xpm Xshare/gtkballs/small_cyan_ball.xpm Xshare/gtkballs/small_green_ball.xpm Xshare/gtkballs/small_pink_ball.xpm Xshare/gtkballs/small_red_ball.xpm Xshare/gtkballs/small_yellow_ball.xpm Xshare/gtkballs/yellow_ball.xpm Xshare/gtkballs/yellow_ball_1.xpm Xshare/gtkballs/yellow_ball_2.xpm Xshare/gtkballs/yellow_ball_3.xpm Xshare/gtkballs/yellow_ball_4.xpm Xshare/gtkballs/yellow_ball_5.xpm X@dirrm share/doc/gtkballs X@dirrm share/gtkballs END-of-gtkballs-1.02/pkg/PLIST exit >How-To-Repeat: >Fix: Please, check and commit this port. >Audit-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 Nov 11 23:51:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA08869 for freebsd-ports-outgoing; Wed, 11 Nov 1998 23:51:48 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from btp1da.phy.uni-bayreuth.de (btp1da.phy.uni-bayreuth.de [132.180.20.32]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA08862; Wed, 11 Nov 1998 23:51:42 -0800 (PST) (envelope-from werner@btp1da.phy.uni-bayreuth.de) Received: (from werner@localhost) by btp1da.phy.uni-bayreuth.de (8.8.8/8.7.3) id IAA17384; Thu, 12 Nov 1998 08:51:16 +0100 (MET) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <19981111222142.C2553@klemm.gtn.com> Date: Thu, 12 Nov 1998 08:51:16 +0100 (MET) Organization: University of bayreuth From: Werner Griessl To: Andreas Klemm Subject: Re: lyx & current Cc: ports@FreeBSD.ORG, andreas@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 11-Nov-98 Andreas Klemm wrote: > On Wed, Nov 11, 1998 at 12:34:02PM +0100, Werner Griessl wrote: >> >> ---------------------------------- >> >> Hi Andreas, >> >> The new LyX (lyx-1.0.0pre2) compiles and installs without problems >> on my current ELF system. >> But if I try to run it fails with: >> >> /usr/libexec/ld-elf.so.1: Shared object "libforms.so.0.88" not found >> >> I installed xforms (elf) before. > > create a symlink, so that this file will be found ;-) > > The people who build this binary release didn't do it right. > > > -- > Andreas Klemm http://www.FreeBSD.ORG/~andreas > What gives you 90% more speed, for example, in kernel compilation ? > http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html > "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' ---------------------------------- Thanks, it's working now ! Werner To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 00:19:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA10851 for freebsd-ports-outgoing; Thu, 12 Nov 1998 00:19:59 -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 AAA10843 for ; Thu, 12 Nov 1998 00:19:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA20437; Thu, 12 Nov 1998 00:20:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA10698; Thu, 12 Nov 1998 00:17:20 -0800 (PST) (envelope-from nobody) Message-Id: <199811120817.AAA10698@hub.freebsd.org> Date: Thu, 12 Nov 1998 00:17:20 -0800 (PST) From: flathill@flathill.gr.jp To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/8659: Update port: japanese/gtk(ports/8359) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8659 >Category: ports >Synopsis: Update port: japanese/gtk(ports/8359) >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Nov 12 00:20:01 PST 1998 >Last-Modified: >Originator: Seiichirou Hiraoka >Organization: Flathill Network Systems >Release: 3.0-19981103-SNAP >Environment: FreeBSD azuki.flathill.gr.jp 3.0-19981103-SNAP FreeBSD 3.0-19981103-SNAP #4: Tue Nov 10 12:42:44 JST 1998 root@azuki.flathill.gr.jp:/usr/src/sys/compile/SMP-AZUKI i386 >Description: GTK is a library for creating graphical user interfaces similar to the Motif "look and feel". It is designed to be small and efficient, but still flexible enough to allow the programmer freedom in the interfaces created. GTK allows the programmer to use a variety of standard user interface widgets (*note Widgets::.) such as push, radio and check buttons, menus, lists and frames. It also provides several "container" widgets which can be used to control the layout of the user interface elements. GTK provides some unique features. (At least, I know of no other widget library which provides them). For example, a button does not contain a label, it contains a child widget, which in most instances will be a label. However, the child widget can also be a pixmap, image or any combination possible the programmer desires. This flexibility is adhered to throughout the library. - Seiichirou Hiraoka flathill@flathill.gr.jp FreeBSD Porting Specification is notified at . This is written in Japanese. - SADA Kenji sada@e-mail.ne.jp >How-To-Repeat: >Fix: begin 644 gtk.tar.gz M'XL("%^82C8``V=T:RYT87(`[3Q=;^-(C6:]?B#%"E1DJT9#ZRQ M98]F_!5)LSN;G3TM1;:D'E.DEA^R?;.^_W+(&`@2(`4MN@P3(UC6C"6RJ[JZNZJZNJK95-<[R;YSRT!4 MN50HD'<(@GSE.[PAQ6(N5U#RI5P1[DNE0ND=4KCMCB'XKJ[BQ+GD!"Y6J5%?UC8Y6 MS&EZ*=_6VGJQ4,BM:[I.Z;H6L'BMBDY5BWT@;,?W7>_"\6 M5)S_2D'-Y_)\_N>4DIS,_[N`>\3USDU*'EE:GSXF'VV&5Q\+]\@;^"/DD3WP MF&T]AIL+X1Y\GC*C2SWR*/ANN=1[/&+"OUJQ3@_E]T1$MV^EKIBBNB.LR?(S_ MI86+,4.#=C3?]"8LH0=?E*NB3K%=$_O,U<4..Z/&=7)%%96\?*434Y)(K]1Q M="MI,CW8*T1C]+CKMZ'_R?SW7>J((!5_<--MP/R?&_\I:BF8_\5"KE0L0$$^ MI^23^7\7<._=;)M96;M024OT3@SD1 MC)#2!V3KN%[=K;W<@NJ:0[/!0AXL)%'2#OMNK:E_3!")_ZGE2Z&ON=DV%L7_ M!358_XO%0BF?Y_-?+2;S_TX@!6N4;AO,ZI8)]77QM3;0+`*%0JK)^E0$Z?0' M9?((@^FL7,K*12*7RCFUG-\@FNL[VE:/B3U;LJCT>@#K][9FZ=1,_?P_?OGW MPK9INS3UFU^__=NWGPMZ]*9ZQKS4+_[BMS\3=L'V4I>_O_S1Y=O+SX6GU!RD M+O_U\O/+?Q$.[=1;A#\7CIZG?ONSO_Y?X6A`K=3?_.7;'PM_XH_J?TC=U-M_ M?OM6V':HYE&RPYS4Y3]<_MGE?UW^^/(?+__PT__^U5\).]2D@)MJZZ?_\XO_ M$^H4PXYIQ#_]\C>_^\E/!&!$=<]V !(('^ M=Y?_>?GO/_KYY=_]ZM]^_8=OM?/#^3\XZ=[J'N`7W/]12JJE;[;@2N!$8S?^=:F.[?DMM+)C_.07W?'C\5Y2+)8S_ M%#573.;_70#(?Z_YG#"7:,1D;4=SSKD/T#&<@F"&=!UMT&,ZN`C<("#,@DBG MH^G4)2[K,Q-DY]D"Y(CDP/8@A4R;MGU"-,L@'9!76B(U#YD;U&5=BQI`3-J4 MN'W--#D5[728SJCEK9&V[PFNQP#1,>D9:YN44,OVNSVL!/3V*>:B9.#8T*=^ M'SK3<2@U[#YTBF,F?1-X]ZDA\<'QNN[5RL`41@3#'FH0Y'GGQ.X0L`7+T!R# MCU48\PMWLESR8,6R(9#\(+@MEZ5EXOIZ#R)A,O#=WAIQ-(/9?&!ZC^HG`HS) MLRUWC6!V!5\F#=M,8$B(*A&YXK"4*H]DFC-H3!OL4^ M]2DH3O-\!_OVH.(1DVHN**=&3BQ0`#"V;&(#1##!@H0I1".$8U/:U-SC<`2%):A1>H]9AJA]-?"%H"Z;[M@ M519J"Y5]BC;3IB,F$GEJGZ(0U[@0HCRXZ+BX.?F`G?6U`33:U[I4@)YJUCDT MWV\S2\,]3S*P79<;XA7;07/F$FKVP+@#=!9I+-C+,_M#5 M#"T[`%9NEB=\U*6X4R/UO+[Y6!+XJ.#_J<,\CUHH\FKS5N)_I?N/Z7"J7\*/\KEDHR7_]+R?[/G0!N M_N+35W"Z'=:%)4\W?8-BD2)GN\8)_DF]V>6Z[[BVX\:A\2%L'.Z$GKOG_=BJ M`X<-8?V.0WOG`QI;]^PZ`OSNS,)@T-=1P29V7#D^O#9AB?;`F<:1&*_!KG"Q MC:4P(1Z:2^`X]FDLT@7W[_$0(HZDW;9G2"+$L1F*"5%S:O&U.P[+XYTO0(*! M$/-H/Y8(0Z18I&V"P<$2'XOOM^UX9!A/Q1+XSC!6GH;F:;$XVO9CS+5.!)J,$^#("06#^'?>3S2GS7-0N00ZL[1^#@2C,/C5FB\-O@3 MTECD/./M0I@5*X^N'H?I06!MTCD#ZLV;%;UY.(Q^8L?2XT]P8[$N9$^Q0P4L M!.]F6YM3GPZTN>Z&QZ^Q2&O@>_.-<-Y\#$+J..28PA9(SU%/Q9U!S< M'&DA&K(=D%;LG%CD@GBNUJ-F[+#Q^7\<#A/$-N3`<7B[_1I<=RR6G[68-_RY MAA@D-+%8APX9C5U48A?=$1K2'^JZ.:Y??=L>YX*$(WMQ.(A0YZ'FV=P&%"V?0;\ MK7C^0.-[S(PE&,Y;7(;S<#`I,1F/Q<^=\\.Y9C^<:_?#A88_7&BRPF-.W;GV])VD2,5Q"8;QVM2=.7T;J1W<3E7WHBU[4RU[4RU[ MXY:W?(N>49UD?=?AYV2H-21'3Y[M'M4/*LW-^_>/C^K-\?W]^R3K(I5I!)D% M$>O"UM=CT"?WGV#'D,OH@,WDI)80'+PQ[#$.TS+;&F:WCXX_K!WNS2'HH9/= MM[OQ)+NU_6IC`1IW?&(IZM7*SD%U$7["(GJ`:+H(5XRI$RK"EL$LUX#-SNSKHT9YWL@T3G3^*@KS$ M81"*0//M<_*AC=OPI/8#O\_(H^M'FB1>OX'/1\`Q^/P!"@$W00:FI@,+&!!W M[B\5I5[,7O_]X)W".'])3P645T3'%X_D+ZH4G@L^`RZ`A7MWOD?>JXB'7HISYSJ%%. MI?A[/X#:P<-WP1D\+$[E\N1(]P@>&P3L!SV[CZ6I&4^]\)6"3,W(P(6P4VLT M#RL'U(*!Y5& MLUIO-6I-I.EPOP*?4I?U!^!3NMF!W^9AZA`X9LDK(14ATEW)[UL2-?R`#.I< MH8UX*CS_U^,L.=UUOHN\&OJDX!3N5?*(*\K^D'LGSII+B@=@FZG,FY'8+C)O MJB^;]G(,S MA1M-YS7ZFN="L';>&CBVX>N>&_28-QAV>?XK7Z2[^$VNL/\X\E:C6:\=;Q)Q MH`B@]-IA$_ZJ=5!YW//4%XUJZV4K.+R^F3JGKK!W^**U?72X6]M[4:\&1>/; M5O7P__!.$4Q#/D@ M_MO,O`E:O,A.QX$'E4-E,X46'SZ%D6`<`2FH\0DJN%'=@<8H2;L/1V?N'X[9 M/>RF!8EUR+L0&C-(%!\\J[3V:@?'K8/JX0LNQ+.Q4=RLO]IN\O(6( MG5I]DV3>?%!_#E<7V2EK`9L$=6JM9\>2_YI-'P\7)&JZ]*OP&[2P*S,Y6@;K M",+`H2+7<5E(;67>P"R_B.48W@4V@:9)/@-:;A@7HXN(A5SP=QN05Z.^?1&P M/[Z8E(P?:R%//:Y<8A;TTG:]4%F^0X.N3C2&/+G<>9\GV1IY'!E*)(F[7CNN MY1&'Z\BP3_Q0A&D&/6I4FV"Z%Y%\$]J)YIO8U/Y.8+07F&M.3!12'N"A1P2& M48U+WGL/2@XJSZL7X7>+-Q&V*_8U2^%M'_!11AA>3]20+)Q)K9U*LX+4LTSJ MRW.9"+\;O(LRN_[LCEY)]J+\&]M@1B`U](*S-!G+Y:JV8Z0S(S.5\#`6PY`V MS.C).'$G?)ADE(:3()LFDZ1ZEFAFSZ0,"\>TN#\P3Z%+T3YZOZ7CZ>`"-ZP*& M-]7MYE5V8>F$G1UA9U]A9X_8V0(11`R@R&AXP'2_"3%^O8*YYC+<'M>/]NJ5 M`W[]%!;;:AUBZ]4%E<:$1"`2)&>PRE8;Y>@U7!(8EV3:!/HCN0)7#3Z36*P; MN1#1S94J\Y534M?6R2I\%KEJZI5#Z#:(2T12(+S7N*53O(8*$HS/OZU.JI#IHJGN[:_L[M?V<-& MQ&&P#P+1=L>&4>_!T%H'E6=']58HH>7RJ+2V73^:E,HH.5#K(HV6RH7B1*/Q MRBSDRW)^HLQU&2<:_T1AG7%CQS2\ZZ+ZHO>H0P)A/68<$+WAL'"@!.(\OMDC M3LHS#R)TR[@+Z@JK<6ADVV96&"ISMI/3A23T!W+@#T;]'"4/>,2J/'4G.A0/ M&;(AG2[6^F`*6YD'AYC&[+?"(!<;'V=`XPK766!@#BRNL5S]XG6Q^3*.U;?& ME<:7D6J3,JCS3?OZ63!C_6_?=!L+UO^BDI.OK?]R\OSG3F"\R)@>/Y#E]@*' MM.LP\#OGH`LBJV6U4,X5KRPQXPJIID^Y3\KET"?)A2F?M%$LP=JRBE]*L,:, M`+VHW^FPL\UT!N:+@X=A,WA$"7UK>D+W\"%,M-7@&M_X@:1R>70?<`'ZUE!S M7&`4O25][35DS^-VTI-:'#-I-X+A/X.1F=HF`2=&S<[XMS"FFKXR@/1#6$SX MYM@\JL@PD;[#X`-&N3H:\\KR9/09JO=LDL[T;8._K(Y^!E_%L<8OWH1#)GA` MA;SZ9"P"O%]*$^7Q>[D)NX#;+G@\DXPVL(+'3S MW.'S=\+ZMH..L(._=,/#II!YQ(;"M7.\IG&S`!,JEA4PH=PU$PKHYUL0/@WB M40"_`&Z!$768Q=Q>BPXUS'*Z^6 M7TTX9NZ_4NXC";##<))DG#[)NN,8\H.&J++@FC.26&LRFW`H,.K_-@ M>ZOC.!3?'*,7>)0F,YX#O*=( M`<5+$2WJ?O[?ONO]?U(J*9/G/[@7H.3E0I+_WPGPW.W* M*8-@;<95]]`>$I(G\A(_%K`V=T+S@Z0_9VGN,QH/=;3U[LMAJU/ZV2!XJ<4Y>_)ZQ> M(QD=54#W1]*S?PH33RA`A'J371T)KPFK%`CP*TD/&7W3AI=``@DDD$`""220 <0`()))!``@DDD$`""220P*W"_P.OT36@`'@``$D/ ` 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 Nov 12 00:24:43 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA11159 for freebsd-ports-outgoing; Thu, 12 Nov 1998 00:24:43 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from ns.flathill.gr.jp (ns.flathill.gr.jp [210.157.239.82]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id AAA11150 for ; Thu, 12 Nov 1998 00:24:39 -0800 (PST) (envelope-from flathill@flathill.gr.jp) Received: (qmail 7031 invoked from network); 12 Nov 1998 08:22:23 -0000 Received: from azuki.flathill.gr.jp (HELO localhost) (210.157.239.83) by ns.flathill.gr.jp with SMTP; 12 Nov 1998 08:22:23 -0000 To: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8539: New port: japanese/gtk In-Reply-To: Your message of "Mon, 2 Nov 1998 00:00:00 -0800 (PST)" <199811020800.AAA01368@freefall.freebsd.org> References: <199811020800.AAA01368@freefall.freebsd.org> X-Mailer: Mew version 1.93 on XEmacs 20.4 (Emerald) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <19981112172226Z.flathill@flathill.gr.jp> Date: Thu, 12 Nov 1998 17:22:26 +0900 From: Seiichirou Hiraoka X-Dispatcher: imput version 980905(IM100) Lines: 13 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi. FreeBSD-gnats-submit> >Category: ports FreeBSD-gnats-submit> >Responsible: freebsd-ports FreeBSD-gnats-submit> >Synopsis: New port: japanese/gtk FreeBSD-gnats-submit> >Arrival-Date: Mon Nov 2 00:00:00 PST 1998 Please remove this PR. I sent update of this port. New PR number is ports/8659. - Seiichirou Hiraoka flathill@flathill.gr.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 00:29:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA11668 for freebsd-ports-outgoing; Thu, 12 Nov 1998 00:29:59 -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 AAA11656 for ; Thu, 12 Nov 1998 00:29:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA20997; Thu, 12 Nov 1998 00:30:00 -0800 (PST) Received: from icc.surw.chel.su (surw.chel.su [195.54.2.162]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA11075 for ; Thu, 12 Nov 1998 00:22:29 -0800 (PST) (envelope-from andy@icc.surw.chel.su) Received: (from andy@localhost) by icc.surw.chel.su (8.8.8/8.8.8) id LAA21803; Thu, 12 Nov 1998 11:19:35 +0300 (MSK) (envelope-from andy) Message-Id: <199811120819.LAA21803@icc.surw.chel.su> Date: Thu, 12 Nov 1998 11:19:35 +0300 (MSK) From: Andrey Zakhvatov Reply-To: andy@icc.surw.chel.su To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8660: Remove port: graphics/qgl Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8660 >Category: ports >Synopsis: Remove port: graphics/qgl >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 Nov 12 00:30:00 PST 1998 >Last-Modified: >Originator: Andrey Zakhvatov >Organization: South Ural Railway ICC >Release: FreeBSD 2.2.7-RELEASE i386 >Environment: >Description: Please, remove graphics/qgl port. Seems it now incorporated in main Qt distribution as extensions/opengl. But, I think, we must check Qt package for inclusion this extension. >How-To-Repeat: >Fix: Just remove graphics/qgl and check devel/qt. >Audit-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 Nov 12 00:29:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA11672 for freebsd-ports-outgoing; Thu, 12 Nov 1998 00:29:59 -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 AAA11662 for ; Thu, 12 Nov 1998 00:29:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA21002; Thu, 12 Nov 1998 00:30:01 -0800 (PST) Date: Thu, 12 Nov 1998 00:30:01 -0800 (PST) Message-Id: <199811120830.AAA21002@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Seiichirou Hiraoka Subject: Re: ports/8539: New port: japanese/gtk Reply-To: Seiichirou Hiraoka Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/8539; it has been noted by GNATS. From: Seiichirou Hiraoka To: FreeBSD-gnats-submit@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Cc: Subject: Re: ports/8539: New port: japanese/gtk Date: Thu, 12 Nov 1998 17:22:26 +0900 Hi. FreeBSD-gnats-submit> >Category: ports FreeBSD-gnats-submit> >Responsible: freebsd-ports FreeBSD-gnats-submit> >Synopsis: New port: japanese/gtk FreeBSD-gnats-submit> >Arrival-Date: Mon Nov 2 00:00:00 PST 1998 Please remove this PR. I sent update of this port. New PR number is ports/8659. - Seiichirou Hiraoka flathill@flathill.gr.jp To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 00:49:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA13866 for freebsd-ports-outgoing; Thu, 12 Nov 1998 00:49:21 -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 AAA13860; Thu, 12 Nov 1998 00:49:18 -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 AAA21887; Thu, 12 Nov 1998 00:49:21 -0800 (PST) Date: Thu, 12 Nov 1998 00:49:21 -0800 (PST) Message-Id: <199811120849.AAA21887@freefall.freebsd.org> To: flathill@flathill.gr.jp, asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8539 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: japanese/gtk State-Changed-From-To: open-closed State-Changed-By: asami State-Changed-When: Thu Nov 12 00:49:07 PST 1998 State-Changed-Why: Superseded by 8659. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 02:48:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id CAA23260 for freebsd-ports-outgoing; Thu, 12 Nov 1998 02:48:51 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from penguin.wise.edt.ericsson.se (penguin-ext.wise.edt.ericsson.se [194.237.142.5]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id CAA23252 for ; Thu, 12 Nov 1998 02:48:49 -0800 (PST) (envelope-from martti.kuparinen@lmf.ericsson.se) Received: from lmf.lmf.ericsson.se (umail.lmf.ericsson.se [131.160.11.2]) by penguin.wise.edt.ericsson.se (8.9.0/8.9.0/WIREfire-1.2) with ESMTP id LAA24861 for ; Thu, 12 Nov 1998 11:48:29 +0100 (MET) Received: from tosb0323 by lmf.lmf.ericsson.se (8.8.8+Sun/SMI-SVR4) id MAA29948; Thu, 12 Nov 1998 12:48:26 +0200 (EET) Message-Id: <3.0.6.32.19981112124631.02e98a50@openmail.lmf.ericsson.se> X-Sender: lmfmara@openmail.lmf.ericsson.se X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.6 (32) Date: Thu, 12 Nov 1998 12:46:31 +0200 To: ports@FreeBSD.ORG From: Martti Kuparinen Subject: rxvt does not update utmp - here is a patch Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The current version of rxvt is not configured to update the utmp and as a result some applications e.g. w and who can't show the current users. Below is a diff for /usr/ports/x11/rxvt/Makefile Martti *** Makefile.orig Thu Nov 12 12:30:03 1998 --- Makefile Thu Nov 12 12:27:32 1998 *************** *** 17,22 **** --- 17,27 ---- USE_X_PREFIX= yes GNU_CONFIGURE= yes + CONFIGURE_ARGS= --enable-utmp MAN1= rxvt.1 + + post-install: + chown root.wheel ${X11BASE}/bin/rxvt + chmod 4755 ${X11BASE}/bin/rxvt .include To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 04:10:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA01205 for freebsd-ports-outgoing; Thu, 12 Nov 1998 04:10: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 EAA01173 for ; Thu, 12 Nov 1998 04:09:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA23797; Thu, 12 Nov 1998 04:10:01 -0800 (PST) Received: from oddbjorn.bdc.no (oddbjorn.bdc.no [193.69.204.230]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA28442 for ; Thu, 12 Nov 1998 04:01:26 -0800 (PST) (envelope-from oddbjorn@oddbjorn.bdc.no) Received: (from oddbjorn@localhost) by oddbjorn.bdc.no (8.8.8/8.8.7) id NAA03210; Thu, 12 Nov 1998 13:01:09 +0100 (CET) (envelope-from oddbjorn) Message-Id: <199811121201.NAA03210@oddbjorn.bdc.no> Date: Thu, 12 Nov 1998 13:01:09 +0100 (CET) From: oddbjorn@oddbjorn.bdc.no Reply-To: oddbjorn@oddbjorn.bdc.no To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8663: Makefile for python port is broken Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8663 >Category: ports >Synopsis: Makefile for python port is broken >Confidential: yes >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Nov 12 04:10:00 PST 1998 >Last-Modified: >Originator: Oddbjorn Steffensen >Organization: >Release: FreeBSD 2.2.5-STABLE i386 >Environment: This happens both on -CURRENT and a recent -STABLE. >Description: Makefile references bsd.port.pre.mk, which is nonexistant (at least in /usr/share/mk). >How-To-Repeat: /usr/ports/lang/python# make "Makefile", line 85: Could not find bsd.port.pre.mk "Makefile", line 87: Malformed conditional (${PORTOBJFORMAT} == elf) "Makefile", line 87: Need an operator "Makefile", line 90: if-less endif "Makefile", line 90: Need an operator "Makefile", line 93: Malformed conditional (${OSVERSION} < 300000) "Makefile", line 93: Need an operator "Makefile", line 96: if-less else "Makefile", line 96: Need an operator "Makefile", line 99: if-less endif "Makefile", line 99: Need an operator "Makefile", line 105: Could not find bsd.port.post.mk make: fatal errors encountered -- cannot continue >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 Thu Nov 12 04:30:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA02779 for freebsd-ports-outgoing; Thu, 12 Nov 1998 04:30:12 -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 EAA02767; Thu, 12 Nov 1998 04:30:02 -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 EAA08434; Thu, 12 Nov 1998 04:30:05 -0800 (PST) Date: Thu, 12 Nov 1998 04:30:05 -0800 (PST) Message-Id: <199811121230.EAA08434@freefall.freebsd.org> To: oddbjorn@oddbjorn.bdc.no, asami@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8663 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Makefile for python port is broken State-Changed-From-To: open-closed State-Changed-By: asami State-Changed-When: Thu Nov 12 04:28:38 PST 1998 State-Changed-Why: "make install" in /usr/src/share/mk. If you have -stable, you may have to re-cvsup again (the addition to Makefile was not done until about a day after commits to the python port). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 04:39:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA03565 for freebsd-ports-outgoing; Thu, 12 Nov 1998 04:39: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 EAA03560 for ; Thu, 12 Nov 1998 04:39:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA12981; Thu, 12 Nov 1998 04:40:00 -0800 (PST) Date: Thu, 12 Nov 1998 04:40:00 -0800 (PST) Message-Id: <199811121240.EAA12981@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Thomas Gellekum Subject: Re: ports/8663: Makefile for python port is broken Reply-To: Thomas Gellekum Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/8663; it has been noted by GNATS. From: Thomas Gellekum To: oddbjorn@oddbjorn.bdc.no Cc: FreeBSD-gnats-submit@FreeBSD.ORG Subject: Re: ports/8663: Makefile for python port is broken Date: 12 Nov 1998 13:32:32 +0100 oddbjorn@oddbjorn.bdc.no writes: > >Environment: > > This happens both on -CURRENT and a recent -STABLE. As root, do: cd /usr/src/share/mk; make install tg To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 04:50:00 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA04295 for freebsd-ports-outgoing; Thu, 12 Nov 1998 04:50: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 EAA04287 for ; Thu, 12 Nov 1998 04:49:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id EAA17891; Thu, 12 Nov 1998 04:50:01 -0800 (PST) Received: (from nobody@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA04122; Thu, 12 Nov 1998 04:46:14 -0800 (PST) (envelope-from nobody) Message-Id: <199811121246.EAA04122@hub.freebsd.org> Date: Thu, 12 Nov 1998 04:46:14 -0800 (PST) From: Karl.Dietz@triplan.com To: freebsd-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: www-1.0 Subject: ports/8664: new port: dnsutl - converter DNS -> REV / hosts / netgroup / ... Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8664 >Category: ports >Synopsis: new port: dnsutl - converter DNS -> REV / hosts / netgroup / ... >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 Nov 12 04:50:00 PST 1998 >Last-Modified: >Originator: Karl Dietz >Organization: TRIPLAN Ing. GmbH >Release: 3.0-RELEASE >Environment: FreeBSD hermes.triplan.com 3.0-RELEASE FreeBSD 3.0-RELEASE 1: Tue Nov 10 00:50:41 CET 1998 root@hermes.triplan.com:/usr/src/sys/compile/HERMES i386 >Description: These dns tools have proven quite usefull for me, so I wanted to share them with others. But I ran into a problem while building. (this is my first port) The manpages do not build because some bin/roffpp is missing. So if someone had a look at it, probably fixed it and committed, I'd be quite happy. Karl >How-To-Repeat: cd /usr/ports/net/dnsutl >Fix: extract this sharfile # 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: # # dnsutl # dnsutl/Makefile # dnsutl/files # dnsutl/files/md5 # dnsutl/pkg # dnsutl/pkg/PLIST # dnsutl/pkg/DESCR # dnsutl/pkg/COMMENT # dnsutl/patches # dnsutl/patches/patch-aa # echo c - dnsutl mkdir -p dnsutl > /dev/null 2>&1 echo x - dnsutl/Makefile sed 's/^X//' >dnsutl/Makefile << 'END-of-dnsutl/Makefile' X# Ports collection makefile for: dnsutl X# Version required: 1.3 X# Date created: Nov 05, 1998 X# Whom: Karl Dietz (Karl.Dietz@triplan.com) X# X# $Id: Makefile,v 1.4 1998/08/20 22:06:00 obrien Exp $ X# X XDISTNAME= dnsutl.1.3 XPKGNAME= dnsutl-1.3 XCATEGORIES= net XMASTER_SITES= http://www.tip.net.au/~millerp/ X XMAINTAINER= Karl.Dietz@triplan.com X XHAS_CONFIGURE= yes XCONFIGURE_PARAM= --prefix=${PREFIX} XCONFIGURE_ENV= LIBS=-lcompat X XINSTALL_TARGET= sure install-bin X X#MAN1= dns-bootp.1 dns-ethers.1 dns-hosts.1 dns-rev.1 \ X# dns-bootprms.1 dns-filter.1 dns-ng.1 X X.include END-of-dnsutl/Makefile echo c - dnsutl/files mkdir -p dnsutl/files > /dev/null 2>&1 echo x - dnsutl/files/md5 sed 's/^X//' >dnsutl/files/md5 << 'END-of-dnsutl/files/md5' XMD5 (dnsutl.1.3.tar.gz) = cb4f366221517a3fdfe7584f0c568d37 END-of-dnsutl/files/md5 echo c - dnsutl/pkg mkdir -p dnsutl/pkg > /dev/null 2>&1 echo x - dnsutl/pkg/PLIST sed 's/^X//' >dnsutl/pkg/PLIST << 'END-of-dnsutl/pkg/PLIST' Xbin/dns-bootp Xbin/dns-bootparams Xbin/dns-ethers Xbin/dns-filter Xbin/dns-hosts Xbin/dns-ng Xbin/dns-rev END-of-dnsutl/pkg/PLIST echo x - dnsutl/pkg/DESCR sed 's/^X//' >dnsutl/pkg/DESCR << 'END-of-dnsutl/pkg/DESCR' X The dnsutl package is a bunch of programs I wrote to make X using DNS easier. These include: X X dns-rev X Take the forward DNS mapping and generate the X reverse mapping. X X dns-hosts X Take the forward DNS mapping and generate the X /etc/hosts file. X X dns-ng X Take the forward DNS mapping and generate the X /etc/netgroup file. X X All of these programs are both faster than shell scripts, X and more robust when faced with all the peculiar semantics X of DNS resource files. END-of-dnsutl/pkg/DESCR echo x - dnsutl/pkg/COMMENT sed 's/^X//' >dnsutl/pkg/COMMENT << 'END-of-dnsutl/pkg/COMMENT' XThis is a bunch of programs to make using DNS easier. END-of-dnsutl/pkg/COMMENT echo c - dnsutl/patches mkdir -p dnsutl/patches > /dev/null 2>&1 echo x - dnsutl/patches/patch-aa sed 's/^X//' >dnsutl/patches/patch-aa << 'END-of-dnsutl/patches/patch-aa' X*** Makefile.in.orig Thu Nov 12 10:57:05 1998 X--- Makefile.in Thu Nov 12 11:10:12 1998 X*************** X*** 99,105 **** X # You should not need to alter anything below this point. X #------------------------------------------------------------ X X! all: bin/dns-hosts bin/dns-ng bin/dns-rev X X common/ansi.o: common/ansi.c common/ac/stddef.h common/config.h \ X common/ac/stdlib.h common/ac/string.h common/main.h X--- 99,106 ---- X # You should not need to alter anything below this point. X #------------------------------------------------------------ X X! all: bin/dns-bootp bin/dns-bootparams bin/dns-ethers bin/dns-filter \ X! bin/dns-hosts bin/dns-ng bin/dns-rev X X common/ansi.o: common/ansi.c common/ac/stddef.h common/config.h \ X common/ac/stdlib.h common/ac/string.h common/main.h X*************** X*** 584,589 **** X--- 585,622 ---- X -mkdir bin X @touch .bin X X+ dns_bootp_files = dns-bootp/main.o dns-bootp/filter.o X+ X+ bin/dns-bootp: $(dns_bootp_files) common/lib.a .bin X+ $(CC) $(LDFLAGS) -o bin/dns-bootp $(dns_bootp_files) common/lib.a $(LIBS) X+ X+ $(bindir)/dns-bootp: bin/dns-bootp X+ $(INSTALL_PROGRAM) bin/dns-bootp $(bindir)/dns-bootp X+ X+ dns_bootparams_files = dns-bootparams/main.o dns-bootparams/filter.o X+ X+ bin/dns-bootparams: $(dns_bootparams_files) common/lib.a .bin X+ $(CC) $(LDFLAGS) -o bin/dns-bootparams $(dns_bootparams_files) common/lib.a $(LIBS) X+ X+ $(bindir)/dns-bootparams: bin/dns-bootparams X+ $(INSTALL_PROGRAM) bin/dns-bootparams $(bindir)/dns-bootparams X+ X+ dns_ethers_files = dns-ethers/main.o dns-ethers/ethers.o X+ X+ bin/dns-ethers: $(dns_ethers_files) common/lib.a .bin X+ $(CC) $(LDFLAGS) -o bin/dns-ethers $(dns_ethers_files) common/lib.a $(LIBS) X+ X+ $(bindir)/dns-ethers: bin/dns-ethers X+ $(INSTALL_PROGRAM) bin/dns-ethers $(bindir)/dns-ethers X+ X+ dns_filter_files = dns-filter/main.o dns-filter/filter.o X+ X+ bin/dns-filter: $(dns_filter_files) common/lib.a .bin X+ $(CC) $(LDFLAGS) -o bin/dns-filter $(dns_filter_files) common/lib.a $(LIBS) X+ X+ $(bindir)/dns-filter: bin/dns-filter X+ $(INSTALL_PROGRAM) bin/dns-filter $(bindir)/dns-filter X+ X dns_hosts_files = dns-hosts/hosts.o dns-hosts/main.o X X bin/dns-hosts: $(dns_hosts_files) common/lib.a .bin X*************** X*** 609,614 **** X--- 642,649 ---- X $(bindir)/dns-rev: bin/dns-rev X $(INSTALL_PROGRAM) bin/dns-rev $(bindir)/dns-rev X X+ X+ X Txt2cObj = common/ansi.o common/arglex.o common/error.o common/mem.o \ X txt2c/main.o txt2c/txt2c.o X X*************** X*** 651,657 **** X distclean: clean X rm -f Makefile common/config.h config.status X X! install-bin: $(bindir)/dns-hosts $(bindir)/dns-ng $(bindir)/dns-rev X X install-man: $(mandir)/man1/dns-bootp.1 $(mandir)/man1/dns-bootprms.1 \ X $(mandir)/man1/dns-ethers.1 $(mandir)/man1/dns-filter.1 \ X--- 686,694 ---- X distclean: clean X rm -f Makefile common/config.h config.status X X! install-bin: $(bindir)/dns-hosts $(bindir)/dns-ng $(bindir)/dns-rev \ X! $(bindir)/dns-ethers $(bindir)/dns-bootp \ X! $(bindir)/dns-bootparams $(bindir)/dns-filter X X install-man: $(mandir)/man1/dns-bootp.1 $(mandir)/man1/dns-bootprms.1 \ X $(mandir)/man1/dns-ethers.1 $(mandir)/man1/dns-filter.1 \ END-of-dnsutl/patches/patch-aa 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 Nov 12 07:19:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA16782 for freebsd-ports-outgoing; Thu, 12 Nov 1998 07:19:59 -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 HAA16773 for ; Thu, 12 Nov 1998 07:19:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA08428; Thu, 12 Nov 1998 07:20:01 -0800 (PST) Received: from pobox.com (lon-c45-039-vty63.as.wcom.net [195.232.21.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id HAA15929 for ; Thu, 12 Nov 1998 07:10:10 -0800 (PST) (envelope-from berend@pobox.com) Received: (from root@localhost) by playstation.pobox.com (8.8.8/8.8.7) id QAA06125; Thu, 12 Nov 1998 16:07:57 +0100 (CET) (envelope-from berend) Message-Id: <199811121507.QAA06125@playstation.pobox.com> Date: Thu, 12 Nov 1998 16:07:57 +0100 (CET) From: Berend de Boer Reply-To: berend@pobox.com To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8667: port RedHat Interbase 4 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8667 >Category: ports >Synopsis: port RedHat Interbase 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: Thu Nov 12 07:20:00 PST 1998 >Last-Modified: >Originator: Berend de Boer >Organization: NederWare >Release: FreeBSD 2.2.7-STABLE i386 >Environment: Port of RedHat Interbase 4. Below as shar `find databases/interbase4/*` # 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: # # databases/interbase4/Makefile # databases/interbase4/files # databases/interbase4/files/md5 # databases/interbase4/patches # databases/interbase4/patches/patch-aa # databases/interbase4/pkg # databases/interbase4/pkg/COMMENT # databases/interbase4/pkg/PLIST # databases/interbase4/pkg/DESCR # echo x - databases/interbase4/Makefile sed 's/^X//' >databases/interbase4/Makefile << 'END-of-databases/interbase4/Makefile' X# ports collection makefile for: Interbase 4.0 Redhad version X# Version required: 4.0 X# Date created: 1998-nov-01 X# Whom: Berend de Boer X# X# $Id: $ X# X XDISTNAME= IB_4.0_Linux XPKGNAME= interbase-redhat-4.0 XCATEGORIES= databases XMASTER_SITES= http://www.interbase.com/download/linux/ XMAINTAINER= berend@pobox.com X XNO_WRKSUBDIR= XNO_BUILD= XIS_INTERACTIVE= XRUN_DEPENDS= /compat/linux/lib/libc.so.5:${PORTSDIR}/emulators/linux_lib X Xdo-fetch: X @if [ ! -f /usr/ports/distfiles/${DISTNAME}.tar.gz ]; then \ X ${ECHO_MSG} "Sorry, this package cannot be fetched automagically."; \ X ${ECHO_MSG} "Point your browser to http://www.interbase.com/download/linux."; \ X ${ECHO_MSG} "And put the package in /usr/ports/distfiles."; \ X exit 1; \ X fi X Xdo-install: X @(cd ${WRKSRC}; ./install) X X.if !defined(BATCH) Xpost-install: X @kill -HUP `cat /var/run/inetd.pid` X @${ECHO_MSG} "Make sure that linux emulation is loaded: modload /lkm/linux_mod.o" X.endif X X.include END-of-databases/interbase4/Makefile echo c - databases/interbase4/files mkdir -p databases/interbase4/files > /dev/null 2>&1 echo x - databases/interbase4/files/md5 sed 's/^X//' >databases/interbase4/files/md5 << 'END-of-databases/interbase4/files/md5' XMD5 (IB_4.0_Linux.tar.gz) = 469578c98e1f3c1ad7ca7751e32694c3 END-of-databases/interbase4/files/md5 echo c - databases/interbase4/patches mkdir -p databases/interbase4/patches > /dev/null 2>&1 echo x - databases/interbase4/patches/patch-aa sed 's/^X//' >databases/interbase4/patches/patch-aa << 'END-of-databases/interbase4/patches/patch-aa' X*** install.orig Wed Apr 29 15:56:03 1998 X--- install Tue Nov 3 21:41:22 1998 X*************** X*** 11,15 **** X PATH=.:/bin:/usr/bin X export PATH X! ARCH=`arch` X DD="dd" X MT="mt" X--- 11,15 ---- X PATH=.:/bin:/usr/bin X export PATH X! ARCH=`uname -m` X DD="dd" X MT="mt" X*************** X*** 63,78 **** X fi X X- # and that they are installing from a server machine X- # note that this does not catch diskful client installations X- grep -s '/dev' /etc/mtab X- if [ $? != 0 ] # aha! They don't do any local mounts, so are client NOT server X- then X- echo X- echo "You must perform this installation from the server that boots $SERVER." X- echo "Exiting..." X- echo X- exit X- fi X- X X LINKDIR=/usr X--- 63,66 ---- X*************** X*** 85,89 **** X "This installation will create the directory tree $INTERBASE/${ARCH}_$VERSION X under the root directory most appropriate for your installation. Enter the X! root directory you wish to use [/home/$SERVER]: " X X read ROOT X--- 73,77 ---- X "This installation will create the directory tree $INTERBASE/${ARCH}_$VERSION X under the root directory most appropriate for your installation. Enter the X! root directory you wish to use [/usr/local]: " X X read ROOT X*************** X*** 112,116 **** X if [ "$ROOT" = "" ] X then X! ROOT=/home/$SERVER X fi X X--- 100,104 ---- X if [ "$ROOT" = "" ] X then X! ROOT=/usr/local X fi X X*************** X*** 344,347 **** X echo X echo X! echo "This completes the InterBase installation script. Please be sure to X! reboot the node that you have installed on." X--- 332,334 ---- X echo X echo X! echo "This completes the InterBase installation script." END-of-databases/interbase4/patches/patch-aa echo c - databases/interbase4/pkg mkdir -p databases/interbase4/pkg > /dev/null 2>&1 echo x - databases/interbase4/pkg/COMMENT sed 's/^X//' >databases/interbase4/pkg/COMMENT << 'END-of-databases/interbase4/pkg/COMMENT' XInterbase 4.0 for RedHat Linux, license free version. END-of-databases/interbase4/pkg/COMMENT echo x - databases/interbase4/pkg/PLIST sed 's/^X//' >databases/interbase4/pkg/PLIST << 'END-of-databases/interbase4/pkg/PLIST' Xinterbase/i386_V4.0G/bin/gpre Xinterbase/i386_V4.0G/bin/gds_pipe Xinterbase/i386_V4.0G/bin/gfix Xinterbase/i386_V4.0G/bin/gds_lock_mgr Xinterbase/i386_V4.0G/bin/gbak Xinterbase/i386_V4.0G/bin/gdef Xinterbase/i386_V4.0G/bin/iscinstall Xinterbase/i386_V4.0G/bin/isql Xinterbase/i386_V4.0G/bin/gds_lock_print Xinterbase/i386_V4.0G/bin/fred Xinterbase/i386_V4.0G/bin/gds_inet_server Xinterbase/i386_V4.0G/bin/gstat Xinterbase/i386_V4.0G/bin/gds_relay Xinterbase/i386_V4.0G/bin/gsec Xinterbase/i386_V4.0G/bin/gds_cache_manager Xinterbase/i386_V4.0G/bin/gds_cache_print Xinterbase/i386_V4.0G/bin/gds_drop Xinterbase/i386_V4.0G/bin/isc4.gbak Xinterbase/i386_V4.0G/bin/gds_wal_print Xinterbase/i386_V4.0G/bin/gds_wal_writer Xinterbase/i386_V4.0G/examples/v3/array.e Xinterbase/i386_V4.0G/examples/v3/city_pops.e Xinterbase/i386_V4.0G/examples/v3/forms_ski.e Xinterbase/i386_V4.0G/examples/v3/forms_state.e Xinterbase/i386_V4.0G/examples/v3/dsql.e Xinterbase/i386_V4.0G/examples/v3/dsql_blob.e Xinterbase/i386_V4.0G/examples/v3/dsql_date1.e Xinterbase/i386_V4.0G/examples/v3/dsql_date2.e Xinterbase/i386_V4.0G/examples/v3/emp.e Xinterbase/i386_V4.0G/examples/v3/full_dsql.e Xinterbase/i386_V4.0G/examples/v3/gconf.e Xinterbase/i386_V4.0G/examples/v3/gconv.e Xinterbase/i386_V4.0G/examples/v3/gconv.readme Xinterbase/i386_V4.0G/examples/v3/gdml.e Xinterbase/i386_V4.0G/examples/v3/gdump.e Xinterbase/i386_V4.0G/examples/v3/gdump.readme Xinterbase/i386_V4.0G/examples/v3/gref.e Xinterbase/i386_V4.0G/examples/v3/gref.readme Xinterbase/i386_V4.0G/examples/v3/multi_db1.e Xinterbase/i386_V4.0G/examples/v3/multi_db2.e Xinterbase/i386_V4.0G/examples/v3/nr_filter.c Xinterbase/i386_V4.0G/examples/v3/slides.e Xinterbase/i386_V4.0G/examples/v3/sql.e Xinterbase/i386_V4.0G/examples/v3/sql_blob1.e Xinterbase/i386_V4.0G/examples/v3/sql_blob2.e Xinterbase/i386_V4.0G/examples/v3/sql_blob3.e Xinterbase/i386_V4.0G/examples/v3/sql_date.e Xinterbase/i386_V4.0G/examples/v3/sql_trans.e Xinterbase/i386_V4.0G/examples/v3/stocks.e Xinterbase/i386_V4.0G/examples/v3/udf.c Xinterbase/i386_V4.0G/examples/v3/udftest.e Xinterbase/i386_V4.0G/examples/v3/city_pops.E Xinterbase/i386_V4.0G/examples/v3/dsql.E Xinterbase/i386_V4.0G/examples/v3/gdml.E Xinterbase/i386_V4.0G/examples/v3/sql.E Xinterbase/i386_V4.0G/examples/v3/city_pops.ea Xinterbase/i386_V4.0G/examples/v3/dsql.ea Xinterbase/i386_V4.0G/examples/v3/gdml.ea Xinterbase/i386_V4.0G/examples/v3/sql.ea Xinterbase/i386_V4.0G/examples/v3/basic_io.a Xinterbase/i386_V4.0G/examples/v3/dsql.ecbl Xinterbase/i386_V4.0G/examples/v3/gdml.ecbl Xinterbase/i386_V4.0G/examples/v3/sql.ecbl Xinterbase/i386_V4.0G/examples/v3/make.filter Xinterbase/i386_V4.0G/examples/v3/make.udf Xinterbase/i386_V4.0G/examples/v3/udf.gdl Xinterbase/i386_V4.0G/examples/v3/city_pops.ef Xinterbase/i386_V4.0G/examples/v3/dsql.ef Xinterbase/i386_V4.0G/examples/v3/gdml.ef Xinterbase/i386_V4.0G/examples/v3/sql.ef Xinterbase/i386_V4.0G/examples/v3/atlas.gbak Xinterbase/i386_V4.0G/examples/v3/atlas.gdb Xinterbase/i386_V4.0G/examples/v3/c_guide.gbak Xinterbase/i386_V4.0G/examples/v3/emp.gbak Xinterbase/i386_V4.0G/examples/v3/emp.gdb Xinterbase/i386_V4.0G/examples/v3/nc_guide.gbak Xinterbase/i386_V4.0G/examples/v3/slides.gbak Xinterbase/i386_V4.0G/examples/v3/stocks.gbak Xinterbase/i386_V4.0G/examples/v3/atlas.gdl Xinterbase/i386_V4.0G/examples/v3/c_guide.gdl Xinterbase/i386_V4.0G/examples/v3/emp.gdl Xinterbase/i386_V4.0G/examples/v3/nc_guide.gdl Xinterbase/i386_V4.0G/examples/v3/slides.gdl Xinterbase/i386_V4.0G/examples/v3/sources.gdl Xinterbase/i386_V4.0G/examples/v3/stocks.gdl Xinterbase/i386_V4.0G/examples/v3/udf_trig.gdl Xinterbase/i386_V4.0G/examples/v4/README Xinterbase/i386_V4.0G/examples/v4/align.h Xinterbase/i386_V4.0G/examples/v4/api1.c Xinterbase/i386_V4.0G/examples/v4/api10.c Xinterbase/i386_V4.0G/examples/v4/api11.c Xinterbase/i386_V4.0G/examples/v4/api12.c Xinterbase/i386_V4.0G/examples/v4/api13.c Xinterbase/i386_V4.0G/examples/v4/api14.e Xinterbase/i386_V4.0G/examples/v4/api15.c Xinterbase/i386_V4.0G/examples/v4/api16.c Xinterbase/i386_V4.0G/examples/v4/api16t.c Xinterbase/i386_V4.0G/examples/v4/api2.c Xinterbase/i386_V4.0G/examples/v4/api3.c Xinterbase/i386_V4.0G/examples/v4/api4.c Xinterbase/i386_V4.0G/examples/v4/api5.c Xinterbase/i386_V4.0G/examples/v4/api6.c Xinterbase/i386_V4.0G/examples/v4/api7.c Xinterbase/i386_V4.0G/examples/v4/api8.c Xinterbase/i386_V4.0G/examples/v4/api9.c Xinterbase/i386_V4.0G/examples/v4/api9f.c Xinterbase/i386_V4.0G/examples/v4/apifull.c Xinterbase/i386_V4.0G/examples/v4/create2.sql Xinterbase/i386_V4.0G/examples/v4/dyn1.e Xinterbase/i386_V4.0G/examples/v4/dyn2.e Xinterbase/i386_V4.0G/examples/v4/dyn3.e Xinterbase/i386_V4.0G/examples/v4/dyn4.e Xinterbase/i386_V4.0G/examples/v4/dyn5.e Xinterbase/i386_V4.0G/examples/v4/dynfull.e Xinterbase/i386_V4.0G/examples/v4/employee.gbk Xinterbase/i386_V4.0G/examples/v4/employee.gdb Xinterbase/i386_V4.0G/examples/v4/example.h Xinterbase/i386_V4.0G/examples/v4/filter.sql Xinterbase/i386_V4.0G/examples/v4/intlemp.gbk Xinterbase/i386_V4.0G/examples/v4/intlemp.gdb Xinterbase/i386_V4.0G/examples/v4/stat1.e Xinterbase/i386_V4.0G/examples/v4/stat10.e Xinterbase/i386_V4.0G/examples/v4/stat11.e Xinterbase/i386_V4.0G/examples/v4/stat12.e Xinterbase/i386_V4.0G/examples/v4/stat12t.e Xinterbase/i386_V4.0G/examples/v4/stat2.e Xinterbase/i386_V4.0G/examples/v4/stat3.e Xinterbase/i386_V4.0G/examples/v4/stat4.e Xinterbase/i386_V4.0G/examples/v4/stat5.e Xinterbase/i386_V4.0G/examples/v4/stat6.e Xinterbase/i386_V4.0G/examples/v4/stat7.e Xinterbase/i386_V4.0G/examples/v4/stat8.e Xinterbase/i386_V4.0G/examples/v4/stat9.e Xinterbase/i386_V4.0G/examples/v4/udf.sql Xinterbase/i386_V4.0G/examples/v4/udflib.c Xinterbase/i386_V4.0G/help/help.gbak Xinterbase/i386_V4.0G/help/help.gdb Xinterbase/i386_V4.0G/include/gds.h Xinterbase/i386_V4.0G/include/gds.hxx Xinterbase/i386_V4.0G/include/perf.h Xinterbase/i386_V4.0G/include/ibase.h Xinterbase/i386_V4.0G/include/gds.f Xinterbase/i386_V4.0G/include/interbase.a Xinterbase/i386_V4.0G/inetd.conf.isc Xinterbase/i386_V4.0G/interbase.msg Xinterbase/i386_V4.0G/isc4.gdb Xinterbase/i386_V4.0G/isc_config Xinterbase/i386_V4.0G/isc_ins_hlp.dat Xinterbase/i386_V4.0G/isc_license.dat Xinterbase/i386_V4.0G/lib/gdsflib.so.0.0 Xinterbase/i386_V4.0G/lib/gdslib.so.1.0 Xinterbase/i386_V4.0G/lib/gdslib.so.0.1 Xinterbase/i386_V4.0G/lib/gds_pyxis.a Xinterbase/i386_V4.0G/lib/gdsintl Xinterbase/i386_V4.0G/lib/gds.a Xinterbase/i386_V4.0G/servers.isc Xinterbase/i386_V4.0G/services.isc Xinterbase/i386_V4.0G/isc_event.gbl.playstation.deboer X@dirrm interbase/i386_V4.0G/lib X@dirrm interbase/i386_V4.0G/intl X@dirrm interbase/i386_V4.0G/include X@dirrm interbase/i386_V4.0G/help X@dirrm interbase/i386_V4.0G/examples/v4 X@dirrm interbase/i386_V4.0G/examples/v3 X@dirrm interbase/i386_V4.0G/examples X@dirrm interbase/i386_V4.0G/bin X@dirrm interbase/i386_V4.0G X@dirrm interbase END-of-databases/interbase4/pkg/PLIST echo x - databases/interbase4/pkg/DESCR sed 's/^X//' >databases/interbase4/pkg/DESCR << 'END-of-databases/interbase4/pkg/DESCR' XInterbase 4.0 for RedHat Linux. X XThis version should be free. X XSee http://www.interbase.com for more info. END-of-databases/interbase4/pkg/DESCR exit >Description: >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 Thu Nov 12 09:32:13 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA00706 for freebsd-ports-outgoing; Thu, 12 Nov 1998 09:32:13 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.gtn.com (mail.gtn.com [192.109.159.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA00698; Thu, 12 Nov 1998 09:32:08 -0800 (PST) (envelope-from andreas@klemm.gtn.com) Received: (from uucp@localhost) by mail.gtn.com (8.8.6/8.8.6) with UUCP id SAA23159; Thu, 12 Nov 1998 18:30:08 +0100 (MET) Received: (from andreas@localhost) by klemm.gtn.com (8.9.1/8.9.1) id SAA11507; Thu, 12 Nov 1998 18:27:44 +0100 (CET) (envelope-from andreas) Message-ID: <19981112182743.A11500@klemm.gtn.com> Date: Thu, 12 Nov 1998 18:27:43 +0100 From: Andreas Klemm To: Werner Griessl Cc: ports@FreeBSD.ORG, andreas@FreeBSD.ORG Subject: Re: lyx & current References: <19981111222142.C2553@klemm.gtn.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: ; from Werner Griessl on Thu, Nov 12, 1998 at 08:51:16AM +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 Thu, Nov 12, 1998 at 08:51:16AM +0100, Werner Griessl wrote: > > Thanks, it's working now ! Fine. -- Andreas Klemm http://www.FreeBSD.ORG/~andreas What gives you 90% more speed, for example, in kernel compilation ? http://www.FreeBSD.ORG/~fsmp/SMP/akgraph-a/graph1.html "NT = Not Today" (Maggie Biggs) ``powered by FreeBSD SMP'' To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 11:25:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA11248 for freebsd-ports-outgoing; Thu, 12 Nov 1998 11:25:06 -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 LAA11242; Thu, 12 Nov 1998 11:25:05 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id LAA19553; Thu, 12 Nov 1998 11:25:08 -0800 (PST) Date: Thu, 12 Nov 1998 11:25:08 -0800 (PST) Message-Id: <199811121925.LAA19553@freefall.freebsd.org> To: billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/8404 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ircd-hybrid port update Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Thu Nov 12 11:24:51 PST 1998 Responsible-Changed-Why: I'll upgrade this. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 12:59:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA20756 for freebsd-ports-outgoing; Thu, 12 Nov 1998 12:59: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 MAA20748 for ; Thu, 12 Nov 1998 12:59:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA24750; Thu, 12 Nov 1998 13:00:01 -0800 (PST) Date: Thu, 12 Nov 1998 13:00:01 -0800 (PST) Message-Id: <199811122100.NAA24750@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: adam@algroup.co.uk Subject: Re: ports/8448: first cut of apache13-ssl port Reply-To: adam@algroup.co.uk Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/8448; it has been noted by GNATS. From: adam@algroup.co.uk To: FreeBSD-gnats-submit@freebsd.org Cc: Subject: Re: ports/8448: first cut of apache13-ssl port Date: 12 Nov 1998 20:58:21 -0000 >Submitter-Id: current-users >Originator: Adam Laurie >Organization: apache-ssl.org >Confidential: no >Synopsis: changes to master sites >Severity: non-critical >Priority: low >Category: ports >Release: FreeBSD current >Class: change-request begin 664 apache13-ssl.tgz M'XL(`/%)2S8``^1<>W?;-K+OO_:G0&2GL1-1$O6R+==9.[:<^EZ_KN7L\9ZV MR_`!23PF"2X??FQOO_N=`?B22(ITFG:;][[[^)7(O#.0LY]X[0R'<$.&PVYWV._O#.&[W.WUA]^1 MSA_0EMP5^H'J$?*=:AC/JW!5_&_TVB"W<],G\$\E_IQ:%E$]?6X^T!8A$_6! M$C,@I@/,J6G1)O&HS8"H.L_!W'1F1*-3YM'U#1*@%,MT`*,Z!MQ2AX0.&-<] M2M">"74"ZF&1AC_GPAI0PR4+H```;/49A.@>50-*#-.C>L`\D_K['.ISF1DR M>32AI1HE[-&A!HI_9B&"0,@<6VW0J1I:`7&I9YN^;S+';ZUOK$>]C;I(=.8$ MJNGX(V2MJ9FIL'3;=N]G!:3V\=7%Q?CRMHAU,IX%Q+9M M#')BU`!N!2MZ3MD$?VDX()M5]_[U<7)B;0*$`Y)0(>2H0DAB- M#Y;[QF__\Z[=?D/>E\'(#S^0-^/+$XE-I3+,F_6[(\Z2)I/S$1'?B4_UT*/D MD6H^]1ZH!_,XH#-/#7`6`I"JSZWU"LDKNB$,O*(3'+2R"QP!'2#%5]07N=5K M]`8P/$0-]0L4R<&LV%R8Q%BVJY%;7!!T'GF MD'L'_`91_4A<,]$,-=;OX#OC8A(U0N7@PQQPB]BM1S.80_W@%:>\`Z)WZWW1[=@%_W`\_D8GP"HNB3R[R@2>@#Q7(LG,W7[U*91(@$J(8.%&Q@ MZC$;!!.&3:>@6HOI7-DM')I3G!8&!:SE$QU@X+JG+(1V,-$L,%*B!B/$QB,_ M#P)WU&X_/CZVA-'P$(5YLU*;%199;K'"\U98+`>MM%B.`(O53*=M:+:M.NJ, MBMMY8)@S4&5\YZJ^_P@V10.]+>2T55VGOM^"89NVHE5J@8_=-LK9MCHS]6*. M:=-6\.Q2OY#M>_:25-/1K="@2<,L&++6/$]W"XF*SFQPQ&4\9VK.5O$4-0Q8 M"0`[4 MG=&G(@Z,/->.,K.8IEK^*DRA=B.N5U@O\BQ66LPN[B'G@>,+F,ZL,KY'_P7> MJ$BCG/TP9Z5,HX!N@WF"*X-@L(C+BO3B376Y+_<*.#[J0V.J5R0K#$Q+,<#O ME_&*#8ZS?-TSW:)N<6[HFPY#`AX]S*VZ4Q9&0^=DR)\5PG"HX^> M"0-1PO9="KN+61D[=$PP0<4T2@&P/`<>;$APV&>#;!B2*YZTS'0Y02V5<"$!2Q4 MK?;YV?'X*A!3!OO7N@+:NI^24W=6C7Y MH5:!JS'E3,_1]JV'WE+JJA2`_5.!URP2'HFC0N7M%=44.K&/? M',@WVTHT0!#]:+`3KZ4,A[DSMP[0I=Y4TGRCWZ^--FB55T^Q\_J-""`.J9RH M";P.CA_BF,&S$IAN+:T]F%.)1V(UL(\PB.S?2EW/`8ZR+787E3!Q5@LB)5@_ M@Y<4J.PD@.L9/@#KV3T`:UDSX'@,+G;P=<'\3*4NVC+5VEC?K`T-*T.R+%3L M0%Z`APW)B]!V?3A[R.9:&RTVGO70\3ZT'AH"MDH''D/%1KXVNMK+QE"_ M1DP286$'J4"(Z=2U",1#*&/7GK*B@#A"JEW`HU/JU9Y:_"RR/C0Z&:A9`,93 M\?$DOVZ)^MO,N(0XI*F'C0\NZJ%]"CM?6*/KPNM:6'P^4A,-Z@OK3J#T;*4F M'EQP?3>5'LQ4X/%0$$]7*G`.?52FT<9!D97.R^#RR^!58?H2O%O@YLM^.GB.]"%QCK*("T<)54_S4D"S3-BN/FF)XG<`UPM:*76,LJPP@ M(F2=<"J&NI*F^K1JVD=H1[7I2_#B`[8JL!=S*\/3N)#I!7`KU>@OW]L\QN." M9Z00OTF:Z<3'I##;\+&O\U#,#2`FDX`HN"8LF'[[9GQTC-\24<\1F.V")D-:R"A2`3+`T_IY)>")L^F$ M>08N5,LD]IAKL?%@+I.F.0*S<,(64YF;5T/$`D^>YWB/^,1JB0Q1(?7,'#HF M%PQ^S"JH`\^;6YXYF^=&@G-"=YF,?UO^G-)<`7XFFK,'3LU9!*?V"Y1CFCD!M`ENLTT')=!EJNPT#K M%]`&!;1A`6VG@+:;HS$O4*T(3YX2\^-PS(:]^E%$)PZ/":A`S M*C%B$:^"E?(31L%RO;"&BQM\)+I0A*MZ@;*H5'P$NS+GIR0Q4.1N%J<&BNS5 MFLF!:;[GBARE!%2:HY0@WJS?79P,R%847_`)@=$TX93N:]I6F^X MU]G;40>#O>%>?[=K]/8&AJS2@M+O0+Z"R7<9,53;TXV][J"_,^QUA[O3G=Z> M.@6BIG5T0QX,"G6:=K4DV3+*<"U)N!3WN[ZG21)A>763CV3 M_%?H$#(`Y*C7'\D[49&WBY>H>]!I#H9$W!.R08C!G#[&?7L!G:6F)`)\2]$FK#P8,*J&;2$!EZ18_[P$BK` M2OTH"Q%/]H@X.TPU!=5A,OTC[[5EWE.4Q)/J58?P@TF>0!H=""9]"!T4A-Q@ M'JD*XEN+/6*Z:N;ICACR2$OIF/\UM+3Q%U)3H77)G4%3EN6,>47M<'E%^!(' M"+)H4A_OO^A&LZ!9>(:-6C1%US:XDC6>T;ND9EX+IN[BM,31*6AV33UR^:DF MKTWC%"H:<1O@5>9G'Y8T`Q@X$X<,RT6EA'SA.($IK"O64FI>?TDM_<>45&<] MJ[>6WK]@+;VONY;>1VNI[^EM/W1Q&Q.%@'I@B<54K(P6D?EBVAV,!OW,8EI8 M,"G3[9-.!U?3P=ZJU;2WU^SWHXF&0O$^NTI)!5?)2PS1551"R/K?@@L*@*[( M\=7EZ=G'3S='MV=7EV0R/N:?A26$M;PC]$&UR&=Q+DDD2J1C8J@4O-=G\GXI M8`(TEAK?W%S=''3PZ]'-Q[\?-#8/&WAC3LE/I/&TB<0&Q'J-IP;YA>R+U[MJ M12%X;1`<@7N8"Q[:)G]%)V+Q"J0IV;P^.SD].Q\GTA&P!L2#S[`F).S/.&W6 MH-`]OO\E=3@C4P!%3FZ/;C]-#AKD_H0>Y0/:K=JEPE':[S=V=C'7O]IM[Z7J\-C7Y1]Q. MWLBE1G'_T-B$'H!UC(AH&W^(0(T&&A9'P;XJ[GJF2:M$Z-R7X0JNT8R\J(BP MU'X=%W9?SX59+W!A5ET79A6X,'R,*AQV_/Q-[`M""OL"C_1D(@]'@]YHT"EQ M93D!O.R1ZY$NE-T9R;LCN;/*I0UWFCN9#0+^P=1]6)B@_\]X#(,O*;7<^9O] M>(W:Y-$QKBPP^]L/JH>M:,\\U9VW&_LX,V#]2M_'Y('0,FYOV.G)73Z&F]&* M!<(PVK/P1`#%Q-<&N51M_@*3`#8C5>"]$4IL_PW33"()&^0F`D`TYT.(&*_`?JB10.?O7N#K5DCZ M58R04&KBR[]JDE;VS`%#*3Z/Q7[F0W M\<6.@\_XE[Q[_?S:?FV,7O_X^N+UY#,?B37P#NX61VT+`MX\-S<#TZ;;![YK MF<%6>]1N9B'02?_@^TPSMR*U-[G*$`55XVG_UM6GVV;C_?MDL%%X(Q(#CG4+ M16UC6^%^C3^,(E`$_"'6/Y+D]!\B?W8:HN@:?3(#(N]'&RFAB<3\5FGB_%BY M/;L8'V`X\!?220L^OZ9>ZKCG>DL#>\'2P.HN#>Q-ZMEM9H1X$,8/(L5?!5\? M:NEB;;B`"784SOC:`/&JG(:L[]Z]JY#`#YRN=%#)`!>6/JPM@ZCPX2&1!KMR M\$Q^'AP4OX*KX8I=/`P7USL)@R^.#M(3$$7LD/QR0#A^S7`B,?)V\.B"7 MG\[/.>3=2@CY_GNB2^^G[D*9`A=$2/LMGMW@CQ.@&R%3U;3P55NFZZ&'YSJ4 M.%1L\0VJFP8M$4.X&'PA%J'QDT+8,_'4!+X1Q!=_\'NT9R\68C`]Q)U]DS`N M2=701?*W6^>,;]CPS>`Z%E+/.NT76*==USKM3.#"?)[(P=^X2\\P(Y/J[(UZ M\JBW'*MDRRS#>R/8DZ\(3^2NW)2[.ZE;-^@4=L'DYO;\1/EX?O7AZ)SP/ZGB'Y)`T'.UGAR/OG'A7(Y M'I],E$^7)^.;R?'5S7BY:G[4$+4Y<<#UV[R5;W3TWOAVX^MM_ M>-_J6$H]*W5>8*5.72MU,E9ZS%,98>(+$YV$#IE0EW3!,CNC_NYHL+-DHDF! M!0\)V,&H.UQEG[N[>[!)ZBSL;>/K_.3T_.CC1)G\>'[V01G?75_=W!XT),]X M=E3;U!O+>(&;?#H]/;M33L;7MS^*[7?VVN<+9^)@I"F8@^8;;[>7@<>9NJ'2 MJ5M0X4(#`?2!/UY3-8NNAB9]J=.%;E$7,CY2PB"@5A>NSXZKNP#;<9W&/^:R MV".^I^7CM;.PDU_=QS]DO+K?VH#!UCUI?`\;'^WEBUI-$B[XNXBCZXT,=;$0 M[X11PB\U&!Z@3->!N M4M[CP:$,GC+C)A<*<#?)76J?=/JCSLZHO_+@5.[L-&6YFSE<$I1TE^*%#L:4 M^&B77P?D,"7Q4#0ZF,\B4A)'\%"7OY`M0(!8(!VB<4!(IN"9O_D4B]G<$O?; M[7QZ@=@R14D4(`+"7TO%$_NH`7G&H2A4K(8A='HGW:2NK:U))Q_/3I2+L\N# MS2V11ZO,3'PDN4U^3B"?)N.;D[.;R-0/?FXDV"BQ>OOG1@9^?O41ILWXF`-3 M'6U'B;KX.$'@7PG\R=6Q\,VUX$W\1D'V\Y8,^W(7^]],SQ;]R__'+5^M]H3ETN_UFM]=-S6%SZ^*_ MH9_;8)(>8\'VYI8-6PUL#'S*U9#=$HC_[&,&`<+$YC^'6!KU$CD)*LJ;62TJ M2;TIE!7E*XDV%2+2^5^&R(RM,+!N=P`:3;W*?U*CB9\I:_T7:3/-;OISM%IH MN+U^I]D;#K)Y)81W(OI1/OSA*"T,8/4Z_GA&1-:?SY]Q1J^W2]BM$:__4)SX M'QP+8H^9 M^\P/!B!:`@FW5]=),2*]+Y+PS"FD_`YP/X_-UZU6V]=ZEG[&Z\VMZ['-^?;^]'B$5]K:^]C MH9M;DYOC[3;_Y3.S%?].!$1CR6A$:MC<.KN_ MK%!'BFNDXDL$ES:LEOS$Z@WFT*Q)I+ZA:$:))-GB"25XR7S*3*>H5/%L2J#% M\@KG$L\"Z,O-WDXOFZWV)WO#C=A0ZDZ"D M,>6(J#GD&UJ=BH/WG=UF;[>?.82(9E+J5TG6G"/+P<_?>`XZ21JT1F*#;F-B M@FI<\$>/;6^U5:"H-^G^F\^'P\,T'??P,'+G^[E%93_97!>7X\K87]9.5:EX MA`L&O:(D/U_:QQ.DS#E3-)%Y;+`[;/;VNID3CV]"V7P1^(9476SH7/>#A=,V M+CA)K76#%OXZV/["KCA*BN6,Y2:)DN+MEZA(E'=5*"/]H='_:^]8>]-&@I_A M5[@4*7=J,$W37%I21W'!25'"0T!:(D5"#C&-&U[R(X0B_OO-[,->&]N%]J2K MJAVIJ?7,PJ^"3Z?4LH2"0D<O]]\='T=.T>EKDBW]:L:Y?GW5&[3K^'$?EO2K4-*#DY=U(/&% M#2:<`3%L^-C2.[5L)N&DV^05Z`NA4,>(="40^9A"*_R04W849G&RZA M3^,F%[U:-;I;M46(FL\/]YD8B8?[4HPB7`2]_BO"%-/R?Z9():JJ]X='^^_? MAF=VM!;R=Z]4BPH8GA-F2]AM8:^@G)X6T0:)+-O3688B]P.VHM_*=`Q;2O%.DVLMUG8IBRJ@T1A&8MI MCI.ZB.8(L'A^J32MA8*^#BZLB\=CEH]IPEF,9DX%WU*4GB0=(SFC:DCZF1GW M,J>A>X*)&:[4YU=87D-?#9H9CY7EWGD/2G/V9$WNT(N'KK5?*E\>9I,*[$KT M>W.B7)F^8T/C3;@Y,\=D,P(#J?J/IX`+6"14&SKPT$:1UF,B/;PYFYI??7.L MSN>JXU-T/-T2FL^Q&Z;SJ#1\QS&7RH<)W)Q!3=-[TU&_FZ!V-R9WOHBO1@C>=1':ZI4_@82[$NQ#GWE([S_A,-!^ED^."B_?J>\ M@?T(^LIA$(>E8CS#I@M31^EMO?K)T)0<"5;"[S%!F);#J"6(4ZMW>TV]`5@4 MV-Z\N*+(ZWR_?7DA(O!N!Q@D"`J_0^9`4]5[QD6K4S>Z6FZQ6"@\;'>^W]"[ M/9A&W7H/RO##=BRK%6:TX@%P\!M@&7>7N1Q%@[_J[%DUA_##H2.-1^;2_0"$XE8ZS+H%O84^J%^FQ,RJ',Q M]C[1@> MB#HQN6*E\9IL#T<8"2@7=\N!QH@"[M"VID,+9R4;N&HB;0:;D8^UC^RPIT$[ M(J*3P2;LG.J8T-U`8I"!4(ABNL&"Y6C;?009X>Y#*&:%V$\^ MQ_'%TF5SN+CBLWY=7!G]7D>O]M"^L+^F3.,Z8'.&Q\BPDH9>;_;@G]&AM8AJ M]S9![]Z>(E6^W[ENHOTRO%)`5T!%EKFL%%=H]]RMU3OK4-9Y^KY\G]?=:E[= M:)G](148W5ZG7NT9-=JP0I6E.57HP!+'T64!48FN[5J>0KLZ:!N=\T'O&EW( M%8SUK3R9CHVFSNC/=&-T\;^O%J9K?;8G_@33JY+(&"#&A%F^?]&\'O"0!:A" MEQA@+/AAH'@8Y_7^NAQFL$NA"HW@!*IH?+04RG#U MI7&GVA3,<&%),>$^!9.= M^5X)A]F\_^:[7@JB-<6'SHSU-<( MG>^WVKUZ0RO5/L&>8L!6J5?U1KVG'1V\(9_RT*4II=K'ZW/8J"$<50.E"!Y)5SSS)7DDJ:M5`]X M/U_PCEYW]0&HEWH-QI;XFA57XD]K]-DDG9L[5FD$<_>A`OKU#)14]5-K+5PJ M!?R^\@5>&/;TZXN"6'(S\Y4)BJ8+BB;0/V(U7!G9-*@/R"@6BSP10? M+"=9695.5X?GJ,S0UW-AN[#H-8>/T'_J8H\A)S"0J,@(]J08M6>\5,5?H]?\ M88@2$1TH(@O1@>)2$'U^S/5$`UEEEVNE=$7DD+CTXS172F/HQ]>Q;\&5XT+O M\/M5*!%SF((EZQECJGMD]-&08/6E<]GM5-?8%,QW_OQ]Q-XBY)WS4R]`4A'9 M:256HY;/[>V0/81=#L`/#H(BFIZ]#=3@=B58=N9S(^P0N&_JE ML6;_X\#!]=D)12VNJNUUB(UO47*R$P38<^_5N341*L:FN>0O%E`VW#0(^3&! M#>2292GW>""FU"Z,;`QS3`__B1T)R@A],RD?[K`=L(M2)[`CR]I?YM&O/9__ MOQ/%2Y`@08($"1(D2)`@08($"1(D2)`@08($"1(D2)`@08($"1)^6_@7S10R %M@"@```@ ` end To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 13:29:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23730 for freebsd-ports-outgoing; Thu, 12 Nov 1998 13:29: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 NAA23723 for ; Thu, 12 Nov 1998 13:29:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA26027; Thu, 12 Nov 1998 13:30:00 -0800 (PST) Date: Thu, 12 Nov 1998 13:30:00 -0800 (PST) Message-Id: <199811122130.NAA26027@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Brett Taylor Subject: Re: ports/8645: afterstep-devel build fails on scsi.h Reply-To: Brett Taylor Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/8645; it has been noted by GNATS. From: Brett Taylor To: oski@jps.net Cc: freebsd-gnats-submit@FreeBSD.ORG Subject: Re: ports/8645: afterstep-devel build fails on scsi.h Date: Thu, 12 Nov 1998 14:18:26 -0700 (MST) Hi, > >Synopsis: afterstep-devel build fails on scsi.h > >Fix: > assume problem with new CAM-based scsi headers. Yes this is the problem. If you delete the you'll be able to compile. I'm not sure how to fix this as this is required for STABLE yet. Brett ****************************************************************** Brett Taylor brett@peloton.physics.montana.edu http://peloton.physics.montana.edu/brett/ "There is something uncanny in the noiseless rush of the cyclist, as he comes into view, passes by, and disappears." - Popular Science, 1891 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 14:02:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA27975 for freebsd-ports-outgoing; Thu, 12 Nov 1998 14:02:20 -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 OAA27945; Thu, 12 Nov 1998 14:02:15 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA27884; Thu, 12 Nov 1998 14:02:18 -0800 (PST) Date: Thu, 12 Nov 1998 14:02:18 -0800 (PST) Message-Id: <199811122202.OAA27884@freefall.freebsd.org> To: watanabe@z.phys.nagoya-u.ac.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8424 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port ja-mendexk-* (japanese/mendexk-*) State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Thu Nov 12 14:01:45 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 Thu Nov 12 14:24:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA01039 for freebsd-ports-outgoing; Thu, 12 Nov 1998 14:24:42 -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 OAA00913; Thu, 12 Nov 1998 14:23:09 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA28962; Thu, 12 Nov 1998 14:23:12 -0800 (PST) Date: Thu, 12 Nov 1998 14:23:12 -0800 (PST) Message-Id: <199811122223.OAA28962@freefall.freebsd.org> To: grog@lemis.com, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8545 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: ttt build fails with incorrect library dependencies State-Changed-From-To: open-closed State-Changed-By: billf State-Changed-When: Thu Nov 12 14:22:18 PST 1998 State-Changed-Why: This change was made in rev1.11 by Satoshi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 14:26:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA01257 for freebsd-ports-outgoing; Thu, 12 Nov 1998 14:26:47 -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 OAA01247 for ; Thu, 12 Nov 1998 14:26:46 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA28830; Thu, 12 Nov 1998 14:20:01 -0800 (PST) Date: Thu, 12 Nov 1998 14:20:01 -0800 (PST) Message-Id: <199811122220.OAA28830@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Bill Fumerola Subject: re: ports/8403 Reply-To: Bill Fumerola Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/8403; it has been noted by GNATS. From: Bill Fumerola To: rom_glsa@ein-hashofet.co.il Cc: freebsd-gnats-submit@freebsd.org, vanilla@freebsd.org Subject: re: ports/8403 Date: Thu, 12 Nov 1998 17:13:49 -0500 (EST) I tried installing your update of math/geg and had no luck with the gtk11 dependency (it crapped out on some gtk11 header files). I deinstalled/reinstall gtk11 on my machine and still had no luck, as soon as I get my hands on a new machine I'm going to set up a ports testing box, until then could you both check to see if the header files don't have any errors. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 14:36:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02545 for freebsd-ports-outgoing; Thu, 12 Nov 1998 14:36:42 -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 OAA02539; Thu, 12 Nov 1998 14:36:41 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29737; Thu, 12 Nov 1998 14:36:44 -0800 (PST) Date: Thu, 12 Nov 1998 14:36:44 -0800 (PST) Message-Id: <199811122236.OAA29737@freefall.freebsd.org> To: billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, asami@FreeBSD.ORG Subject: Re: ports/8304 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: SUGGESTION: point to handbook for BROKEN ports Responsible-Changed-From-To: freebsd-ports->asami Responsible-Changed-By: billf Responsible-Changed-When: Thu Nov 12 14:36:11 PST 1998 Responsible-Changed-Why: bsd.port.mk is Satoshi's baby. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 14:39:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA02977 for freebsd-ports-outgoing; Thu, 12 Nov 1998 14:39: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 OAA02972 for ; Thu, 12 Nov 1998 14:39:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29839; Thu, 12 Nov 1998 14:40:00 -0800 (PST) Date: Thu, 12 Nov 1998 14:40:00 -0800 (PST) Message-Id: <199811122240.OAA29839@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Bill Fumerola Subject: re: ports/7813 Reply-To: Bill Fumerola Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/7813; it has been noted by GNATS. From: Bill Fumerola To: freebsd-gnats-submit@freebsd.org Cc: kduzlo@enteract.com Subject: re: ports/7813 Date: Thu, 12 Nov 1998 17:33:36 -0500 (EST) I tried updating the news/nn port as you asked but it fails in the install process (it wants the user to hardcode a domain into a header file). Would you or someone else like to either write some hack to make this work? thanks, - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 14:43:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA03691 for freebsd-ports-outgoing; Thu, 12 Nov 1998 14:43: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 OAA03496; Thu, 12 Nov 1998 14:42:38 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA29989; Thu, 12 Nov 1998 14:42:42 -0800 (PST) Date: Thu, 12 Nov 1998 14:42:42 -0800 (PST) Message-Id: <199811122242.OAA29989@freefall.freebsd.org> To: woju@freebsd.ntu.edu.tw, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8305 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: queso - determin remote OS State-Changed-From-To: open-closed State-Changed-By: billf State-Changed-When: Thu Nov 12 14:41:54 PST 1998 State-Changed-Why: obrien already imported this port. the whom line gives you credit so this port seems to be obsolete. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 14:45:22 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA03986 for freebsd-ports-outgoing; Thu, 12 Nov 1998 14:45: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 OAA03968; Thu, 12 Nov 1998 14:45:06 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA00239; Thu, 12 Nov 1998 14:45:10 -0800 (PST) Date: Thu, 12 Nov 1998 14:45:10 -0800 (PST) Message-Id: <199811122245.OAA00239@freefall.freebsd.org> To: rtaylor@csolve.net, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/8285 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port (Eggdrop 1.3.21) State-Changed-From-To: open-suspended State-Changed-By: billf State-Changed-When: Thu Nov 12 14:42:57 PST 1998 State-Changed-Why: I will oversee any changes made. Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Thu Nov 12 14:42:57 PST 1998 Responsible-Changed-Why: I was formerly a developer for eggdrop. I don't see this implmentation of a port working for the general public without some sort of 'skel' style install or something. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 14:52:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA04897 for freebsd-ports-outgoing; Thu, 12 Nov 1998 14:52:49 -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 OAA04884; Thu, 12 Nov 1998 14:52:38 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA00599; Thu, 12 Nov 1998 14:52:41 -0800 (PST) Date: Thu, 12 Nov 1998 14:52:41 -0800 (PST) Message-Id: <199811122252.OAA00599@freefall.freebsd.org> To: nbm@rucus.ru.ac.za, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7700 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: Apache 1.3.1 with ssl State-Changed-From-To: open-closed State-Changed-By: billf State-Changed-When: Thu Nov 12 14:52:15 PST 1998 State-Changed-Why: This port already exists. Thanks anyways! :> To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 14:58:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA05665 for freebsd-ports-outgoing; Thu, 12 Nov 1998 14:58:50 -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 OAA05650; Thu, 12 Nov 1998 14:58:42 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA01252; Thu, 12 Nov 1998 14:58:46 -0800 (PST) Date: Thu, 12 Nov 1998 14:58:46 -0800 (PST) Message-Id: <199811122258.OAA01252@freefall.freebsd.org> To: candy@kgc.co.jp, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8614 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MASTER_SITES moved State-Changed-From-To: open-closed State-Changed-By: billf State-Changed-When: Thu Nov 12 14:58:17 PST 1998 State-Changed-Why: Updated in rev1.6 Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 15:02:40 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA06228 for freebsd-ports-outgoing; Thu, 12 Nov 1998 15:02:40 -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 PAA06220; Thu, 12 Nov 1998 15:02:37 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA01591; Thu, 12 Nov 1998 15:02:41 -0800 (PST) Date: Thu, 12 Nov 1998 15:02:41 -0800 (PST) Message-Id: <199811122302.PAA01591@freefall.freebsd.org> To: candy@kgc.co.jp, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8615 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MASTER_SITES moved State-Changed-From-To: open-closed State-Changed-By: billf State-Changed-When: Thu Nov 12 15:00:04 PST 1998 State-Changed-Why: Duplicate of PR#8614 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 15:07:56 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA06989 for freebsd-ports-outgoing; Thu, 12 Nov 1998 15:07:56 -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 PAA06967; Thu, 12 Nov 1998 15:07:48 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA02278; Thu, 12 Nov 1998 15:07:52 -0800 (PST) Date: Thu, 12 Nov 1998 15:07:52 -0800 (PST) Message-Id: <199811122307.PAA02278@freefall.freebsd.org> To: candy@kgc.co.jp, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8617 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: MASTER_SITES moved State-Changed-From-To: open-closed State-Changed-By: billf State-Changed-When: Thu Nov 12 15:07:24 PST 1998 State-Changed-Why: Updated in rev1.12 Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Thu Nov 12 16:33:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id QAA20949 for freebsd-ports-outgoing; Thu, 12 Nov 1998 16:33:04 -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 QAA20932 for ; Thu, 12 Nov 1998 16:32:55 -0800 (PST) (envelope-from doconnor@gsoft.com.au) Received: from cain.gsoft.com.au (cain [203.38.152.97]) by cain.gsoft.com.au (8.8.8/8.8.8) with ESMTP id LAA21873; Fri, 13 Nov 1998 11:02:15 +1030 (CST) (envelope-from doconnor@gsoft.com.au) Message-ID: X-Mailer: XFMail 1.3 [p0] on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <199811111330.FAA14966@freefall.freebsd.org> Date: Fri, 13 Nov 1998 11:02:15 +1030 (CST) From: "Daniel O'Connor" To: Josh Gilliam Subject: Re: ports/8648: net/dict port is broken Cc: freebsd-ports@FreeBSD.ORG Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On 11-Nov-98 Josh Gilliam wrote: > I don't see how this fixed your problem. patch-aa comments > out the hard-coded prefix and allows --prefix to do it's job. > Builds fine here (current) for both aout and elf. Hmm.. maybe I was on drugs, 'cause it works now --- 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 Thu Nov 12 17:18:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA26576 for freebsd-ports-outgoing; Thu, 12 Nov 1998 17:18:16 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from 207.240.250.178 (04-178.015.popsite.net [207.240.250.178]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id RAA26531 for ; Thu, 12 Nov 1998 17:18:10 -0800 (PST) (envelope-from dizzy_Blond@mindless.com) Date: Thu, 12 Nov 1998 17:18:10 -0800 (PST) Message-Id: <199811130118.RAA26531@hub.freebsd.org> From: dizzy_Blond@mindless.com To: ports@FreeBSD.ORG Subject: Welcome -XROU X-Reply-To: dizzy_blond@mindles.com Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello ports You are receiving this email because your name appeared on a list of Business opportunity seekers I purchased or we have had correspondence in the past. In any event to be removed from the list reply with "remove" in the subject of the message if you do not wish to receive further messages from me. Now on to the good stuff! Banner Exchange goes MLM! That's right. Advertise your site and get paid for referrals. Click throughs are MUCH better than the other banner exchanges we have used and we are building additional residual income FAST! Bring your downline for a fast start! http://bighits.net/?dizzy To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 07:30:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA20552 for freebsd-ports-outgoing; Fri, 13 Nov 1998 07:30:50 -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 HAA20375; Fri, 13 Nov 1998 07:29:03 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA25159; Fri, 13 Nov 1998 07:29:06 -0800 (PST) Date: Fri, 13 Nov 1998 07:29:06 -0800 (PST) Message-Id: <199811131529.HAA25159@freefall.freebsd.org> To: frankch@waru.life.nthu.edu.tw, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: master site changes for biology/kinemage State-Changed-From-To: open-closed State-Changed-By: billf State-Changed-When: Fri Nov 13 07:28:40 PST 1998 State-Changed-Why: Updated in rev1.4 of Makefile Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 07:41:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA21311 for freebsd-ports-outgoing; Fri, 13 Nov 1998 07:41:23 -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 HAA21300; Fri, 13 Nov 1998 07:41:16 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA25887; Fri, 13 Nov 1998 07:41:19 -0800 (PST) Date: Fri, 13 Nov 1998 07:41:19 -0800 (PST) Message-Id: <199811131541.HAA25887@freefall.freebsd.org> To: Yoshio.Mita@isen.fr, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/6838 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Enable lj4dith driver by default State-Changed-From-To: open-closed State-Changed-By: billf State-Changed-When: Fri Nov 13 07:40:53 PST 1998 State-Changed-Why: Committed in rev1.9 Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 07:51:47 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id HAA22277 for freebsd-ports-outgoing; Fri, 13 Nov 1998 07:51:47 -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 HAA22267; Fri, 13 Nov 1998 07:51:32 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id HAA26503; Fri, 13 Nov 1998 07:51:36 -0800 (PST) Date: Fri, 13 Nov 1998 07:51:36 -0800 (PST) Message-Id: <199811131551.HAA26503@freefall.freebsd.org> To: stephane@lituus.fr, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/7681 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: TkDesk 1.0 is not Y2K compliant State-Changed-From-To: open-analyzed State-Changed-By: billf State-Changed-When: Fri Nov 13 07:50:08 PST 1998 State-Changed-Why: I have contacted the MAINTAINER and am waiting for a reply. Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: billf Responsible-Changed-When: Fri Nov 13 07:50:08 PST 1998 Responsible-Changed-Why: I will update this port when the change comes. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 08:02:11 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA23414 for freebsd-ports-outgoing; Fri, 13 Nov 1998 08:02:11 -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 IAA23316; Fri, 13 Nov 1998 08:01:57 -0800 (PST) (envelope-from billf@FreeBSD.org) From: Bill Fumerola Received: (from billf@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id IAA27100; Fri, 13 Nov 1998 08:02:01 -0800 (PST) Date: Fri, 13 Nov 1998 08:02:01 -0800 (PST) Message-Id: <199811131602.IAA27100@freefall.freebsd.org> To: cgaylord@vt.edu, billf@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8272 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: INSTALL not executable in ports/mail/cyrus State-Changed-From-To: open-closed State-Changed-By: billf State-Changed-When: Fri Nov 13 08:00:43 PST 1998 State-Changed-Why: This seems to have been fixed by stb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 08:13:10 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA24922 for freebsd-ports-outgoing; Fri, 13 Nov 1998 08:13:10 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA24912; Fri, 13 Nov 1998 08:13:07 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id KAA27967; Fri, 13 Nov 1998 10:12:45 -0600 (CST) Date: Fri, 13 Nov 1998 10:12:45 -0600 (CST) From: Steve Price To: Bill Fumerola cc: stephane@lituus.fr, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7681 In-Reply-To: <199811131551.HAA26503@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org You can close this one. I've already upgraded TkDesk to version 1.1 which has this fixed. -steve On Fri, 13 Nov 1998, Bill Fumerola wrote: # Synopsis: TkDesk 1.0 is not Y2K compliant # # State-Changed-From-To: open-analyzed # State-Changed-By: billf # State-Changed-When: Fri Nov 13 07:50:08 PST 1998 # State-Changed-Why: # I have contacted the MAINTAINER and am waiting for a reply. # # # Responsible-Changed-From-To: freebsd-ports->billf # Responsible-Changed-By: billf # Responsible-Changed-When: Fri Nov 13 07:50:08 PST 1998 # Responsible-Changed-Why: # I will update this port when the change comes. # # 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 Fri Nov 13 09:06:19 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA02561 for freebsd-ports-outgoing; Fri, 13 Nov 1998 09:06:19 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from jade.chc-chimes.com (jade.chc-chimes.com [206.67.97.83]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA02553; Fri, 13 Nov 1998 09:06:14 -0800 (PST) (envelope-from billf@jade.chc-chimes.com) Received: from localhost (billf@localhost) by jade.chc-chimes.com (8.8.8/8.8.8) with SMTP id MAA04274; Fri, 13 Nov 1998 12:05:40 -0500 (EST) (envelope-from billf@jade.chc-chimes.com) Date: Fri, 13 Nov 1998 12:05:40 -0500 (EST) From: Bill Fumerola To: Steve Price cc: Bill Fumerola , stephane@lituus.fr, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7681 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 Thanks. On Fri, 13 Nov 1998, Steve Price wrote: > > You can close this one. I've already upgraded TkDesk to > version 1.1 which has this fixed. - bill fumerola - billf@chc-chimes.com - BF1560 - computer horizons corp - - ph:(800) 252-2421 - bfumerol@computerhorizons.com - billf@FreeBSD.org - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 10:54:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA14618 for freebsd-ports-outgoing; Fri, 13 Nov 1998 10:54:37 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from symbion.srrc.usda.gov (symbion.srrc.usda.gov [199.133.86.40]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA14611 for ; Fri, 13 Nov 1998 10:54:32 -0800 (PST) (envelope-from glenn@nola.srrc.usda.gov) Received: from symbion.srrc.usda.gov (localhost.srrc.usda.gov [127.0.0.1]) by symbion.srrc.usda.gov (8.9.1/8.9.1) with ESMTP id MAA11608 for ; Fri, 13 Nov 1998 12:54:08 -0600 (CST) (envelope-from glenn@symbion.srrc.usda.gov) Message-Id: <199811131854.MAA11608@symbion.srrc.usda.gov> X-Mailer: exmh version 2.0.2 2/24/98 To: ports@FreeBSD.ORG From: Glenn Johnson Subject: close PR's Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 13 Nov 1998 12:54:07 -0600 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Could someone close the following PR's that I submitted: ports/7854 ports/8223 I will be submitting updates for both of these in the near future. Thanks. -- Glenn Johnson Technician USDA, ARS, SRRC New Orleans, LA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 12:12:23 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA23412 for freebsd-ports-outgoing; Fri, 13 Nov 1998 12:12:23 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from dirty.research.bell-labs.com (dirty.research.bell-labs.com [204.178.16.6]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id MAA23406 for ; Fri, 13 Nov 1998 12:12:21 -0800 (PST) (envelope-from arw@dnrc.bell-labs.com) Received: from chair.dnrc.bell-labs.com ([135.180.161.201]) by dirty; Fri Nov 13 15:11:34 EST 1998 Received: from dnrc.bell-labs.com (ribes [135.180.180.106]) by chair.dnrc.bell-labs.com (8.8.8/8.8.8) with ESMTP id PAA21180 for ; Fri, 13 Nov 1998 15:11:34 -0500 (EST) Message-ID: <364C9275.2F0CB97B@dnrc.bell-labs.com> Date: Fri, 13 Nov 1998 15:11:33 -0500 From: Aaron Watters Organization: organization? me? X-Mailer: Mozilla 4.05 [en] (WinNT; U) MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: gadfly doesn't require tcl/tk Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In http://www.freebsd.org/ports/databases.html gadfly doesn't require tcl/tk. Please adjust the entry please. -- Aaron Watters To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 13:46:51 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA05730 for freebsd-ports-outgoing; Fri, 13 Nov 1998 13:46:51 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.HiWAAY.net (fly.HiWAAY.net [208.147.154.56]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA05716 for ; Fri, 13 Nov 1998 13:46:46 -0800 (PST) (envelope-from sprice@hiwaay.net) Received: from localhost (sprice@localhost) by mail.HiWAAY.net (8.9.0/8.9.0) with SMTP id PAA31117; Fri, 13 Nov 1998 15:46:23 -0600 (CST) Date: Fri, 13 Nov 1998 15:46:23 -0600 (CST) From: Steve Price To: Aaron Watters cc: ports@FreeBSD.ORG Subject: Re: gadfly doesn't require tcl/tk In-Reply-To: <364C9275.2F0CB97B@dnrc.bell-labs.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 You're right gadfly doesn't require tcl/tk but our port of python does for some reason and since this port depends on python it indirectly depends on tcl/tk. :) -steve On Fri, 13 Nov 1998, Aaron Watters wrote: # In # # http://www.freebsd.org/ports/databases.html # # gadfly doesn't require tcl/tk. Please adjust # the entry please. # # -- Aaron Watters # # 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 Fri Nov 13 13:49:59 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA06371 for freebsd-ports-outgoing; Fri, 13 Nov 1998 13:49:59 -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 NAA06363 for ; Fri, 13 Nov 1998 13:49:58 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA13178; Fri, 13 Nov 1998 13:50:01 -0800 (PST) Date: Fri, 13 Nov 1998 13:50:01 -0800 (PST) Message-Id: <199811132150.NAA13178@freefall.freebsd.org> To: freebsd-ports@FreeBSD.ORG From: Jacques Vidrine Subject: Re: ports/8609: eklogin service (kerberos klogind) fails to print DES msg Reply-To: Jacques Vidrine Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/8609; it has been noted by GNATS. From: Jacques Vidrine To: freebsd-gnats-submit@freebsd.org, cschuber@uumail.gov.bc.ca, dima@freebsd.org Cc: Subject: Re: ports/8609: eklogin service (kerberos klogind) fails to print DES msg Date: Fri, 13 Nov 1998 15:49:13 -0600 The same behavior is seen under -CURRENT. The patch in question defines HAVE_OPENPTY. This causes the Kerberos utility library to use openpty rather than the code built into Kerberos (pty_getpty) for allocating a master pty. I've determined that the difference that tickles this bug between the openpty code and the pty_getpty code is that openpty opens the slave as well as the master, while pty_getpty just opens the master. I was able to recreate the bug by undefining HAVE_OPENPTY (so that the built-in pty_getpty code would be used), but adding a gratuitous open/close of the slave pty in krlogind.c. i.e. something like: if ((retval = pty_getpty(&p,line, sizeof(line)))) { com_err(progname, retval, "while getting master pty"); exit(2); } + { + int dummy = open(line, O_RDWR, 0); + if (dummy) + close(dummy); + } So I am theorizing that some state change caused by the open and/or close of the tty is occurring that is tickling some bug. Unfortunately, I'm not familiar enough with the terminal drivers to understand what. -- Jacques Vidrine / n@nectar.com / nectar@FreeBSD.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 13:54:06 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA07227 for freebsd-ports-outgoing; Fri, 13 Nov 1998 13:54:06 -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 NAA07098; Fri, 13 Nov 1998 13:53:55 -0800 (PST) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id NAA13502; Fri, 13 Nov 1998 13:53:58 -0800 (PST) Date: Fri, 13 Nov 1998 13:53:58 -0800 (PST) Message-Id: <199811132153.NAA13502@freefall.freebsd.org> To: cschuber@uumail.gov.bc.ca, nectar@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, nectar@FreeBSD.ORG Subject: Re: ports/8609 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: eklogin service (kerberos klogind) fails to print DES msg State-Changed-From-To: open-analyzed State-Changed-By: nectar State-Changed-When: Fri Nov 13 13:52:41 PST 1998 State-Changed-Why: A preliminary evaluation of the problem is available. Responsible-Changed-From-To: freebsd-ports->nectar Responsible-Changed-By: nectar Responsible-Changed-When: Fri Nov 13 13:52:41 PST 1998 Responsible-Changed-Why: krb5 is my port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 14:01:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA08410 for freebsd-ports-outgoing; Fri, 13 Nov 1998 14:01:35 -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 OAA08403; Fri, 13 Nov 1998 14:01:30 -0800 (PST) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id OAA13915; Fri, 13 Nov 1998 14:01:33 -0800 (PST) Date: Fri, 13 Nov 1998 14:01:33 -0800 (PST) Message-Id: <199811132201.OAA13915@freefall.freebsd.org> To: cschuber@uumail.gov.bc.ca, nectar@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, nectar@FreeBSD.ORG Subject: Re: ports/8601 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: krb5 port krb5kdc bus errror State-Changed-From-To: open-feedback State-Changed-By: nectar State-Changed-When: Fri Nov 13 13:59:58 PST 1998 State-Changed-Why: The reported problem cannot be reproduced on 2.2.7-RELEASE nor 3.0-CURRENT. I have asked the submitter to make sure port files are up to date and to try again. Responsible-Changed-From-To: freebsd-ports->nectar Responsible-Changed-By: nectar Responsible-Changed-When: Fri Nov 13 13:59:58 PST 1998 Responsible-Changed-Why: krb5 is my port. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 15:09:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA17063 for freebsd-ports-outgoing; Fri, 13 Nov 1998 15:09:02 -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 PAA17042; Fri, 13 Nov 1998 15:08:47 -0800 (PST) (envelope-from nectar@FreeBSD.org) From: Jacques Vidrine Received: (from nectar@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id PAA16261; Fri, 13 Nov 1998 15:08:50 -0800 (PST) Date: Fri, 13 Nov 1998 15:08:50 -0800 (PST) Message-Id: <199811132308.PAA16261@freefall.freebsd.org> To: ripley@beng.org, nectar@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8563 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: gcc breaks on source file State-Changed-From-To: open-feedback State-Changed-By: nectar State-Changed-When: Fri Nov 13 15:06:48 PST 1998 State-Changed-Why: Looks like a pilot error. Read login.conf(5), and the documentation for your shell (look for limit or ulimit). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 17:22:12 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA01926 for freebsd-ports-outgoing; Fri, 13 Nov 1998 17:22:12 -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 RAA01920; Fri, 13 Nov 1998 17:22:10 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA21284; Fri, 13 Nov 1998 17:22:13 -0800 (PST) Date: Fri, 13 Nov 1998 17:22:13 -0800 (PST) Message-Id: <199811140122.RAA21284@freefall.freebsd.org> To: gljohns@bellsouth.net, jkoshy@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/7854 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: New port: Tinker molecular modeling tools (Replacement of ports/7773) State-Changed-From-To: open-closed State-Changed-By: jkoshy State-Changed-When: Fri Nov 13 17:21:39 PST 1998 State-Changed-Why: Per submitters request. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Fri Nov 13 17:24:15 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA02313 for freebsd-ports-outgoing; Fri, 13 Nov 1998 17:24: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 RAA02293; Fri, 13 Nov 1998 17:24:12 -0800 (PST) (envelope-from jkoshy@FreeBSD.org) From: Joseph Koshy Received: (from jkoshy@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id RAA21464; Fri, 13 Nov 1998 17:24:15 -0800 (PST) Date: Fri, 13 Nov 1998 17:24:15 -0800 (PST) Message-Id: <199811140124.RAA21464@freefall.freebsd.org> To: gljohns@bellsouth.net, jkoshy@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8223 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Library of Fortran intrinsics not in f2c State-Changed-From-To: open-closed State-Changed-By: jkoshy State-Changed-When: Fri Nov 13 17:23:52 PST 1998 State-Changed-Why: Per submitters request. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 14 05:34:46 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA14324 for freebsd-ports-outgoing; Sat, 14 Nov 1998 05:34:46 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mail.mishkei.org.il (host3-64.mishkei.org.il [62.0.64.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA14305 for ; Sat, 14 Nov 1998 05:34:33 -0800 (PST) (envelope-from rom_glsa@ein-hashofet.co.il) Received: from ein-hashofet.co.il (host36-68.mishkei.org.il [62.0.68.36]) by mail.mishkei.org.il (8.8.5/8.8.5) with ESMTP id QAA28010 for ; Sat, 14 Nov 1998 16:33:22 +0200 Message-ID: <364DA2DA.D7545CD2@ein-hashofet.co.il> Date: Sat, 14 Nov 1998 15:33:46 +0000 From: Gilad Rom X-Mailer: Mozilla 4.05 [en] (X11; I; FreeBSD 3.0-CURRENT i386) MIME-Version: 1.0 To: ports@FreeBSD.ORG Subject: libglib wierdness. Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hello, Ive noticed that the glib port installs a libglib11.so.0 for version 1.1.4.. This makes it a little hard to determine the version number by using a LIB_DEPENDS line in the Makefile. I have composed a new port, x11-toolkits/gtkstep11, which is basically the same as the gtk11 port, but it installs a slightly modified gtk1.1.3. Ive submitted the port to EE, and he claimed it wouldnt compile, yet it did fine on my box. Eventually, it turned out that his glib version is 1.1.2, but there is no way to find this out, since the gnu configure script seems to misbehave when an older version of glib-config is present. Ive asked him to try out a 'make configure' in the gtk11 port, and he reported the same results. How about renaming the libglib filename to make it a little easier? Thanks, Gilad. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 14 08:33:29 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA24465 for freebsd-ports-outgoing; Sat, 14 Nov 1998 08:33:29 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from toplink4.toplink.net (toplink4.toplink.net [195.2.171.50]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA24460 for ; Sat, 14 Nov 1998 08:33:25 -0800 (PST) (envelope-from danielh@privat.toplink.de) Received: from myname.my.domain (dip-017.hbg.dinx.de [195.2.169.17]) by toplink4.toplink.net (8.9.1/8.9.1) with SMTP id RAA18422; Sat, 14 Nov 1998 17:38:09 +0100 (CET) Message-ID: <364DBEBD.41C67EA6@privat.toplink.de> Date: Sat, 14 Nov 1998 18:32:45 +0100 From: Daniel Haischt Organization: AbyssSoft X-Mailer: Mozilla 3.04 (X11; I; FreeBSD 2.2.7-RELEASE i386) MIME-Version: 1.0 To: obrien@NUXI.com CC: ports@FreeBSD.ORG Subject: FreeBSD Port: ddd-3.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org HIYA I've tryed to install the ddd port but got unfortunatly the following error: Line01: WhatNext CB.C:65: Undefined Symbol '_XmCreate Information Dialog' referenced from text segment Line02: gmake [1]: *** [ddd-3.0-i386-unknown-freebsd2.2.7] Error1 Line03: gmake [1]: leaving directory '/downloads/ddd/work/ddd-3.0/ddd' Line04: gmake: *** [all] Error 1 Line05: *** Error code 2 Line06: Stop. Line07: *** Error code 1 Line08: Stop. Line09: *** Error code1 Line10: Stop. ============ End off err ============ I've installed the following software/components: - gmake-3.77 - lesstif (latest version) - libstdc++ (latest version) Any help would be appreciated. Thanx!!! Best Regards Daniel Haischt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 14 09:01:37 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA27112 for freebsd-ports-outgoing; Sat, 14 Nov 1998 09:01:37 -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 JAA27100; Sat, 14 Nov 1998 09:01:31 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08666; Sat, 14 Nov 1998 09:01:34 -0800 (PST) Date: Sat, 14 Nov 1998 09:01:34 -0800 (PST) Message-Id: <199811141701.JAA08666@freefall.freebsd.org> To: shige@kuis.kyoto-u.ac.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8647 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: japanese/lynx State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Sat Nov 14 09:01:19 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 Sat Nov 14 09:02:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA27268 for freebsd-ports-outgoing; Sat, 14 Nov 1998 09:02:04 -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 JAA27216; Sat, 14 Nov 1998 09:02:00 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA08739; Sat, 14 Nov 1998 09:02:04 -0800 (PST) Date: Sat, 14 Nov 1998 09:02:04 -0800 (PST) Message-Id: <199811141702.JAA08739@freefall.freebsd.org> To: shige@kuis.kyoto-u.ac.jp, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8643 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Update port: japanese/lynx-current State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Sat Nov 14 09:01:47 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 Sat Nov 14 09:04:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA27593 for freebsd-ports-outgoing; Sat, 14 Nov 1998 09:04:25 -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 JAA27579; Sat, 14 Nov 1998 09:04:22 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA10084; Sat, 14 Nov 1998 09:04:26 -0800 (PST) Date: Sat, 14 Nov 1998 09:04:26 -0800 (PST) Message-Id: <199811141704.JAA10084@freefall.freebsd.org> To: kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG, billf@FreeBSD.ORG Subject: Re: ports/8557 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: update to ports/7874 Responsible-Changed-From-To: freebsd-ports->billf Responsible-Changed-By: kuriyama Responsible-Changed-When: Sat Nov 14 09:04:03 PST 1998 Responsible-Changed-Why: Over to maintainer. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 14 10:19:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA04329 for freebsd-ports-outgoing; Sat, 14 Nov 1998 10:19:50 -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 KAA04314; Sat, 14 Nov 1998 10:19:43 -0800 (PST) (envelope-from kuriyama@FreeBSD.org) From: Jun Kuriyama Received: (from kuriyama@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA15322; Sat, 14 Nov 1998 10:19:47 -0800 (PST) Date: Sat, 14 Nov 1998 10:19:47 -0800 (PST) Message-Id: <199811141819.KAA15322@freefall.freebsd.org> To: ichiro@ichiro.org, kuriyama@FreeBSD.ORG, freebsd-ports@FreeBSD.ORG Subject: Re: ports/8569 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Synopsis: Fixed port: japanese/postgresql State-Changed-From-To: open-closed State-Changed-By: kuriyama State-Changed-When: Sat Nov 14 10:19:25 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 Nov 14 10:49:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA06330 for freebsd-ports-outgoing; Sat, 14 Nov 1998 10:49: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 KAA06321 for ; Sat, 14 Nov 1998 10:49:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id KAA16137; Sat, 14 Nov 1998 10:50:01 -0800 (PST) Received: from newsfeed.gamma.ru (newsfeed.gamma.ru [194.186.254.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id KAA05595 for ; Sat, 14 Nov 1998 10:40:22 -0800 (PST) (envelope-from ivt@newsfeed.gamma.ru) Received: (from ivt@localhost) by newsfeed.gamma.ru (8.9.1/8.9.1) id VAA05335; Sat, 14 Nov 1998 21:39:51 +0300 (MSK) (envelope-from ivt) Message-Id: <199811141839.VAA05335@newsfeed.gamma.ru> Date: Sat, 14 Nov 1998 21:39:51 +0300 (MSK) From: ivt@gamma.ru Reply-To: ivt@gamma.ru To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8686: amanda Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8686 >Category: ports >Synopsis: elf amanda >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Nov 14 10:50:00 PST 1998 >Last-Modified: >Originator: Igor Timkin >Organization: Gamma Ltd., Moscow, Russia >Release: FreeBSD 3.0-RELEASE i386 >Environment: FreeBSD newsfeed.gamma.ru 3.0-RELEASE FreeBSD 3.0-RELEASE #2: Wed Nov 11 20:42:42 MSK 1998 root@:/usr/src/sys/compile/NEWSFEED i386 >Description: Elf verison of amanda-2.3.0 (and amanda-2.4.1) from packages-3.0 and packages-current is broken: Nov 14 21:28:48 newsfeed inetd[146]: /usr/local/libexec/amanda/amandad[4775]: ex it status 0xb Nov 14 21:28:48 newsfeed /kernel: pid 4776 (amandad), uid 70: exited on signal 1 1 Aout version of amanda-2.3.0 is O.K. >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 Sat Nov 14 15:35:50 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id PAA26736 for freebsd-ports-outgoing; Sat, 14 Nov 1998 15:35:50 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from baerenklau.de.freebsd.org (baerenklau.de.freebsd.org [195.185.195.14]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id PAA26724 for ; Sat, 14 Nov 1998 15:35:47 -0800 (PST) (envelope-from wosch@panke.de.freebsd.org) Received: (from uucp@localhost) by baerenklau.de.freebsd.org (8.8.8/8.8.8) with UUCP id AAA05947; Sun, 15 Nov 1998 00:35:23 +0100 (CET) (envelope-from wosch@panke.de.freebsd.org) Received: (from wosch@localhost) by campa.panke.de.freebsd.org (8.8.8/8.8.8) id SAA27224; Sat, 14 Nov 1998 18:30:31 +0100 (MET) (envelope-from wosch) Date: Sat, 14 Nov 1998 18:30:31 +0100 (MET) Message-Id: <199811141730.SAA27224@campa.panke.de.freebsd.org> From: wosch@FreeBSD.ORG To: ports@FreeBSD.ORG Subject: New ports added/updated last two weeks Reply-to: ports@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Introduction ------------ The FreeBSD Ports Collection offers a simple way for users and administrators to install applications. Each "port" listed here contains any patches necessary to make the original application source code compile and run on FreeBSD. Installing an application is as simple as downloading the port, unpacking it and typing make in the port directory. The Makefile automatically fetches the application source code, either from a local disk or via ftp, unpacks it on your system, applies the patches, and compiles. If all goes well, simply type make install to install the application. For more information about using ports, see the ports collection http://www.freebsd.org/handbook/ports.html and http://www.freebsd.org/ports/ There are currently 1828 ports in the FreeBSD Ports Collection. New ports added last two weeks ------------------------------ Category databases (http://www.freebsd.org/ports/databases.html) ================================================================== gadfly-1.0 An SQL database written in Python Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.2, python-1.5.1, tcl-8.0.2, tk-8.0.2 Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== portcheckout-1.0 checkout ports and all depending ports Maintained by: wosch@FreeBSD.org Requires: perl-5.00502 Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== py-imaging-0.3b2 The Python Imaging Library Maintained by: tg@FreeBSD.ORG Also listed in: python Requires: XFree86-3.3.2, jpeg-6b, python-1.5.1, tcl-8.0.2, tk-8.0.2 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-p5-mkres-0.6 Create resources for tgif, vfontcap, .., for Japanese TrueType fonts Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: perl5 Requires: freetype-1.1, ja-jcode.pl-2.6, ja-p5-jcode.pl-2.6, p5-FreeType-19981005, p5-FreeTypeWrapper-1.19, p5-mkttfdir-1.17, perl-5.00502 ja-pkfonts118-1.0 Japanese PK fonts, for ghostscripts, xdvi and so on. Maintained by: ports@FreeBSD.ORG Also listed in: print Requires: lha-1.14c ja-pkfonts240-1.0 Japanese PK fonts, for ghostscripts, xdvi and so on. Maintained by: ports@FreeBSD.ORG Also listed in: print Requires: lha-1.14c ja-pkfonts300-1.0 Japanese PK fonts, for ghostscripts, xdvi and so on. Maintained by: ports@FreeBSD.ORG Also listed in: print Requires: lha-1.14c ja-pkfonts400-1.0 Japanese PK fonts, for ghostscripts, xdvi and so on. Maintained by: ports@FreeBSD.ORG Also listed in: print Requires: lha-1.14c ja-rxvt-2.4.9 An xterm replacement that supports pixmap background and Japanese Maintained by: honda@kashio.info.mie-u.ac.jp Also listed in: x11 Requires: XFree86-3.3.2, xpm-3.4k ja-skkfep-0.85 SKK-like Kana-to-Kanji FrontEnd Processor Maintained by: azuki@azkey.org Requires: ja-skk-9.6 Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== nawk-98.10.20 Brian Kernighan's pattern scanning and processing language Maintained by: josh@quick.net Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== mew-emacs20-1.93 Message interface to Emacs Window(for emacs20) Maintained by: kiri@kiri.toba-cmt.ac.jp Requires: emacs-20.3, gmake-3.77, im-100, mew-common-1.93, perl-5.00502 mew-xemacs-mule-1.93 Message interface to Emacs Window(for xemacs-mule) Maintained by: kiri@kiri.toba-cmt.ac.jp Requires: XFree86-3.3.2, autoconf-2.12, faces-1.6.1, im-100, jpeg-6b, mew-common-1.93, perl-5.00502, png-1.0.2, xemacs-mule-20.4, xpm-3.4k mew-xemacs20-1.93 Message interface to Emacs Window(for xemacs20) Maintained by: kiri@kiri.toba-cmt.ac.jp Requires: XFree86-3.3.2, gmake-3.77, im-100, jpeg-6b, mew-common-1.93, perl-5.00502, png-1.0.2, xemacs-20.4, xpm-3.4k Category misc (http://www.freebsd.org/ports/misc.html) ================================================================== rc5des416 distributed.net rc5des brute force client Maintained by: dbaker@distributed.net Category net (http://www.freebsd.org/ports/net.html) ================================================================== radiusclient-0.3 client library and basic utilities for Radius authenticated login Maintained by: maurice@serc.rmit.edu.au Requires: gmake-3.77 Category print (http://www.freebsd.org/ports/print.html) ================================================================== p5-FreeType-19981005 perl5 Extention for FreeType library Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: perl5 Requires: freetype-1.1, gmake-3.77, ja-jcode.pl-2.6, ja-p5-jcode.pl-2.6, perl-5.00502 p5-FreeTypeWrapper-1.19 A simple wrapper for FreeType.xs Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: perl5 Requires: freetype-1.1, ja-jcode.pl-2.6, ja-p5-jcode.pl-2.6, p5-FreeType-19981005, perl-5.00502 pkfonts118-1.0 English PK fonts, for ghostscripts, xdvi and so on Maintained by: ports@FreeBSD.ORG pkfonts240-1.0 English PK fonts, for ghostscripts, xdvi and so on Maintained by: ports@FreeBSD.ORG pkfonts300-1.0 English PK fonts, for ghostscripts, xdvi and so on Maintained by: ports@FreeBSD.ORG pkfonts360-1.0 English PK fonts, for ghostscripts, xdvi and so on Maintained by: ports@FreeBSD.ORG pkfonts400-1.0 English PK fonts, for ghostscripts, xdvi and so on Maintained by: ports@FreeBSD.ORG pkfonts600-1.0 English PK fonts, for ghostscripts, xdvi and so on Maintained by: ports@FreeBSD.ORG teTeX-0.9-981102 TeX distribution for UNIX compatible systems Maintained by: br@netland.inka.de Requires: gmake-3.77, libwww-5.2, png-1.0.2 Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== wmavgload-0.6.1 Another WindowMaker load gauge Maintained by: kushn@mail.kar.net Requires: XFree86-3.3.2, xpm-3.4k Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== mswordview-0.4.9 MS-WORD to HTML converter Maintained by: sumikawa@kame.net Category www (http://www.freebsd.org/ports/www.html) ================================================================== apache_fp-1.2.6 The extremely popular Apache http server w/MS FrontPage Extentions. Maintained by: hetzels@westbend.net apache_fp-1.3.3 The extremely popular Apache http server w/MS FrontPage Extentions. Maintained by: hetzels@westbend.net tidy-0.1.98.9 Fixes and tidies up HTML files. Maintained by: ports@FreeBSD.ORG webglimpse-1.6 WWW interface to Glimpse search engine. Maintained by: ache@freebsd.org Also listed in: textproc Requires: apache-1.3.3, glimpse-4.1, perl-5.00502 Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== gtkstep-1.0.6 A set of patches to make GTK+ look like the NeXTSTEP(tm) interface. Maintained by: rom_glsa@ein-hashofet.co.il Requires: XFree86-3.3.2 Category x11 (http://www.freebsd.org/ports/x11.html) ================================================================== p5-mkttfdir-1.17 make an index of TrueType font files for X-TrueType server Maintained by: taoka@infonets.hiroshima-u.ac.jp Also listed in: perl5 Requires: freetype-1.1, ja-jcode.pl-2.6, ja-p5-jcode.pl-2.6, p5-FreeType-19981005, p5-FreeTypeWrapper-1.19, perl-5.00502 Updated ports last two weeks ----------------------------------- Category astro (http://www.freebsd.org/ports/astro.html) ================================================================== ssystem-1.4 OpenGL Solar System simulator for X Window System. Maintained by: andy@icc.surw.chel.su Requires: Mesa-3.0, XFree86-3.3.2, jpeg-6b Category audio (http://www.freebsd.org/ports/audio.html) ================================================================== replay-0.57a Another GTK-base mp3 player. Maintained by: Nakai@technologist.com Requires: XFree86-3.3.2, esound-0.2.4, glib-1.1.4, gmake-3.77, gtk-1.1.3 Category deskutils (http://www.freebsd.org/ports/deskutils.html) ================================================================== plan-1.7.2 An X/Motif schedule planner with calendar Maintained by: deischen@iworks.InterWorks.org xhime-1.51 Resident Himechan for X Window System Maintained by: flathill@flathill.gr.jp Requires: XFree86-3.3.2 Category devel (http://www.freebsd.org/ports/devel.html) ================================================================== gide-0.0.10 This is gIDE, a GTK based IDE for the C programming Language. Maintained by: rom_glsa@ein-hashofet.co.il Requires: XFree86-3.3.2, automake-1.3, glib-1.1.4, gmake-3.77, gtk-1.1.3, guile-1.3 sfio-98 The Safe/Fast I/O Library Maintained by: jraynard@freebsd.org xwpe-1.5.12a A Borland-like IDE programming environment. Maintained by: obrien@FreeBSD.org Requires: gmake-3.77 Category editors (http://www.freebsd.org/ports/editors.html) ================================================================== gxedit-1.16 A simple GTK+ editor. Maintained by: dom@myrddin.demon.co.uk Requires: XFree86-3.3.2, glib-1.1.4, gtk-1.1.3 Category emulators (http://www.freebsd.org/ports/emulators.html) ================================================================== bochs-981102b Intel 80386 CPU emulator. Maintained by: alex@FreeBSD.ORG linux_lib-2.6 These are the libraries necessary for linux compatibility. Maintained by: erich@FreeBSD.org Category graphics (http://www.freebsd.org/ports/graphics.html) ================================================================== ImageMagick-4.1.3 An X11 package for display and interactive manipulation of images. Maintained by: jseger@FreeBSD.org Also listed in: perl5 Requires: XFree86-3.3.2, freetype-1.1, ghostscript-5.10, gmake-3.77, jbigkit-1.0, jpeg-6b, mpeg_lib-1.2.1, netpbm-94.3.1, perl-5.00502, png-1.0.2, tiff-3.4, transfig-3.2, unzip-5.3.2, xpm-3.4k g2-0.30 an easy to use, portable and powerful 2D graphics library Maintained by: billf@chc-chimes.com Requires: gd-1.3 Category japanese (http://www.freebsd.org/ports/japanese.html) ================================================================== ja-kon2-16dot-0.3 Kanji On Console -- Display kanji characters on your own console. Maintained by: shige@kuis.kyoto-u.ac.jp ja-lynx-2.8.1 A terminal-based World-Wide Web Client with multi-byte modification. Maintained by: shige@kuis.kyoto-u.ac.jp Also listed in: www ja-plan-1.7.2 An X/Motif schedule planner with calendar Maintained by: obrien@FreeBSD.org Category lang (http://www.freebsd.org/ports/lang.html) ================================================================== cmucl-18b The CMU implementation of Common Lisp Maintained by: cracauer@cons.org ptoc-3.34 ANSI/Turbo Pascal to C/C++ converter Maintained by: andy@icc.surw.chel.su Requires: XFree86-3.3.2 Category mail (http://www.freebsd.org/ports/mail.html) ================================================================== mew-common-1.93 Message interface to Emacs Window(common parts) Maintained by: kiri@kiri.toba-cmt.ac.jp Requires: im-100, perl-5.00502 mew-mule-1.93 Message interface to Emacs Window(for mule) Maintained by: kiri@kiri.toba-cmt.ac.jp Requires: gmake-3.77, im-100, mew-common-1.93, mule-2.3, perl-5.00502 mew-xemacs-1.93 Message interface to Emacs Window(for xemacs) Maintained by: kiri@kiri.toba-cmt.ac.jp Requires: XFree86-3.3.2, gmake-3.77, im-100, jpeg-6b, mew-common-1.93, perl-5.00502, png-1.0.2, xemacs-19.16, xpm-3.4k mew-emacs-1.93 Message interface to Emacs Window(for emacs) Maintained by: kiri@kiri.toba-cmt.ac.jp Requires: emacs-19.34b, gmake-3.77, im-100, mew-common-1.93, perl-5.00502 Category math (http://www.freebsd.org/ports/math.html) ================================================================== py-numeric-1.6 The Numeric Extension to Python Maintained by: tg@FreeBSD.ORG Also listed in: python Requires: XFree86-3.3.2, python-1.5.1, tcl-8.0.2, tk-8.0.2 Category net (http://www.freebsd.org/ports/net.html) ================================================================== am-utils-6.0b1 The Amd automounter suite of utilities Maintained by: jseger@FreeBSD.org citrix_ica-2.8.1 Citrix client for the Microsoft Windows Terminal Server. Maintained by: msmith@FreeBSD.ORG Requires: linux_lib-2.6 delegate-5.7.2 General purpose TCP/IP proxy system Maintained by: max@FreeBSD.ORG Also listed in: www japanese ircii-epic-2.8.2.3.004 An enhanced version of ircII, the Internet Relay Chat client. Maintained by: mph@freebsd.org kirc-0.9.5-04 KDE project's IRC client Maintained by: andreas@FreeBSD.ORG Also listed in: kde Requires: Mesa-3.0, XFree86-3.3.2, giflib-3.0, gmake-3.77, jpeg-6b, kdelibs-1.0, qt-1.40 licq-0.44 X11 and QT-based ICQ-compatible program. Maintained by: green@unixhelp.org Requires: Mesa-3.0, XFree86-3.3.2, gmake-3.77, qt-1.40 mtr-0.28 traceroute and ping in a single graphical network diagnostic tool. Maintained by: billf@chc-chimes.com Requires: XFree86-3.3.2, autoconf-2.12, gtk-1.0.6 rsync-2.2.0 A network file distribution/synchronisation utility. Maintained by: obrien@FreeBSD.org Category print (http://www.freebsd.org/ports/print.html) ================================================================== enscript-Letterdj-1.6.1 ASCII-to-PostScript filter. Maintained by: kline@thought.org Requires: gmake-3.77 lyx-1.0.0pre2 A graphical frontend for LaTeX (nearly WYSIWYG) Maintained by: andreas@FreeBSD.ORG Requires: XFree86-3.3.2, gmake-3.77, teTeX-0.4, xforms-0.88.1, xpm-3.4k Category sysutils (http://www.freebsd.org/ports/sysutils.html) ================================================================== asapm-2.2 Laptop battery status display for X11 Maintained by: handy@physics.montana.edu Also listed in: x11 Requires: XFree86-3.3.2 cdrecord-1.6.1 This program allows you to create CD's on a CD-Recorder. Maintained by: jmz@FreeBSD.org Requires: gmake-3.77 Category textproc (http://www.freebsd.org/ports/textproc.html) ================================================================== dsssl-docbook-modular-1.23 DSSSL stylesheets for the DocBook DTD by Norman Walsh Maintained by: kuriyama@FreeBSD.ORG Requires: docbook-3.0, iso8879-1986, unzip-5.3.2 glimpse-4.1 Text search engine Maintained by: chuckr@freebsd.org Also listed in: databases Requires: gmake-3.77 Category www (http://www.freebsd.org/ports/www.html) ================================================================== apache-1.3.3+mod_ssl-2.0.15 The popular Apache HTTP server with SSL extension. Maintained by: rse@engelschall.com Also listed in: security Requires: SSLeay-0.9.0b, rsaref-2.0 apache-php3.0.5-1.3.3 Apache http server with database support via compiled in PHP3 module. Maintained by: Dirk Froemberg libwww-5.2 The W3C Reference Library. Maintained by: jseger@FreeBSD.org Also listed in: devel Requires: gmake-3.77 lynx-2.8.1rel.2 A non-graphical, text-based World-Wide Web client. Maintained by: ache@FreeBSD.ORG lynx-2.8.1.1 A non-graphical, text-based World-Wide Web client. Maintained by: jseger@FreeBSD.ORG ruboard-1.2.1 a web based discussion board Maintained by: am@amsoft.ru Also listed in: russian Category x11-toolkits (http://www.freebsd.org/ports/x11-toolkits.html) ================================================================== gtk-1.1.3 General Toolkit for X11 GUI. Maintained by: vanilla@FreeBSD.ORG Requires: XFree86-3.3.2, glib-1.1.4 lesstif-0.86.9 API compatible clone of the Motif toolkit. Maintained by: ports@FreeBSD.org Requires: XFree86-3.3.2 Category x11-wm (http://www.freebsd.org/ports/x11-wm.html) ================================================================== blackbox-0.40.12 A small and fast window manager for X11R6. Maintained by: ports@FreeBSD.ORG Requires: XFree86-3.3.2 windowmaker-0.20.2 This window manager is a GNUStep-compliant NeXTStep clone. Maintained by: handy@physics.montana.edu Requires: XFree86-3.3.2, giflib-3.0, jpeg-6b, png-1.0.2, tiff-3.4, xpm-3.4k _________________________________________________________________ © 1996-1998 by Wolfram Schneider. All rights reserved. Please direct questions about this service to www@FreeBSD.org General questions about FreeBSD ports should be sent to ports@FreeBSD.org Last database update: 1998-11-12 01:38:25 UTC _________________________________________________________________ This information was produced by http://www.freebsd.org/cgi/ports.cgi To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 14 17:03:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id RAA05172 for freebsd-ports-outgoing; Sat, 14 Nov 1998 17:03:48 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from mrmell (ppp2026.on.bellglobal.com [206.172.235.106]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id RAA04971 for ; Sat, 14 Nov 1998 17:03:39 -0800 (PST) (envelope-from vanderh@ecf.toronto.edu) Received: (from tim@localhost) by mrmell (8.8.8/8.8.8) id UAA27179; Sat, 14 Nov 1998 20:00:36 -0500 (EST) (envelope-from tim) Message-ID: <19981114200036.A11037@mrmell> Date: Sat, 14 Nov 1998 20:00:36 -0500 From: Tim Vanderhoek To: "Kurt D. Zeilenga" , freebsd-ports@FreeBSD.ORG Subject: Re: compress manuals or not References: <3.0.5.32.19981111184533.00926710@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.93.2i In-Reply-To: <3.0.5.32.19981111184533.00926710@localhost>; from Kurt D. Zeilenga on Wed, Nov 11, 1998 at 06:45:33PM -0800 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Wed, Nov 11, 1998 at 06:45:33PM -0800, Kurt D. Zeilenga wrote: > I am working an autoconf build environment for OpenLDAP 1.1. > I am trying to sort out how to properly detect if the > system supports compress man pages, if so, which Just install them however it's most convenient. The port Makefile needs to list them in its MAN? variables either way. No patches necessary either way. If you really want, you can check NOMANCOMPRESS and obey it, but that makes your autoconf script more complicated. The best autoconf scripts are the simplest autoconf scripts. Flipping between compressed and uncompressed based on the FreeBSD release number will make everyone's life more complicated. > distribution tarball or the ports/packages. That is, > I'd like to eliminate the need for port/package > maintainer to have to patch our distribution. I don't know what other porting issues exist, but in general, allowing configure options to be specified via a ./configure --option (as opposed to assuming you always intuit the correct value) is enough configurability. > Is there a better way to determine which compress > command/suffix to use generally? Don't use .Z! -- This .sig is not innovative, witty, or profund. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message From owner-freebsd-ports Sat Nov 14 20:39:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA20174 for freebsd-ports-outgoing; Sat, 14 Nov 1998 20:39: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 UAA20166 for ; Sat, 14 Nov 1998 20:39:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id UAA04566; Sat, 14 Nov 1998 20:40:01 -0800 (PST) Received: from mail.lig.bellsouth.net (mail.lig.bellsouth.net [205.152.0.50]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA20109 for ; Sat, 14 Nov 1998 20:35:55 -0800 (PST) (envelope-from gljohns@bellsouth.net) Received: from gforce.johnson.home (host-209-214-153-11.sld.bellsouth.net [209.214.153.11]) by mail.lig.bellsouth.net (8.8.8-spamdog/8.8.5) with ESMTP id XAA17336 for ; Sat, 14 Nov 1998 23:35:31 -0500 (EST) Received: (from glenn@localhost) by gforce.johnson.home (8.9.1/8.9.1) id WAA00466; Sat, 14 Nov 1998 22:35:28 -0600 (CST) (envelope-from glenn) Message-Id: <199811150435.WAA00466@gforce.johnson.home> Date: Sat, 14 Nov 1998 22:35:28 -0600 (CST) From: Glenn Johnson To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8689: New port of libU77 Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8689 >Category: ports >Synopsis: New port of libU77 >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 14 20:40:00 PST 1998 >Last-Modified: >Originator: Glenn Johnson >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: >Description: New port of libU77. This library adds some commonly used Fortran routines that are not found in f2c, mostly useful for porting. >How-To-Repeat: >Fix: Add this port to the devel subdirectory of $PORTSDIR # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # devel/libU77 # devel/libU77/Makefile # devel/libU77/files # devel/libU77/files/md5 # devel/libU77/files/makefile.lib # devel/libU77/pkg # devel/libU77/pkg/PLIST # devel/libU77/pkg/COMMENT # devel/libU77/pkg/DESCR # echo c - devel/libU77 mkdir -p devel/libU77 > /dev/null 2>&1 echo x - devel/libU77/Makefile sed 's/^X//' >devel/libU77/Makefile << 'END-of-devel/libU77/Makefile' X# New ports collection makefile for: libU77 X# Version required: 2.6 X# Date Created: 8 October 1998 X# Whom: Glenn Johnson X# X# $Id$ X# X XDISTNAME= libU77-2.6 XCATEGORIES= devel XMASTER_SITES= http://www.maths.unsw.EDU.AU/~norris/src/ X XMAINTAINER= gjohnson@nola.srrc.usda.gov X X.include X Xpre-build: X ${CP} ${FILESDIR}/makefile.lib ${WRKSRC}/Makefile X XMAN3= access.3f alarm.3f chdir.3f chmod.3f ctime.3f drand.3f dsecnd.3f \ X dtime.3f etime.3f exit.3f falloc.3f fdate.3f fork.3f free.3f \ X fstat.3f gerror.3f getarg.3f getcwd.3f getenv.3f getgid.3f \ X getlog.3f getpid.3f getuid.3f gmtime.3f hostnm.3f iargc.3f idate.3f \ X ierrno.3f irand.3f itime.3f kill.3f len.3f link.3f lnblnk.3f loc.3f \ X lstat.3f ltime.3f malloc.3f mclock.3f perror.3f qsort.3f rand.3f \ X rename.3f second.3f seterr.3f signal.3f sleep.3f stat.3f symlnk.3f \ X system.3f time.3f unlink.3f wait.3f wclock.3f X Xpost-install: X ${LDCONFIG} -m ${PREFIX}/lib X if [ "${PORTOBJFORMAT}" = "aout" ]; then \ X ${LN} -sf libU77.so.2.6 ${PREFIX}/lib/libU77.so; \ X fi X X ${INSTALL_MAN} ${WRKSRC}/man/*.3f ${PREFIX}/man/man3 X X.if !defined(NOPORTDOCS) X @${MKDIR} ${PREFIX}/share/doc/libU77 X ${INSTALL_DATA} ${WRKSRC}/doc/manual.ps ${PREFIX}/share/doc/libU77 X.endif X X.include END-of-devel/libU77/Makefile echo c - devel/libU77/files mkdir -p devel/libU77/files > /dev/null 2>&1 echo x - devel/libU77/files/md5 sed 's/^X//' >devel/libU77/files/md5 << 'END-of-devel/libU77/files/md5' XMD5 (libU77-2.6.tar.gz) = 3895f8fc218f7f84ebcfbee467624197 END-of-devel/libU77/files/md5 echo x - devel/libU77/files/makefile.lib sed 's/^X//' >devel/libU77/files/makefile.lib << 'END-of-devel/libU77/files/makefile.lib' XLIBDIR= ${PREFIX}/lib XNOPROFILE= no XCFLAGS+=-D_TIMES XFFLAGS+=-D_TIMES X XSHLIB_MAJOR= 1 XSHLIB_MINOR= 0 X XLIB= U77 X XSRCS = src/access.c src/alarm.c src/bit.c src/chdir.c src/chmod.c \ X src/ctime.c src/drand.c src/dsecnd.c src/dtime.c src/etime.c \ X src/exit.c src/falloc.c src/fdate.c src/fork.c src/free.c \ X src/fstat.f src/gerror.c src/getarg.c src/getcwd.c src/getenv.c \ X src/getgid.c src/getlog.c src/getpid.c src/getuid.c src/gmtime.c \ X src/hostnm.c src/iargc.c src/idate.c src/ierrno.c src/irand.c \ X src/itime.c src/kill.c src/len.c src/link.c src/lnblnk.f src/loc.c \ X src/lstat.c src/ltime.c src/malloc.c src/mclock.c src/perror.c \ X src/qsort.c src/rand.c src/rename.c src/second.c src/seterr.c \ X src/sleep.c src/stat.c src/symlnk.c src/system.c src/time.c \ X src/unlink.c src/util.c src/wait.c src/wclock.c X X.include END-of-devel/libU77/files/makefile.lib echo c - devel/libU77/pkg mkdir -p devel/libU77/pkg > /dev/null 2>&1 echo x - devel/libU77/pkg/PLIST sed 's/^X//' >devel/libU77/pkg/PLIST << 'END-of-devel/libU77/pkg/PLIST' Xlib/libU77.a Xlib/libU77.so Xlib/libU77.so.2 X@exec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -m %B X@unexec /usr/bin/env OBJFORMAT=%%PORTOBJFORMAT%% /sbin/ldconfig -R Xshare/doc/libU77/manual.ps X@dirrm share/doc/libU77 END-of-devel/libU77/pkg/PLIST echo x - devel/libU77/pkg/COMMENT sed 's/^X//' >devel/libU77/pkg/COMMENT << 'END-of-devel/libU77/pkg/COMMENT' XlibU77 adds Fortran intrinsics missing from f2c. END-of-devel/libU77/pkg/COMMENT echo x - devel/libU77/pkg/DESCR sed 's/^X//' >devel/libU77/pkg/DESCR << 'END-of-devel/libU77/pkg/DESCR' XThis library adds commonly used Fortran intrinsic functions to Xallow a greater range of Fortran code to be compiled with f77, Xie., f2c/gcc. END-of-devel/libU77/pkg/DESCR 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 Sat Nov 14 20:59:58 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA21156 for freebsd-ports-outgoing; Sat, 14 Nov 1998 20:59: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 UAA21148 for ; Sat, 14 Nov 1998 20:59:57 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id VAA05090; Sat, 14 Nov 1998 21:00:01 -0800 (PST) Received: from mail.lig.bellsouth.net (mail.lig.bellsouth.net [205.152.0.50]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA20913 for ; Sat, 14 Nov 1998 20:52:30 -0800 (PST) (envelope-from gljohns@bellsouth.net) Received: from gforce.johnson.home (host-209-214-153-11.sld.bellsouth.net [209.214.153.11]) by mail.lig.bellsouth.net (8.8.8-spamdog/8.8.5) with ESMTP id XAA06029 for ; Sat, 14 Nov 1998 23:51:49 -0500 (EST) Received: (from glenn@localhost) by gforce.johnson.home (8.9.1/8.9.1) id WAA00668; Sat, 14 Nov 1998 22:51:47 -0600 (CST) (envelope-from glenn) Message-Id: <199811150451.WAA00668@gforce.johnson.home> Date: Sat, 14 Nov 1998 22:51:47 -0600 (CST) From: Glenn Johnson To: FreeBSD-gnats-submit@FreeBSD.ORG X-Send-Pr-Version: 3.2 Subject: ports/8690: New port of Tinker molecular modeling program Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 8690 >Category: ports >Synopsis: New port of Tinker-3.6 molecular modeling program >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Sat Nov 14 21:00:01 PST 1998 >Last-Modified: >Originator: Glenn Johnson >Organization: >Release: FreeBSD 3.0-CURRENT i386 >Environment: This port requires libU77 (ports/8689) to build with stock f77. It is possible to build with g77 by setting FC=g77. >Description: New port of Tinker molecular modeling program. >How-To-Repeat: >Fix: Add this port to the biology subdirectory of $PORTSDIR begin 644 tinker.tgz M'XL(`/133C8``^U=Z7+;2)+NO^935+<<&VY;HGC3THXWVI9DKZ8E62&JISGVNKW1=V3X M54I32JLD=6)"OHL92VV\VP6EP4,4Z&'3=+/]SYWW=.8'=*MY=#N=T6"`MO]H MW!OI]N^/>@-H__YH//Z.=+9:"B3]/V__'7)!;\F2Q6E"7!8$U$U]%I%0]0,R M8_$AM)'L'JT=\C<:)YP0T]]6?DP]#I)^>P30L9-22O;!$E+&KM`/WQJ?<8#EK'IY/KBY?G)R\D497K M\NBV`6;H\W-_WG&1! MX_8ME#)H4V^UOUQ-]UO`/;VXAG\G5T+%_)^R6#]%+'#:21R[[57B.>TYNVFU MVG[D!BN/DK],$Z_-S=I>QK0=OO\/CLW(XX^OCSZ]>#$;CUMGIZ_>'9]_G)X=Y^+S MDGC@1/-].G<3D(T\?]9J_7KU\^3JZ$79T(\_`B!$U`20L%7L4E[IGT]>GYYI MDU9XO(-DLT7KY=G9N^N75V].K@7?"0(2^`E0YZW3B\EU">8III$30CY7)Y/K MJ].CZY-C*;E*%RP6O8LFT"4C1CQ0%/O3E>B7],ZERY3,8A:2A9^0U]>7)/%3 M4+1D2;KG1S":@^"P]>CQQW-17BCYY174Y+\^[2<+)Z:Z_$LG=L*$\W0!CU]> MO_Q4K:@D[C\E_VC]7E72MNJLG=ZEJ$[15[[WP+@1]9Y_SV:/)C?<4\ MYM:3Z)T3+J'=:HE3&KF+>EH*C74/`T#9]J].7AZ?G^#65.6_AZ:G[66R'3U_ MWXX:6XO>4Y%JF%HK%1KPGAJ=",9/VUM'G6UJ?0H3GF5H?(G"]W2]784PX6]7 MX=WZPU9;)IY#RW032^?Y?*4NS$E3/VHOO>E6U:[=@"WH77O*G.V65RMV%XX? M;U,S>#"A$_H>;;L4UJ7/T3PYNCJ]O+:5.J!.U.9KX7;U/FW'JV@;1A#SMQBE MRY6EO;)I_I[JK&/T0^3V-,DU60)I8YKJ(/;5U=86O; MWK=X?,D%K\2V("O?[]%/CS^>'/WGVT_DAQ^*)^!N/?WB5-;$T_6"5ARX=`'S MQ)JMX$JZBB/B@&/HTB@1=Q8AES)IXCX\`PK&D2DEJX3. M5D&[Z,PBFKX@F31-*+7X7+PZ&U5+VD9-6[+X#^9;#?"!Q;W&_>__2O?_W)M/ MMOT4Z'[/?X;C[K@S&G7Z_/Z_UQ\VSW\>(AG;/_2V:OJ:YS_\"1!__M/I]?K] MOFS_T;C3//]YB'1^/"1/]!VI$[?G'WXD+\C!M-<==X>4CGM#ZGE3UQL/.T[7 MZ\R&S_NCZ>`S)I@F_:%3:?POW\^W_P[@\^9__ORW!YVOF?\?(AG:_^CM^?G) MQ?7V\JB=_\?=\OP_'C;/_Q\D*9_:3\`SG].(QDY`EJL8/$E*0A90=Q6`>4+F MP;VS'\W)TG'?.W/:;E:`_QO),/Z/3^`.=IMYU(W_<;=?'O_#0>/_/4@JCO^$ MIH3-2!+R]S?+F,WY>PUQ8^LQ/O;1^:$EY@>@M,DU8P'HBBE1MZ>>4,`EYVL2 M^I$?^A\<_BXGV06%+*1IO&ZY3L`5J14!E9#B=(&*_-C0^%:;=:JL8T7`9LG0#O1E0*-+EPY^[3 MP$MD"519188DI>XB\OE#C79KXH>\'%`U)XJH(^;%S3)[Z\@)?9>7.>(/*Y8T MYL\$0.+63Q>J"%"6UXS/K<)8XC&ER.K&3_R4I`M*;ND4)MPYU"$];+46J?DM MI1JZ7S8C&\;_Y=GI9(NK?]WX[_5ZG>K]'[__;\;_UT]3/]J'<;6@X;HECOEH M^T#5,>_=\C!V%_Z-O.RR.*:\_\NS>,W?N8IC_JJ6CVEYPMQ52*-4GL@!(8[G MGB-^^A$,(3_5QW?K#^)0C3N:G<1,8',(XG\V8S&\AC\(?X*7-8_6<%` MYU.C/%M/UX'.BS^0A?G4RTX65.7(3P)_ODBS,YTGU$ME(X[4U1M_&FOC\V-U M^0X:8>;GQZ&J&!0@LS(<^U%V");0AZ*H+<-;;?4BT@@YX13FH64<&E$7KH4A M"M,0%UTP=X&"8`CW/8Z&/0O6MV'0&RSP;&;#V3)(K*#CH'`2PLR#UU<]F\%@ M^<:C@N9OVJO7YRO^,FR9M/^.8>E=6H74PVT0Q#&S()LS)+MDZ4=FC5?5FQ>WWRK;L;R]^,VW(^Z=KAG@]_3M0T&0]G@>!798#[3F&']?MD& MXQ53,%8Q`>,5$S!>,0&C%[UVWPX/[/"!#>ZWNW:X9X>M>??;0Q.IYI=`3,KA/N\54`C/H+*#M4&C&C6L%UYKT:\ M5R/?KY'O8_*Q`W<32,T$AN@5V%W(`APT9_C!:LP/5EM^L)ER2IV8/V2;^G,+ M:M:LTK@BB6(Z)6@36W/JA?KCQJU:4[XA&!! M;9H3JV:#1[*!HK+B#A2MKT!1S0*U:K:84L)6W9@QW2&B%@"S0@`056/G#E/& M(40=AS"%]#=4(4"80H`0A4L:I?@XR6!$.O,MC"7"'(L-U#ST-9K0WRRHM52H M>36,2;-;O$8GY^#PN,7-V$C/GYODA31?X3)WCF#SB)FV@<$-B07P5".8A5B`@U8A#X60::R`PI/`"0W3*%D&4VIK3VI8`KBW.3P:C MJM<6]V<6X$66F%FMQ!"=J]C!>H?$$)T",^N)0*A#5R4%$;9+ZP10?BCF.*,]PLW[F6CQW!9HU*]"F M%EL2-6I3C"V*@.*U5:!9C2*$7-'*B%+L[SF!,FJ680R0QI,0"0\HK,"2_F"UI8%D?"@2D5#D! MR6(=^QX^"68PHE[#J/(8G[PUBJJ.\8D[IG#&?!<1SF"S-'^S@4Z&"L0DUS$^ M^V@44RQ1L^9TX3LV/S;'S=IS'-7/>/>VZ%,(IA-SY/032),^ MFU]M\YL%-O6Q1TD9;)-&E[0,MBE'ES4!+U9SS/@Y;I&'V=Y6.`Y;M'/8HEQ\ M/6=3+PF6#"0!R6+AIUC'E!BB6&!'\%A/0?$W\K5+Y^S\G=1?;C@"\;_Q'K]L?C[MC\?WO:-S$?SQ$0MI?_-QS MG*WD8?_^LSN"/WK_I\&XP_?_&O8[O>;[SX=(3Y\^)>WVYG8^;1;[\T<3)R4O MES'I=N'O8?_Y87<@]V[:V]NKB`CV!;LA0.KT#CO#PTY/LDM1S/R<'.QV1R(2 MND7(SH[XCW>$MMAV2NP>M)%>K?S`$Y?Y1]'7IQ<_GUP1>D?=5>I,`YIH!3VE M0.XM5%!PSFZHD"T(\3#R5Z<7QZ=7K>^E>#\3#X'_+H`1D0AQN:<52=@L)?*J M'Y$S*$9!>*"$7<$M"%\);45AL7F1%E=%'REQM6M27O0C%KF@4'[2+O8/X@67 MHU5\Z*84#'7^_).IHO&.:4!!EDW_2=U4?ME>-IUH4=$F<+#WYVB3JED_HTVJ M#?K':Q/3N.EW=OO/\X%#=(FEUC->``]*M_3!E&RF6^6DK)H0L)`$N?`+LK]* M^-S/(H_[:-(C^UZU!,"/GV3D'_>G?@28SEC(QOL!O61"P6]Y0$[F)79+U;6FW MK'-OS6[9IAP;ULKVB)"FVOGSV,K4YP;#W>&XV.>.6+B$&3\^),/Q_D%GE_QMT.X6C/5Z/-;5YE^:\VWOOB=7Y_Q:PB_$H>A+KR;DA62_/GOY M!D[(G@OG;R^OL_.9DZ1D+UU!'18,;B*$6(;&P8WJE"6!B$7OQ(V&1_9@A._] M>K8+/]]%[!W?*NY=`LZ.I]M!U4_9[Y"0B1_X+HO(F]A9+GPW$7U)VJ/0ES[' M'CM&@^R4+;*3F62G;),=NU%VJE;9^>IF,76;;F>PV^T9Y3S? MF?_69H?\^-'CCU!/OLF-KNXG*"DOZE[HI`LBN3->HF>\1,\V2W0:I32X/%*7 MCRY_$7T_VUSR$CJ_OPK)9V2QF2R3C+*ZYC25Y-C6&XZ6DO6JBI!4SV9 M]=S]N>N2&[4)9J\];O?:W1_)O_Y%^&Z+A&_-J$H(?V5CBUT;X4PVLFIC@9K-DP5;@?\2L92'YUU0ER:)$Z_Y.GZT<*(Y3)_0M^8)>45AHH0Y MTT_()?-A%M4CXO>6PS1HQJ/1+MP!YX-F?-#='1]DTXU.-RQ8A;379N0?A:NW ML9]2MDI+E^_6'YPT;/.^_PAF)N@EX-%,E;?BR%&N(L#:=WPXY@V2=0)H$9:3 MLB-6U"3XKR:?C#5[/ASO'G0RIQ_+0H:IJ+ORC0=E*=I,BZOG*<.UU.LN>""?8JA8OK(>'>*7LZ!9*T95P7^*I./_2B7/P@(+M)A5-1B9OF<)H(9-47$ M,U9JJ,(<-4E&.I8+I0,@-2M)3,W,0R-SAJG86=!D@:9-4*+E)I`1E162"K34 M)!EK62ZX#L'4+!V%N3G"\N!,S=/QF25>%K:I>2IRLU3-+*!3T?C3;![36:+I MRT4:C_8TT$00:($FXD`W"Y==+O(,'4Q=SEA^J,VVP1(AI46.09,*-E4L%6]: M9NDPU`++T.0J0%615(QJ694.72VPPFIGU4&MFB7C6BLL%>Z:L_RH6BP5")N3 M8+B82/PM=4[22U.))(-GU8*4/Z802VD,SC7X8D_4/6"^&/'5_?GS_NY!OZ=7 M]^TOBMDFDJ`GN<_Z6!:H72HK`C6K9IE?NX"6!.ZSEI9%:I?5DL`]5MBR1/UB M6Y:H77=+`O8EN$2N7XVK`O:%N<2_QQIMD+`OUR6!VI7;P+ZSG!@G[ MTEX5J%OE2Q(U"WZ97;?VE_FU;D!9P.H15,EUSH%!PNHGE/BU+D.97^L]E`7N MX4B41>[A4Y1%ZMV+DL0]/`V#1(W389"H\S\,(G97I"Q0XY68Z%8'I210[ZL8 M!*QN2XE?[\$8!.S.3%F@UJ^I"MA=G"K?[NU4^=MT?+[U"\\F;23[^__I5O*H MV?^MV^^.2OL_#7N#9O^G!TGJ_7]I$Q?Q!0!OF]>QSW]O$^D])[W^X6!\V!EO M?`10DBOS#PZ[??PS@.ZN>K'TO78Q]*NW_R%DPF;IK1/3?*,W`3N,5?[3+BR%>PF3IB/'/I)"_.FOR*ZSV MOA.22_%25.:D"B?VR@N9)TJBMLG3^V**^,^PA)U^?[*JGP!5;`?B@MOHC6^I;CZ8_7[+/_^Y6\OC\_3^' M/?[['YOY_^NGPOQ?V%8+F?^'G<-N=?XOR%7Y?>O\/T#G_\^2;^H M_>WCW]M*'ZL;__WNL#K^&__O09(:_Y4=B-0,(#X"Y>/Y@/2ZA\/!86>T,?XK MT+,`5ZAWNR1_(9L;*HF!J(>AF?*MC?DG3/;QOYW?`_Q%X[]9 M_Q\DE<9_M@>8>?R/LG%<&O^9G'G\CP[[7S3^BUN:(>._2/G6QOP3)OOXGVTE MC[KQ/QA4QW^_WXS_AT@;XS_;DB[S_ROC>#`PC/],KLH?/K?Y_WW]09B[)(7? MW9@=JI&N)P9UHP_COKCQ'B%Q6!"1#GM?OU6OT7POE=^ZD9K4I"8UJ4E-:E*3 JFM2D)C6I24UJ4I.:U*0F-:E)36I2DYK4I"8UJ4E-JDG_"_UP0"X`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 Sat Nov 14 23:38:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id XAA00630 for freebsd-ports-outgoing; Sat, 14 Nov 1998 23:38:17 -0800 (PST) (envelope-from owner-freebsd-ports@FreeBSD.ORG) Received: from titanium.yy.ics.keio.ac.jp (titanium.yy.ics.keio.ac.jp [131.113.47.73]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id XAA00617; Sat, 14 Nov 1998 23:38:05 -0800 (PST) (envelope-from sanpei@sanpei.org) Received: from lavender.sanpei.org (u4168.seaple.icc.ne.jp [203.140.32.168]) by titanium.yy.ics.keio.ac.jp (8.8.8+3.0Wbeta13/3.7W) with ESMTP id QAA21559; Sun, 15 Nov 1998 16:37:32 +0900 (JST) Received: (from sanpei@localhost) by lavender.sanpei.org (8.8.8/3.6W) id QAA00947; Sun, 15 Nov 1998 16:37:30 +0900 (JST) Message-Id: <199811150737.QAA00947@lavender.sanpei.org> To: jkh@FreeBSD.ORG Cc: asami@FreeBSD.ORG, ports@FreeBSD.ORG Subject: Re: /usr/X11R6/bin permission problem In-Reply-To: Your message of "Thu, 15 Oct 1998 09:10:47 -0700" References: <7625.908467847@time.cdrom.com> X-Mailer: Mew version 1.70 on Emacs 19.28.1 / Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Sun, 15 Nov 1998 16:37:30 +0900 From: MIHIRA Sanpei Yoshiro Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >> I found /usr/X11R6/bin permission problem.... >> >> 1) install only bin distribution by boot.flp >> 2) reboot >> 3) install X11R6 programs by /sysinstall >> >> After install, /usr/X11R6/bin directory permission is 700: > >I'm aware of this one but didn't have time to fix it before release. >Basically, the problem revolves around the way that sysinstall does >"fixups" - if you're doing a full installation, all the fixups get run >once and the ones pertinent to XFree86 are executed as expected. If >you add *only* XFree86 as an afterthought, however, then the fixups >don't get run (they only run when bin is extracted) and you get the >behavior above. What needs to happen is something closer to a callout >list mechanism where various release bits add callouts for the >appropriate fixups. I'll do this after 3.0 goes out the door (so we'll >at least have it for the follow-on snapshots and next release) but >didn't want to risk it beforehand. It's nearly 2.2.8-RELEASE time. I check latest releng installer, 2.2.7-19981110-SNAP from releng22.freebsd.org. But this problem is still there. ---------- And this time, I tested below steps. 1) install ony bin, src/sys with boot.flp 2) reboot 3) First install only VGA16 server only created /usr/X11R6/bin direcotry permission of /usr/X11R6/bin is 700 drwx------ 2 root wheel 512 Nov 15 15:27 bin ~~~~~~ 4) and restart sysinstall 5) install Xlib.tgz and Xbin.tgz drwxrwxr-x 2 root wheel 2048 Nov 15 15:30 bin ~~~~~~~~~ corrected??, who do?? <-------!!! drwx------ 3 root wheel 512 Nov 15 15:31 include drwx------ 4 root wheel 512 Nov 15 15:31 lib ~~~~~~ 6) restart sysinstall 7) install Xprog.tgz drwxrwxr-x 2 root wheel 2048 Nov 15 15:30 bin drwxrwxr-x 4 root wheel 512 Nov 15 15:45 include drwxrwxr-x 4 root wheel 1024 Nov 15 15:44 lib ~~~~~~ corrected....... <-------!!!! ** umask for root is 22(I think default setting) ---------- BTW, XFree86 files on releng22[1] is past name order. We can't test about XFree86 files. I renamed these file locally. I hope to refreah these. (Yes, it will need to change to XFree86 3.3.3 soon :-) [1] XFree86 files on releng22 ftp://releng22.freebsd.org/pub/FreeBSD/releng22/XF86332/ ---------- Yoshiro MIHIRA To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message