summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolic <jakov.smolic@sartura.hr>2021-01-20 11:16:10 +0100
committerDavid Seifert <soap@gentoo.org>2021-01-20 11:16:10 +0100
commit7a6e4cc929ad66caace9ee9e15dd563a03aca877 (patch)
tree98c8147d684a95760b6385b121b334501f8cdba2 /sci-physics/vgm/files
parentsci-physics/siscone: Remove old (diff)
downloadgentoo-7a6e4cc929ad66caace9ee9e15dd563a03aca877.tar.gz
gentoo-7a6e4cc929ad66caace9ee9e15dd563a03aca877.tar.bz2
gentoo-7a6e4cc929ad66caace9ee9e15dd563a03aca877.zip
sci-physics/vgm: Remove old
Signed-off-by: Jakov Smolic <jakov.smolic@sartura.hr> Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sci-physics/vgm/files')
-rw-r--r--sci-physics/vgm/files/vgm-fix-FindCLHEP.patch64
1 files changed, 0 insertions, 64 deletions
diff --git a/sci-physics/vgm/files/vgm-fix-FindCLHEP.patch b/sci-physics/vgm/files/vgm-fix-FindCLHEP.patch
deleted file mode 100644
index d3bf3d0d4f31..000000000000
--- a/sci-physics/vgm/files/vgm-fix-FindCLHEP.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-diff -Naur vgm/cmake/FindCLHEP.cmake vgm.patched/cmake/FindCLHEP.cmake
---- vgm/cmake/FindCLHEP.cmake 2019-01-25 18:46:25.000000000 +0100
-+++ vgm.patched/cmake/FindCLHEP.cmake 2019-06-29 19:50:18.092076913 +0200
-@@ -4,13 +4,13 @@
- # The configuration file for CMake build for Virtual Geometry Model
- # Copyright (C) 2012, Ivana Hrivnacova
- # All rights reserved.
--#
-+#
- # For the licensing terms see vgm/LICENSE.
- # Contact: ivana@ipno.in2p3.fr
- # ------------------------------------------------------------------------------
-
--# The CMake build for Virtual Geometry Model is a result of a merge
--# of the CMake configuration files kindly provided
-+# The CMake build for Virtual Geometry Model is a result of a merge
-+# of the CMake configuration files kindly provided
- # by Florian Uhlig, GSI and Pere Mato, CERN.
-
- # - Try to find CLHEP
-@@ -36,28 +36,29 @@
- $ENV{CLHEP_BASE_DIR}/include
- )
-
--# CLHEP library external to Geant4
--find_path(EXTERNAL_CLHEP_LIBRARY_DIR NAMES libCLHEP.so libCLHEP.dylib PATHS
-+# CLHEP library external to Geant4
-+find_library(EXTERNAL_CLHEP_LIBRARY NAMES libCLHEP.so libCLHEP.dylib PATHS
- ${CLHEP_LIB_DIR}
- ${CLHEP_DIR}/lib
- $ENV{CLHEP_BASE_DIR}/lib
- )
--if (EXTERNAL_CLHEP_LIBRARY_DIR)
-- set(CLHEP_LIBRARY_DIR ${EXTERNAL_CLHEP_LIBRARY_DIR})
-- set(CLHEP_LIBRARY_NAME CLHEP)
--endif()
--
--# CLHEP library within Geant4
--if (NOT EXTERNAL_CLHEP_LIBRARY_DIR)
-- find_path(CLHEP_LIBRARY_DIR NAMES libG4clhep.so libG4clhep.dylib PATHS
-+if (EXTERNAL_CLHEP_LIBRARY)
-+ get_filename_component(CLHEP_LIBRARY_DIR "${EXTERNAL_CLHEP_LIBRARY}" DIRECTORY)
-+ set(CLHEP_LIBRARY_NAME CLHEP)
-+endif()
-+
-+# CLHEP library within Geant4
-+if (NOT EXTERNAL_CLHEP_LIBRARY)
-+ find_library(CLHEP_LIBRARY NAMES libG4clhep.so libG4clhep.dylib PATHS
- ${Geant4_DIR}/..
- ${GEANT4_LIBRARY_DIR}
- )
-- if (CLHEP_LIBRARY_DIR)
-+ if (CLHEP_LIBRARY)
-+ get_filename_component(CLHEP_LIBRARY_DIR "${CLHEP_LIBRARY}" DIRECTORY)
- set(CLHEP_LIBRARY_NAME G4clhep)
-- endif(CLHEP_LIBRARY_DIR)
--endif()
--
-+ endif(CLHEP_LIBRARY)
-+endif()
-+
- if (CLHEP_INCLUDE_DIRS AND CLHEP_LIBRARY_DIR)
- set(CLHEP_FOUND TRUE)
- endif (CLHEP_INCLUDE_DIRS AND CLHEP_LIBRARY_DIR)