From owner-cvs-ports@FreeBSD.ORG Sun Jun 20 18:56:07 2004 Return-Path: Delivered-To: cvs-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2801E16A4CE; Sun, 20 Jun 2004 18:56:07 +0000 (GMT) Received: from beastie.hu (beastie.hu [212.40.96.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id E419C43D46; Sun, 20 Jun 2004 18:56:06 +0000 (GMT) (envelope-from robert@bsd.hu) Received: from enterprise.hu (robert.beastie.hu [IPv6:3ffe:2c03:210:2c06::ffff]) by beastie.hu (Postfix) with ESMTP id B54ED2E6C5; Sun, 20 Jun 2004 20:48:02 +0200 (CEST) Received: by enterprise.hu (Postfix, from userid 1001) id C200C14273; Sun, 20 Jun 2004 21:04:38 +0200 (CEST) Date: Sun, 20 Jun 2004 21:04:38 +0200 From: Robert Nagy To: Kent Stewart Message-ID: <20040620190438.GA14885@enterprise.hu> References: <95D06D00-C2C8-11D8-9250-00039312D914@fillmore-labs.com> <200406201107.17596.kstewart@owt.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200406201107.17596.kstewart@owt.com> User-Agent: Mutt/1.4.2i cc: Thierry Thomas cc: Oliver Eikemeier cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/textproc/aspell Makefile ports/textproc/aspell/files patch-prog-compress.c ports/security/portaudit-db/database portaudit.txt X-BeenThere: cvs-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Jun 2004 18:56:07 -0000 > Creating package /usr/ports/packages/All/aspell-0.50.5_3.tgz > Registering depends:. > Creating gzip'd tar ball in > '/usr/ports/packages/All/aspell-0.50.5_3.tgz' > tar: lib/libaspell.a: Cannot stat: No such file or directory > tar: lib/libpspell.a: Cannot stat: No such file or directory > tar: Error exit delayed from previous errors > pkg_create: make_dist: tar command failed with code 512 > *** Error code 1 This should fix it. But i don't know wheter it is the way for this in FreeBSD: Index: Makefile =================================================================== RCS file: /home/ncvs/ports/textproc/aspell/Makefile,v retrieving revision 1.58 diff -u -r1.58 Makefile --- Makefile 16 Apr 2004 21:52:55 -0000 1.58 +++ Makefile 20 Jun 2004 18:53:47 -0000 @@ -25,7 +25,8 @@ USE_LIBTOOL_VER=13 CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL} CONFIGURE_ARGS= --enable-dict-dir=${DATADIR} \ - --enable-doc-dir=${DOCSDIR} + --enable-doc-dir=${DOCSDIR}\ + --enable-static USE_GMAKE= yes MAKE_ARGS= NOPORTDOCS=${NOPORTDOCS} -- Robert Nagy