From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-14) on finch.gentoo.org X-Spam-Level: * X-Spam-Status: No, score=1.4 required=5.0 tests=DATE_IN_PAST_06_12,DMARC_NONE, INVALID_DATE,MAILING_LIST_MULTI autolearn=no autolearn_force=no version=4.0.0 Received: from mailgw2.netvision.net.il ([194.90.1.9]) by cvs.gentoo.org with esmtp (Exim 3.30 #1) id 15KIEB-0007c7-00 for gentoo-dev@cvs.gentoo.org; Wed, 11 Jul 2001 05:32:23 -0600 Received: from localhost (ras6-p66.rlz.netvision.net.il [62.0.86.194]) by mailgw2.netvision.net.il (8.9.3/8.9.3) with SMTP id OAA25974 for <gentoo-dev@cvs.gentoo.org>; Wed, 11 Jul 2001 14:33:48 +0300 (IDT) Content-Type: text/plain; charset="iso-8859-1" From: Dan Armak <ermak@netvision.net.il> To: gentoo-dev@cvs.gentoo.org Subject: Re: [gentoo-dev] ebuild error X-Mailer: KMail [version 1.2] References: <20010711050750.A29036@cvs.gentoo.org> In-Reply-To: <20010711050750.A29036@cvs.gentoo.org> MIME-Version: 1.0 Message-Id: <01071114322402.00551@localhost> Content-Transfer-Encoding: 8bit Sender: gentoo-dev-admin@cvs.gentoo.org Errors-To: gentoo-dev-admin@cvs.gentoo.org X-BeenThere: gentoo-dev@cvs.gentoo.org X-Mailman-Version: 2.0 Precedence: bulk Reply-To: gentoo-dev@cvs.gentoo.org List-Help: <mailto:gentoo-dev-request@cvs.gentoo.org?subject=help> List-Post: <mailto:gentoo-dev@cvs.gentoo.org> List-Subscribe: <http://cvs.gentoo.org/mailman/listinfo/gentoo-dev>, <mailto:gentoo-dev-request@cvs.gentoo.org?subject=subscribe> List-Id: Gentoo Linux development list <gentoo-dev.cvs.gentoo.org> List-Unsubscribe: <http://cvs.gentoo.org/mailman/listinfo/gentoo-dev>, <mailto:gentoo-dev-request@cvs.gentoo.org?subject=unsubscribe> List-Archive: <http://cvs.gentoo.org/pipermail/gentoo-dev/> Date: Wed Jul 11 05:33:05 2001 X-Original-Date: Wed, 11 Jul 2001 14:32:24 +0300 X-Archives-Salt: 42362a31-07a1-4d87-9426-910bd08334ca X-Archives-Hash: c4681746ffb364bd907171ec21ef70cd On Wednesday 11 July 2001 14:07, you wrote: > Hi, > > what are the reasons for this error to come : > > ebuild fping-2.4b1.ebuild digest > !!! Name error in 2.4b1 > !!! Error: PF is null; exiting. > > > the ebuild is as follows : > > P=fping-2.4b1.tar.gz > S=${WORKDIR}/fping-2.4b1 > DESCRIPTION="A utility to ping multiple hosts at once" > SRC_URI="ftp://ftp.kernel.org/pub/software/admin/mon/${P}.tar.gz" > HOMEPAGE="http://www.stanford.edu/~schemers/docs/fping/fping.html" > > src_unpack() { > unpack ${A} > cp ${FILESDIR}/fping.c ${S} > } > > src_compile() { > > cd ${S} > try ./configure --prefix=/usr --host=${CHOST} > try make > > } > > src_install () { > > cd ${S} > dobin fping > doman fping.8 > dodoc COPYING ChangeLog README > > } > > > regards, > > pm > > _______________________________________________ > gentoo-dev mailing list > gentoo-dev@cvs.gentoo.org > http://cvs.gentoo.org/mailman/listinfo/gentoo-dev There are rules for naming ebuilds. Specifically, 2.4b1 isn't acceptable. Use 1.4_beta1 instead and it'll work. The reasons and rules for this are in one of the tutorials somewhere :-) HTH Dan