From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 60229139B2A for ; Fri, 18 Sep 2015 07:39:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ADDF7E08D4; Fri, 18 Sep 2015 07:39:10 +0000 (UTC) Received: from plane.gmane.org (plane.gmane.org [80.91.229.3]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 173A1E08B5 for ; Fri, 18 Sep 2015 07:39:08 +0000 (UTC) Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZcqG9-00027W-0d for gentoo-user@lists.gentoo.org; Fri, 18 Sep 2015 09:39:05 +0200 Received: from athedsl-347266.home.otenet.gr ([85.72.212.32]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Sep 2015 09:39:04 +0200 Received: from realnc by athedsl-347266.home.otenet.gr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 18 Sep 2015 09:39:04 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: gentoo-user@lists.gentoo.org From: Nikos Chantziaras Subject: [gentoo-user] Re: portage can not find local ebuild Date: Fri, 18 Sep 2015 10:38:57 +0300 Message-ID: References: <55FB81DA.2040501@sys-concept.com> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: athedsl-347266.home.otenet.gr User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 In-Reply-To: <55FB81DA.2040501@sys-concept.com> X-Archives-Salt: 595d6aca-c217-401e-84c9-89cfbf2b4205 X-Archives-Hash: bf13efb2efa941d3919a3d2d04bc1bb1 On 18/09/15 06:15, thelma@sys-concept.com wrote: > I'm trying to emerge one of my local ebuild and portage can not find it. > What am I missing? > > emerge -avq nxclient > > emerge: there are no ebuilds to satisfy "nxclient". > > My settings: > > make.conf. > ... > PORTDRI_OVERLAY="/usr/local/portage" > > cat /etc/portage/repos.conf/gentoo.conf > [DEFAULT] > main-repo = gentoo > > [gentoo] > location = /usr/portage > sync-type = rsync > sync-uri = rsync://192.168.139.7/gentoo-portage Remove the PORTDIR_OVERLAY entry from make.conf. Then, create a new file in /etc/portage/repos.conf/, for example "local.conf", with these contents: [Local] priority = 99999999 location = /usr/local/portage auto-sync = no The high value for priority is just to make sure that your local ebuilds override any other ebuilds of the same name that exist elsewhere.