aboutsummaryrefslogtreecommitdiff
blob: 868a780039d58de9251fd50552de74c204a9d22b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python

# Copyright 2003-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2


"""Eprefix support module to set the EPREFIX variable
used in all gentoolkit modules

Example useage:  from gentoolkit.eprefix import EPREFIX
then in code add it to the filepath eg.:
	exclude_file = "%s/etc/%s/%s.exclude" % (EPREFIX,__productname__ , action)

"""
# Load EPREFIX from Portage, fall back to the empty string if it fails
try:
    from portage.const import EPREFIX
except ImportError:
    EPREFIX = ""

if __name__ == "__main__":
    print("EPREFIX set to:", EPREFIX)