From owner-freebsd-ports Sun Oct 17 13: 9:14 1999 Delivered-To: freebsd-ports@freebsd.org Received: from mailhub1.cuckoo.com (wrangler.cuckoo.com [209.113.113.66]) by hub.freebsd.org (Postfix) with SMTP id 957D514A2D for ; Sun, 17 Oct 1999 13:09:03 -0700 (PDT) (envelope-from dbaker@cuckoo.com) Received: (qmail 52225 invoked by uid 200); 17 Oct 1999 20:09:01 -0000 Date: Sun, 17 Oct 1999 15:09:01 -0500 From: Daniel Baker To: Doug Cc: ports@freebsd.org Subject: Re: Problem with new rc5des port Message-ID: <19991017150901.C42128@cuckoo.com> Reply-To: dbaker@cuckoo.com References: <380A2A71.4F0088CB@gorean.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0pre3i In-Reply-To: <380A2A71.4F0088CB@gorean.org> X-PGP-Fingerprint: F3 41 B7 EE 96 92 F5 35 5E 3C 02 61 08 22 23 98 X-Operating-System: FreeBSD 3.3-STABLE i386 X-Distributed: Join the cows! http://www.distributed.net/ _]:8) Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Yeah, this is a result of a lame feature(?) in the client that attempts to prevent stdin/stdout from being redirected. I fixed the bug in the client and commited a change. We'll be putting out a i386 freebsd elf bin distribution pretty shortly that will fix this problem. I will commit new md5s when this takes place. Thanks for the note. Daniel On 17-Oct-1999, Doug wrote: > When I try installing rc5 with the new port without an existing > /usr/local/distributed.net/rc5des.ini file it bombs with the following: > > *** Error code 150 > > Stop. > *** Error code 1 > > Stop. > *** Error code 1 > > Stop. > > There is more text before this, but all efforts to get it before it > wrapped into oblivion failed. It does work if I already have an older > version installed. Also, the new binary addresses all of the issues that > I complained about previously, so I'm happy about that anyways. > > I'm not sure where to start on the installation issue. It seems to be > failing in the do-configure step when it tries to run the rc5des > -config. The attached patch quiets some portlint warnings, mostly > whitespace stuff. > > HTH, > > Doug > -- > "Stop it, I'm gettin' misty." > > - Mel Gibson as Porter, "Payback" > Index: Makefile > =================================================================== > RCS file: /usr/ncvs/ports/misc/rc5des/Makefile,v > retrieving revision 1.15 > diff -u -r1.15 Makefile > --- Makefile 1999/10/14 17:06:20 1.15 > +++ Makefile 1999/10/17 19:44:41 > @@ -6,13 +6,15 @@ > # $FreeBSD: ports/misc/rc5des/Makefile,v 1.15 1999/10/14 17:06:20 dbaker Exp $ > # > > -DISTNAME= rc5des > +DISTNAME= rc5des > PKGNAME= rc5des-2.7106.444 > CATEGORIES= misc > -MASTER_SITES= ftp://ftp.distributed.net/pub/dcti/v2.7112/ \ > +MASTER_SITES= ftp://ftp.distributed.net/pub/dcti/v2.7112/ \ > http://http.distributed.net/pub/dcti/v2.7112/ > DISTFILES= rc5des444-freebsd-x86-elf.tar.gz > > +MAINTAINER= dbaker@distributed.net > + > .include > > ONLY_FOR_ARCHS= i386 > @@ -23,8 +25,6 @@ > BROKEN= "No version is currently available for your system. Please try again later." > .endif > > -MAINTAINER= dbaker@distributed.net > - > NO_WRKSUBDIR= yes > NO_BUILD= yes > > @@ -41,13 +41,13 @@ > .if !defined(BATCH) > do-configure: > if [ ! -f ${BINDIR}/rc5des.ini ]; then \ > - install -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ > + ${INSTALL} -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ > ${WRKSRC}/rc5des -config; \ > fi > .else > do-configure: > if [ ! -f ${BINDIR}/rc5des.ini ]; then \ > - install -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ > + ${INSTALL} -c -m 644 ${FILESDIR}/rc5des.ini ${WRKSRC}; \ > fi > .endif > -- dbaker@distributed.net - Chief Operations Administrator - distributed.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message