From owner-freebsd-ports Sun Oct 17 12:58:45 1999 Delivered-To: freebsd-ports@freebsd.org Received: from dt050n71.san.rr.com (dt050n71.san.rr.com [204.210.31.113]) by hub.freebsd.org (Postfix) with ESMTP id DB3B114A2D for ; Sun, 17 Oct 1999 12:58:42 -0700 (PDT) (envelope-from Doug@gorean.org) Received: from gorean.org (master [10.0.0.2]) by dt050n71.san.rr.com (8.9.3/8.8.8) with ESMTP id MAA11539; Sun, 17 Oct 1999 12:58:41 -0700 (PDT) (envelope-from Doug@gorean.org) Message-ID: <380A2A71.4F0088CB@gorean.org> Date: Sun, 17 Oct 1999 12:58:41 -0700 From: Doug Organization: Triborough Bridge & Tunnel Authority X-Mailer: Mozilla 4.7 [en] (X11; I; FreeBSD 4.0-CURRENT-0927 i386) X-Accept-Language: en MIME-Version: 1.0 To: ports@freebsd.org Cc: dbaker@distributed.net Subject: Problem with new rc5des port Content-Type: multipart/mixed; boundary="------------4984681DAD323693B47CCEFC" Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org 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 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