Gentoo Archives: gentoo-commits

From: Johannes Huber <johu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: eclass/
Date: Sat, 03 May 2014 20:29:30
Message-Id: 1399148470.c66c427fb159eba0293ae4ffb6aff086795bb2d8.johu@gentoo
1 commit: c66c427fb159eba0293ae4ffb6aff086795bb2d8
2 Author: Elias Probst <mail <AT> eliasprobst <DOT> eu>
3 AuthorDate: Sat May 3 20:21:10 2014 +0000
4 Commit: Johannes Huber <johu <AT> gentoo <DOT> org>
5 CommitDate: Sat May 3 20:21:10 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=c66c427f
7
8 [eclass] Correct the destination path for various config files
9
10 ---
11 eclass/kde5.eclass | 3 +++
12 1 file changed, 3 insertions(+)
13
14 diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
15 index 0e1e354..cb34306 100644
16 --- a/eclass/kde5.eclass
17 +++ b/eclass/kde5.eclass
18 @@ -269,6 +269,9 @@ kde5_src_configure() {
19 cmakeargs+=( -DBUILD_TESTING=OFF )
20 fi
21
22 + # make sure config files go to /etc instead of /usr/etc
23 + cmakeargs+=(-DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc)
24 +
25 # allow the ebuild to override what we set here
26 mycmakeargs=("${cmakeargs[@]}" "${mycmakeargs[@]}")