From c38ac24b3c5b6648a1c96265d2b46bf546a71b02 Mon Sep 17 00:00:00 2001 From: bouyer Date: Mon, 17 Feb 2014 20:38:59 +0000 Subject: Import kicad from the stable branch as of 20140214. Sources are available only from bzr (no release) so I made a snapshot of the source tree and put it on a http server. This package is based on the package in wip by jonathan.gabris@gmail.com Kicad is an open source (GPL) software for the creation of electronic schematic diagrams and printed circuit board artwork. Designed and written by Jean-Pierre Charras, a researcher at LIS (Laboratoire des Images et des Signaux) and a teacher in IUT de Saint Martin d'Heres (France), in the field of electrical engineering and image processing. Kicad is a set of four softwares and a project manager: * Eeschema: Schematic entry. * Pcbnew: Board editor. * Gerbview: GERBER viewer (photoplotter documents). * Cvpcb: footprint selector for components used in the circuit design. * Kicad: project manager. --- cad/kicad/patches/patch-CMakeModules_Functions.cmake | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 cad/kicad/patches/patch-CMakeModules_Functions.cmake (limited to 'cad/kicad/patches/patch-CMakeModules_Functions.cmake') diff --git a/cad/kicad/patches/patch-CMakeModules_Functions.cmake b/cad/kicad/patches/patch-CMakeModules_Functions.cmake new file mode 100644 index 00000000000..98a81902dca --- /dev/null +++ b/cad/kicad/patches/patch-CMakeModules_Functions.cmake @@ -0,0 +1,19 @@ +$NetBSD: patch-CMakeModules_Functions.cmake,v 1.1.1.1 2014/02/17 20:38:59 bouyer Exp $ + +Don't use ${CMAKE_MODULE_PATH} directly as it will be changed +and containt multiple directories + +--- CMakeModules/Functions.cmake.orig 2014-02-14 20:02:52.000000000 +0100 ++++ CMakeModules/Functions.cmake 2014-02-14 20:03:21.000000000 +0100 +@@ -33,9 +33,9 @@ + -DinputFile=${inputFile} + -DoutHeaderFile=${outHeaderFile} + -DoutCppFile=${outCppFile} +- -P ${CMAKE_MODULE_PATH}/TokenList2DsnLexer.cmake ++ -P ${PROJECT_SOURCE_DIR}/CMakeModules/TokenList2DsnLexer.cmake + DEPENDS ${inputFile} +- ${CMAKE_MODULE_PATH}/TokenList2DsnLexer.cmake ++ ${PROJECT_SOURCE_DIR}/CMakeModules/TokenList2DsnLexer.cmake + COMMENT "TokenList2DsnLexer.cmake creating: + ${outHeaderFile} and + ${outCppFile} from -- cgit v1.2.3