From owner-freebsd-questions@FreeBSD.ORG Sat Jan 8 23:48:53 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9CA5116A4CE for ; Sat, 8 Jan 2005 23:48:53 +0000 (GMT) Received: from www.ninjabucket.com (ninjabucket.com [65.174.56.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01DDC43D2D for ; Sat, 8 Jan 2005 23:48:53 +0000 (GMT) (envelope-from aaron@snaphat.com) Received: from snaphat.com (pcp01483743pcs.frncht01.de.comcast.net [68.82.65.116]) by www.ninjabucket.com (8.13.1/8.13.1) with ESMTP id j08Nmon6081604; Sat, 8 Jan 2005 18:48:50 -0500 (EST) (envelope-from aaron@snaphat.com) Received: from [192.168.100.49] (localhost [192.168.100.49]) by snaphat.com (8.13.2/8.13.1) with ESMTP id j08Nmehb020427; Sat, 8 Jan 2005 18:48:43 -0500 (EST) (envelope-from aaron@snaphat.com) Message-ID: <41E07158.2010205@snaphat.com> Date: Sat, 08 Jan 2005 18:48:40 -0500 From: Aaron Myles Landwehr User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: rsh.lists@comcast.net, freebsd-questions@freebsd.org References: <41E04ECA.80508@comcast.net> In-Reply-To: <41E04ECA.80508@comcast.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Makefile correction? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Jan 2005 23:48:53 -0000 Sean wrote: > Hello All, > > I am trying to install gnuchess but when I start the build process > it errors out as follows. > > ---------------------------------------- > tardis# make install clean > ===> Vulnerability check disabled, database not found > ===> Found saved configuration for gnuchess-5.07 > ===> Extracting for gnuchess-5.07 > => Checksum OK for book_1.01.pgn.gz. > /usr/ports/distfiles//gnuchess-5.07.tar.gz: No such file or directory > tar: Error opening archive: Empty input file: Inappropriate file type > or format > *** Error code 1 > > Stop in /usr/ports/games/gnuchess. > ---------------------------------------- Hello, I attempted to install the port and recieved the same error as you. The current makefile does not grab the gnuchess.tar.gz, whenever WITH_OPENING_BOOK is specified, because EXTRACT_ONLY is misplaced underneathe of that section. Comment out that EXTRACT_ONLY line and underneathe the MASTER_SITE_SUBDIR line add the following two lines: DISTFILES= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} I suppose someone should submit a patch for this... -Aaron Myles Landwehr