Gentoo Archives: gentoo-commits

From: "Tiziano Mueller (dev-zero)" <dev-zero@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/task/files: task-2.3.0-issue-1473-rcdir-fix.patch
Date: Sun, 31 Aug 2014 15:35:42
Message-Id: 20140831153539.1C4F945AB@oystercatcher.gentoo.org
1 dev-zero 14/08/31 15:35:39
2
3 Added: task-2.3.0-issue-1473-rcdir-fix.patch
4 Log:
5 Version bump (bug #498834), thanks to Elias Probst.
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x1A5D023975B0583D!)
8
9 Revision Changes Path
10 1.1 app-misc/task/files/task-2.3.0-issue-1473-rcdir-fix.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/task/files/task-2.3.0-issue-1473-rcdir-fix.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/task/files/task-2.3.0-issue-1473-rcdir-fix.patch?rev=1.1&content-type=text/plain
14
15 Index: task-2.3.0-issue-1473-rcdir-fix.patch
16 ===================================================================
17 From 0e291e8b022b058f1db6112f5437b7a01e563a2e Mon Sep 17 00:00:00 2001
18 From: Elias Probst <mail@×××××××××××.eu>
19 Date: Thu, 23 Jan 2014 00:04:46 +0100
20 Subject: [PATCH] Fixed the usage of TASK_RCDIR which was introduced by #1473.
21 Until now, the content of doc/rc was still installed to TASK_DOCDIR instead
22 of TASK_RCDIR.
23
24 ---
25 doc/CMakeLists.txt | 2 +-
26 1 file changed, 1 insertion(+), 1 deletion(-)
27
28 diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
29 index 99a1a2f..ce5d13f 100644
30 --- a/doc/CMakeLists.txt
31 +++ b/doc/CMakeLists.txt
32 @@ -11,6 +11,6 @@ install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/man/ DESTINATION ${TASK_MAN1DIR
33 FILES_MATCHING PATTERN "*.1")
34 install (DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/man/ DESTINATION ${TASK_MAN5DIR}
35 FILES_MATCHING PATTERN "*.5")
36 -install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/rc DESTINATION ${TASK_DOCDIR})
37 +install (DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/rc/ DESTINATION ${TASK_RCDIR})
38
39 install (FILES ${CMAKE_CURRENT_SOURCE_DIR}/ref/task-ref.pdf DESTINATION ${TASK_DOCDIR})
40 --
41 1.8.3.2