Date: Sun, 17 Oct 1999 12:58:41 -0700 From: Doug <Doug@gorean.org> To: ports@freebsd.org Cc: dbaker@distributed.net Subject: Problem with new rc5des port Message-ID: <380A2A71.4F0088CB@gorean.org>
next in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format. --------------4984681DAD323693B47CCEFC Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit 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" --------------4984681DAD323693B47CCEFC Content-Type: text/plain; charset=us-ascii; name="rc5des-port.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="rc5des-port.diff" 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 --------------4984681DAD323693B47CCEFC-- 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?380A2A71.4F0088CB>