Date: Sun, 17 Oct 1999 15:09:01 -0500 From: Daniel Baker <dbaker@distributed.net> To: Doug <Doug@gorean.org> Cc: ports@freebsd.org Subject: Re: Problem with new rc5des port Message-ID: <19991017150901.C42128@cuckoo.com> In-Reply-To: <380A2A71.4F0088CB@gorean.org> References: <380A2A71.4F0088CB@gorean.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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 <bsd.port.pre.mk> > > 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?19991017150901.C42128>