From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5871 invoked by uid 1002); 24 Sep 2003 01:23:55 -0000 Mailing-List: contact gentoo-dev-help@gentoo.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@gentoo.org Received: (qmail 32171 invoked from network); 24 Sep 2003 01:23:54 -0000 From: Brett Reply-To: adalovelace@kooee.com.au To: gentoo-dev@gentoo.org Content-Type: text/plain Message-Id: <1064366257.15210.43.camel@dupre.home> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.3 Date: 24 Sep 2003 11:17:38 +1000 Content-Transfer-Encoding: 7bit Subject: [gentoo-dev] ebuild help X-Archives-Salt: 0380639b-f84a-4793-957b-3aabb96b4b4e X-Archives-Hash: 9a0c5656d6a51f133581d2bfcb659b1d Greetings, I have a few Linux programs which I would like to use, but which are not in portage. I have attempted to make some ebuild scripts (via the ebuild HOWTO) for these programs, but I can't get them to work. The error I receive is: { # emerge /usr/local/portage/app-office/bhpos-base/app-office/bhpos-base Calculating dependencies emerge: there are no masked or unmasked ebuilds to satisfy "/usr/local/portage/app-office/bhpos-base/app-office/bhpos-base". !!! Error calculating dependencies. Please correct. }//end error I have tried everything I can think of, including commenting out all the required dependencies. I have also set: PORTDIR_OVERLAY="/usr/local/portage" Any help is appreciated :-) Brett The ebuild script: { cat bhpos-base-1.0.1-1_rc1.ebuild # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="Bananahead Point-of-sale software" HOMEPAGE="http://www.bananapos.com/" SRC_URI="http://bananapos.com/download/bhpos/stable/base/${P}.tar.gz" LICENSE="GPL2" SLOT="0" KEYWORDS="~x86" IUSE="X gnome" DEPEND=">=autoconf-2.54 >=automake-1.73 >=libtool-1.4.3-r1 >=make-3.8.0 >=gettext-0.11.5 >=intltools-0.23 >=pkgconfig-0.15.0" RDEPEND="" S=${WORKDIR}/${P} src_unpack() { unpack ${A} || die } src_compile() { ./configure \ --host=${CHOST} \ --prefix=/usr \ --infodir=/usr/share/info \ --mandir=/usr/share/man || die "./configure failed" } src_install() { make \ prefix=${D}/usr \ mandir=${D}/usr/share/man \ infodir=${D}/usr/share/info \ install || die } }//end ebuild script -- gentoo-dev@gentoo.org mailing list