Gentoo Archives: gentoo-commits

From: Aaron Swenson <titanofold@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/pgsql-patches:eselect commit in: /
Date: Tue, 26 Apr 2011 21:46:47
Message-Id: c3f0774562030462c13873fb4a1c7ffccb2c4416.titanofold@gentoo
1 commit: c3f0774562030462c13873fb4a1c7ffccb2c4416
2 Author: Aaron W. Swenson <titanofold <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 26 11:09:03 2011 +0000
4 Commit: Aaron Swenson <titanofold <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 11:09:03 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/pgsql-patches.git;a=commit;h=c3f07745
7
8 Put double quotes back around '-name' to be consistent with the rest of the
9 module.
10 Add trailing slash to source path just to be safe.
11
12 ---
13 postgresql.eselect | 10 +++++-----
14 1 files changed, 5 insertions(+), 5 deletions(-)
15
16 diff --git a/postgresql.eselect b/postgresql.eselect
17 index ecbe766..7ebbfde 100644
18 --- a/postgresql.eselect
19 +++ b/postgresql.eselect
20 @@ -7,7 +7,7 @@ inherit config multilib
21 DESCRIPTION="Manage active PostgreSQL client applications and libraries"
22 MAINTAINER="pgsql-bugs@g.o"
23 SVN_DATE='$Date: $'
24 -VERSION="1.0.9"
25 +VERSION="1.0.10"
26
27 # Global Data
28 B_PATH="${EROOT%/}/usr"
29 @@ -202,13 +202,13 @@ do_set() {
30 ln -s "${B_PATH}/${x}/postgresql-${SLOT}/${x}" "${B_PATH}/${x}/postgresql"
31 echo "${B_PATH}/${x}/postgresql" >> "${E_PATH}"/active.links
32 # Linker works for files
33 - linker "${B_PATH}/${x}/postgresql-${SLOT}/${x}" \
34 - '-name lib*' "${B_PATH}/${x}"
35 + linker "${B_PATH}/${x}/postgresql-${SLOT}/${x}/" \
36 + "-name lib*" "${B_PATH}/${x}"
37 fi
38 done
39
40 # Link binaries to /usr/bin/
41 - linker "${B_PATH}/$(lib_dir)/postgresql-${SLOT}/bin" \
42 + linker "${B_PATH}/$(lib_dir)/postgresql-${SLOT}/bin/" \
43 "-type f" "${B_PATH}/bin"
44
45 # Default share path
46 @@ -324,7 +324,7 @@ do_update() {
47 done
48 local tmp_manpath="${B_PATH}/share/postgresql-${curslot}/man/"
49 [[ -d ${tmp_manpath} ]] && manpath+=":${tmp_manpath}"
50 - linker "${B_PATH}/$(lib_dir)/postgresql-${curslot}/bin" \
51 + linker "${B_PATH}/$(lib_dir)/postgresql-${curslot}/bin/" \
52 "-type f" "${B_PATH}/bin" "${curslot//.}"
53 echo "done."
54 done