Gentoo Archives: gentoo-user

From: Andrew Savchenko <bircoph@g.o>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] portage can not find local ebuild
Date: Fri, 18 Sep 2015 05:16:01
Message-Id: 20150918081528.fc1bedd916ed15777eb61ccf@gentoo.org
In Reply to: [gentoo-user] portage can not find local ebuild by thelma@sys-concept.com
1 Hi,
2
3 On Thu, 17 Sep 2015 21:15:38 -0600 thelma@×××××××××××.com wrote:
4 > I'm trying to emerge one of my local ebuild and portage can not find it.
5 > What am I missing?
6 >
7 > emerge -avq nxclient
8 >
9 > emerge: there are no ebuilds to satisfy "nxclient".
10 >
11 > My settings:
12 >
13 > make.conf.
14 > ...
15 > PORTDRI_OVERLAY="/usr/local/portage"
16
17 1. PORTDIR_OVERLAY
18 2. It is no longer used, overlays should be declared at repos.conf
19 these days.
20
21 > cat /etc/portage/repos.conf/gentoo.conf
22 > [DEFAULT]
23 > main-repo = gentoo
24 >
25 > [gentoo]
26 > location = /usr/portage
27 > sync-type = rsync
28 > sync-uri = rsync://192.168.139.7/gentoo-portage
29
30 You are missing local overlay description. Add to gentoo.conf
31 something like this:
32
33 [local]
34 priority = 100
35 location = /usr/local/portage
36
37 Best regards,
38 Andrew Savchenko