Gentoo Archives: gentoo-user

From: Nikos Chantziaras <realnc@×××××.com>
To: gentoo-user@l.g.o
Subject: [gentoo-user] Re: portage can not find local ebuild
Date: Fri, 18 Sep 2015 07:39:19
Message-Id: mtgf2i$59i$1@ger.gmane.org
In Reply to: [gentoo-user] portage can not find local ebuild by thelma@sys-concept.com
1 On 18/09/15 06:15, thelma@×××××××××××.com wrote:
2 > I'm trying to emerge one of my local ebuild and portage can not find it.
3 > What am I missing?
4 >
5 > emerge -avq nxclient
6 >
7 > emerge: there are no ebuilds to satisfy "nxclient".
8 >
9 > My settings:
10 >
11 > make.conf.
12 > ...
13 > PORTDRI_OVERLAY="/usr/local/portage"
14 >
15 > cat /etc/portage/repos.conf/gentoo.conf
16 > [DEFAULT]
17 > main-repo = gentoo
18 >
19 > [gentoo]
20 > location = /usr/portage
21 > sync-type = rsync
22 > sync-uri = rsync://192.168.139.7/gentoo-portage
23
24 Remove the PORTDIR_OVERLAY entry from make.conf. Then, create a new file
25 in /etc/portage/repos.conf/, for example "local.conf", with these contents:
26
27 [Local]
28 priority = 99999999
29 location = /usr/local/portage
30 auto-sync = no
31
32 The high value for priority is just to make sure that your local ebuilds
33 override any other ebuilds of the same name that exist elsewhere.

Replies

Subject Author
Re: [gentoo-user] Re: portage can not find local ebuild thelma@×××××××××××.com