jlec 15/06/08 06:46:33 Modified: scribus-1.5.0-fpic.patch Log: Handle fPIC for hppa, bug #551452 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
Revision Changes Path 1.3 app-office/scribus/files/scribus-1.5.0-fpic.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/scribus/files/scribus-1.5.0-fpic.patch?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/scribus/files/scribus-1.5.0-fpic.patch?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-office/scribus/files/scribus-1.5.0-fpic.patch?r1=1.2&r2=1.3 Index: scribus-1.5.0-fpic.patch =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-office/scribus/files/scribus-1.5.0-fpic.patch,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- scribus-1.5.0-fpic.patch 29 May 2015 09:37:12 -0000 1.2 +++ scribus-1.5.0-fpic.patch 8 Jun 2015 06:46:33 -0000 1.3 @@ -1,24 +1,31 @@ - CMakeLists.txt | 8 ++++++++ - scribus/colormgmt/CMakeLists.txt | 2 ++ - scribus/desaxe/CMakeLists.txt | 1 + - scribus/fonts/CMakeLists.txt | 1 + - scribus/styles/CMakeLists.txt | 2 ++ - scribus/text/CMakeLists.txt | 1 + - scribus/third_party/lib2geom/CMakeLists.txt | 8 +------- - scribus/third_party/pgf/CMakeLists.txt | 2 ++ - scribus/third_party/prc/CMakeLists.txt | 2 ++ - scribus/third_party/wpg/CMakeLists.txt | 7 ++++--- - scribus/third_party/zip/CMakeLists.txt | 2 ++ - 11 files changed, 26 insertions(+), 10 deletions(-) + CMakeLists.txt | 15 +++++++++++++++ + scribus/colormgmt/CMakeLists.txt | 2 ++ + scribus/desaxe/CMakeLists.txt | 1 + + scribus/fonts/CMakeLists.txt | 1 + + scribus/styles/CMakeLists.txt | 2 ++ + scribus/text/CMakeLists.txt | 1 + + scribus/third_party/lib2geom/CMakeLists.txt | 8 +------- + scribus/third_party/pgf/CMakeLists.txt | 2 ++ + scribus/third_party/prc/CMakeLists.txt | 2 ++ + scribus/third_party/wpg/CMakeLists.txt | 7 ++++--- + scribus/third_party/zip/CMakeLists.txt | 2 ++ + 11 files changed, 33 insertions(+), 10 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt -index 29d66f3..62d145f 100644 +index 29d66f3..a92da7e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt -@@ -131,6 +131,14 @@ IF (_machine_sparc64) +@@ -131,6 +131,21 @@ IF (_machine_sparc64) SET(ARCH64BIT 1) ENDIF (_machine_sparc64) ++STRING(REGEX MATCH "(hppa*)" _machine_hppa "${MACHINE}") ++IF (_machine_hppa) ++ MESSAGE(STATUS "Found target Hppa") ++ SET(ARCH_HPPA 1) ++ENDIF (_machine_hppa) ++ ++ +# We need to pass -fPIC to lib2geom on amd64, mips, mipsel, and hppa. See: +# http://www.gentoo.org/proj/en/base/amd64/howtos/index.xml?part=1&chap=3 and +# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=559133
