* [gentoo-commits] gentoo-x86 commit in sci-libs/neartree/files: CMakeLists.txt
@ 2012-05-30 12:34 Justin Lecher (jlec)
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher (jlec) @ 2012-05-30 12:34 UTC (permalink / raw
To: gentoo-commits
jlec 12/05/30 12:34:19
Added: CMakeLists.txt
Log:
sci-libs/neartree: Clean buildsystem and move to cmake instead of patching
(Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
Revision Changes Path
1.1 sci-libs/neartree/files/CMakeLists.txt
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/neartree/files/CMakeLists.txt?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/neartree/files/CMakeLists.txt?rev=1.1&content-type=text/plain
Index: CMakeLists.txt
===================================================================
cmake_minimum_required(VERSION 2.8)
project (Neartree C)
SET (LIB_MAJOR 5)
SET (LIB_MINOR 1)
SET (LIB_RELEASE 0)
SET (_soversion ${LIB_MAJOR}.${LIB_MINOR}.${LIB_RELEASE})
include_directories ("${PROJECT_SOURCE_DIR}")
add_library(CNearTree SHARED CNearTree.c)
target_link_libraries(CNearTree CVector m)
set_target_properties(CNearTree PROPERTIES SOVERSION ${LIB_MAJOR} VERSION ${_soversion})
INSTALL(TARGETS CNearTree DESTINATION ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
install(FILES CNearTree.h rhrand.h TNear.h triple.h
DESTINATION ${CMAKE_INSTALL_PREFIX}/include)
install(FILES README_NearTree.txt DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/neartree-${LIB_MAJOR}.${LIB_MINOR}.${LIB_RELEASE})
install(FILES README_NearTree.html index.html DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/neartree-${LIB_MAJOR}.${LIB_MINOR}.${LIB_RELEASE}/html)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/neartree/files: CMakeLists.txt
@ 2012-05-30 19:04 Justin Lecher (jlec)
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher (jlec) @ 2012-05-30 19:04 UTC (permalink / raw
To: gentoo-commits
jlec 12/05/30 19:04:57
Modified: CMakeLists.txt
Log:
sci-libs/neartree: Don't install into /usr/usr/lib
(Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
Revision Changes Path
1.2 sci-libs/neartree/files/CMakeLists.txt
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/neartree/files/CMakeLists.txt?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/neartree/files/CMakeLists.txt?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/neartree/files/CMakeLists.txt?r1=1.1&r2=1.2
Index: CMakeLists.txt
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/neartree/files/CMakeLists.txt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- CMakeLists.txt 30 May 2012 12:34:19 -0000 1.1
+++ CMakeLists.txt 30 May 2012 19:04:57 -0000 1.2
@@ -14,7 +14,7 @@
set_target_properties(CNearTree PROPERTIES SOVERSION ${LIB_MAJOR} VERSION ${_soversion})
-INSTALL(TARGETS CNearTree DESTINATION ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR})
+INSTALL(TARGETS CNearTree DESTINATION ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX})
install(FILES CNearTree.h rhrand.h TNear.h triple.h
DESTINATION ${CMAKE_INSTALL_PREFIX}/include)
install(FILES README_NearTree.txt DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/neartree-${LIB_MAJOR}.${LIB_MINOR}.${LIB_RELEASE})
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sci-libs/neartree/files: CMakeLists.txt
@ 2012-06-17 19:24 Justin Lecher (jlec)
0 siblings, 0 replies; 3+ messages in thread
From: Justin Lecher (jlec) @ 2012-06-17 19:24 UTC (permalink / raw
To: gentoo-commits
jlec 12/06/17 19:24:38
Modified: CMakeLists.txt
Log:
sci-libs/neartree: Install docs into $PF, #421629
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.3 sci-libs/neartree/files/CMakeLists.txt
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/neartree/files/CMakeLists.txt?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/neartree/files/CMakeLists.txt?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/neartree/files/CMakeLists.txt?r1=1.2&r2=1.3
Index: CMakeLists.txt
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/neartree/files/CMakeLists.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- CMakeLists.txt 30 May 2012 19:04:57 -0000 1.2
+++ CMakeLists.txt 17 Jun 2012 19:24:38 -0000 1.3
@@ -17,5 +17,5 @@
INSTALL(TARGETS CNearTree DESTINATION ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX})
install(FILES CNearTree.h rhrand.h TNear.h triple.h
DESTINATION ${CMAKE_INSTALL_PREFIX}/include)
-install(FILES README_NearTree.txt DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/neartree-${LIB_MAJOR}.${LIB_MINOR}.${LIB_RELEASE})
-install(FILES README_NearTree.html index.html DESTINATION ${CMAKE_INSTALL_PREFIX}/share/doc/neartree-${LIB_MAJOR}.${LIB_MINOR}.${LIB_RELEASE}/html)
+install(FILES README_NearTree.txt DESTINATION ${DOC_DIR})
+install(FILES README_NearTree.html index.html DESTINATION ${DOC_DIR}/html)
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-06-17 19:24 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-30 12:34 [gentoo-commits] gentoo-x86 commit in sci-libs/neartree/files: CMakeLists.txt Justin Lecher (jlec)
-- strict thread matches above, loose matches on Subject: below --
2012-05-30 19:04 Justin Lecher (jlec)
2012-06-17 19:24 Justin Lecher (jlec)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox