diff -Nru condor-8.0.5~dfsg.1/debian/changelog condor-8.0.5~dfsg.1/debian/changelog --- condor-8.0.5~dfsg.1/debian/changelog 2014-01-02 20:49:08.000000000 +0000 +++ condor-8.0.5~dfsg.1/debian/changelog 2014-02-18 22:04:28.000000000 +0000 @@ -1,3 +1,9 @@ +condor (8.0.5~dfsg.1-1+rpi1) jessie-staging; urgency=medium + + * Add raspbian to OS detection code. + + -- Peter Michael Green Tue, 18 Feb 2014 22:04:18 +0000 + condor (8.0.5~dfsg.1-1) unstable; urgency=low [ Michael Hanke ] diff -Nru condor-8.0.5~dfsg.1/debian/patches/add-raspbian condor-8.0.5~dfsg.1/debian/patches/add-raspbian --- condor-8.0.5~dfsg.1/debian/patches/add-raspbian 1970-01-01 00:00:00.000000000 +0000 +++ condor-8.0.5~dfsg.1/debian/patches/add-raspbian 2014-02-18 22:47: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.0.5~dfsg.1/debian/patches/series condor-8.0.5~dfsg.1/debian/patches/series --- condor-8.0.5~dfsg.1/debian/patches/series 2014-01-01 17:49:19.000000000 +0000 +++ condor-8.0.5~dfsg.1/debian/patches/series 2014-02-18 22:46:42.000000000 +0000 @@ -11,3 +11,4 @@ #alpha-fix-getpid.patch noformat_arg prevent_schedd_crash +add-raspbian