commit:     f2de7834a881e387b7d26978848d754ee56b1e07
Author:     Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
AuthorDate: Fri May 19 14:10:28 2017 +0000
Commit:     Aaron Swenson <titanofold <AT> gentoo <DOT> org>
CommitDate: Fri May 19 14:10:28 2017 +0000
URL:        
https://gitweb.gentoo.org/proj/postgresql/eselect.git/commit/?id=f2de7834

Add support for FEATURES="noman"

In such case the user enabled FEATURES="noman" on Portage, there won’t
be a manpage directory to link to. The module now checks that the
directory exists before trying to use it.

 postgresql.eselect | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/postgresql.eselect b/postgresql.eselect
index d7229e5..db669cc 100644
--- a/postgresql.eselect
+++ b/postgresql.eselect
@@ -256,7 +256,11 @@ do_set() {
        local mandir mansec
        for mandir in "${USR_PATH}"/share/postgresql-${slot}/man/man{1,3,7} ; do
                mansec=$(basename "${mandir}")
-               linker "${mandir}" "" "${USR_PATH}/share/man/${mansec}"
+               # Because the user could have FEATURES="noman", check the 
directory
+               # exists before using it. (https://bugs.gentoo.org/618294)
+               if [[ -d ${USR_PATH}/share/man/${mansec} ]] ; then
+                       linker "${mandir}" "" "${USR_PATH}/share/man/${mansec}"
+               fi
        done
 
        # Default share path - use a relative link here by just specifying the

Reply via email to