Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 7710
Collapse All | Expand All

(-)portage.py (+9 lines)
Lines 1042-1047 Link Here
1042
			else:
1042
			else:
1043
				locations = [self["PORTDIR"] + "/profiles", USER_CONFIG_PATH]
1043
				locations = [self["PORTDIR"] + "/profiles", USER_CONFIG_PATH]
1044
1044
1045
				# Added portage overlay support for categories 
1046
				overlays = string.split(self["PORTDIR_OVERLAY"])
1047
				if overlays:
1048
					for ov in overlays:
1049
						ov=ov + "/profiles"
1050
						ov=os.path.normpath(ov)
1051
						if os.path.isdir(ov):
1052
							locations.append(ov)
1053
1045
				# Never set anything in this. It's for non-originals.
1054
				# Never set anything in this. It's for non-originals.
1046
				self.pusedict=grabdict_package(USER_CONFIG_PATH+"/package.use")
1055
				self.pusedict=grabdict_package(USER_CONFIG_PATH+"/package.use")
1047
1056

Return to bug 7710