diff -Nru condor-8.2.3~dfsg.1/debian/changelog condor-8.2.3~dfsg.1/debian/changelog --- condor-8.2.3~dfsg.1/debian/changelog 2014-12-05 20:10:33.000000000 +0000 +++ condor-8.2.3~dfsg.1/debian/changelog 2015-01-07 06:38:05.000000000 +0000 @@ -1,3 +1,9 @@ +condor (8.2.3~dfsg.1-5+rpi1) jessie-staging; urgency=medium + + * Add raspbian to OS detection code. + + -- Peter Michael Green Wed, 07 Jan 2015 06:37:47 +0000 + condor (8.2.3~dfsg.1-5) unstable; urgency=medium * Fix wrong default SPOOL location introduced with 8.2.3~dfsg.1-4. Whenever diff -Nru condor-8.2.3~dfsg.1/debian/patches/add-raspbian condor-8.2.3~dfsg.1/debian/patches/add-raspbian --- condor-8.2.3~dfsg.1/debian/patches/add-raspbian 1970-01-01 00:00:00.000000000 +0000 +++ condor-8.2.3~dfsg.1/debian/patches/add-raspbian 2015-01-07 06:38:05.000000000 +0000 @@ -0,0 +1,21 @@ +Description: add raspbian to os detection code. +Author: Peter Michael Green + +--- condor-8.0.5~dfsg.1.orig/build/cmake/macros/SystemSpecificInformations.cmake ++++ condor-8.0.5~dfsg.1/build/cmake/macros/SystemSpecificInformations.cmake +@@ -159,7 +159,14 @@ if(UNIX) + set(LINUX_VER "${CMAKE_MATCH_1}") + set(SYSTEM_NAME "Debian-${CMAKE_MATCH_1}") + set(DEB_SYSTEM_NAME "deb_${CMAKE_MATCH_1}") +- endif(LINUX_ISSUE MATCHES "Debian") ++ endif(LINUX_ISSUE MATCHES "Debian") ++ if(LINUX_ISSUE MATCHES "Raspbian") ++ string(REGEX MATCH "Raspbian .*ux ([0-9]+(\\.[0-9]+)?)" DEBIAN "${LINUX_ISSUE}") ++ set(LINUX_NAME "Raspbian") ++ set(LINUX_VER "${CMAKE_MATCH_1}") ++ set(SYSTEM_NAME "Debian-${CMAKE_MATCH_1}") ++ set(DEB_SYSTEM_NAME "deb_${CMAKE_MATCH_1}") ++ endif(LINUX_ISSUE MATCHES "Raspbian") + # SuSE / openSUSE case + if(LINUX_ISSUE MATCHES "openSUSE") + string(REGEX MATCH "openSUSE ([0-9]+\\.[0-9]+)" OPENSUSE "${LINUX_ISSUE}") diff -Nru condor-8.2.3~dfsg.1/debian/patches/series condor-8.2.3~dfsg.1/debian/patches/series --- condor-8.2.3~dfsg.1/debian/patches/series 2014-11-29 09:30:28.000000000 +0000 +++ condor-8.2.3~dfsg.1/debian/patches/series 2015-01-07 06:38:28.000000000 +0000 @@ -13,3 +13,4 @@ noformat_arg as-needed-libs-ftbfs.patch qsub_sentinel_robustness +add-raspbian