diff -Nru condor-8.2.1~dfsg.1/debian/changelog condor-8.2.1~dfsg.1/debian/changelog --- condor-8.2.1~dfsg.1/debian/changelog 2014-07-13 14:25:24.000000000 +0000 +++ condor-8.2.1~dfsg.1/debian/changelog 2014-07-22 23:38:39.000000000 +0000 @@ -1,3 +1,9 @@ +condor (8.2.1~dfsg.1-1+rpi1) jessie-staging; urgency=medium + + * Add raspbian to OS detection code. + + -- Peter Michael Green Tue, 22 Jul 2014 23:38:16 +0000 + condor (8.2.1~dfsg.1-1) unstable; urgency=medium * New upstream release in the 8.2 stable series. diff -Nru condor-8.2.1~dfsg.1/debian/patches/add-raspbian condor-8.2.1~dfsg.1/debian/patches/add-raspbian --- condor-8.2.1~dfsg.1/debian/patches/add-raspbian 1970-01-01 00:00:00.000000000 +0000 +++ condor-8.2.1~dfsg.1/debian/patches/add-raspbian 2014-07-22 23:38:39.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.1~dfsg.1/debian/patches/series condor-8.2.1~dfsg.1/debian/patches/series --- condor-8.2.1~dfsg.1/debian/patches/series 2014-07-13 13:02:01.000000000 +0000 +++ condor-8.2.1~dfsg.1/debian/patches/series 2014-07-22 23:39:53.000000000 +0000 @@ -10,3 +10,4 @@ fix_condor_run alpha-fix-getpid.patch noformat_arg +add-raspbian