tags 614531 + patch tags 614531 + pending thanks Dear maintainer,
I've prepared an NMU for awesome (versioned as 3.4.9-1.1) and uploaded it to DELAYED/2. Please feel free to tell me if I should delay it longer. Regards.
diff -Nru awesome-3.4.9/debian/changelog awesome-3.4.9/debian/changelog --- awesome-3.4.9/debian/changelog 2011-01-17 21:46:40.000000000 +0800 +++ awesome-3.4.9/debian/changelog 2011-04-30 14:17:20.000000000 +0800 @@ -1,3 +1,10 @@ +awesome (3.4.9-1.1) unstable; urgency=low + + * Non-maintainer upload. + * Patch CMakeList to build successfully. (Closes: #614531) + + -- Ming-Ting Yao Wei <medical...@gmail.com> Sat, 30 Apr 2011 13:56:39 +0800 + awesome (3.4.9-1) unstable; urgency=low * New upstream release diff -Nru awesome-3.4.9/debian/patches/normalize-icon-path-names.diff awesome-3.4.9/debian/patches/normalize-icon-path-names.diff --- awesome-3.4.9/debian/patches/normalize-icon-path-names.diff 1970-01-01 08:00:00.000000000 +0800 +++ awesome-3.4.9/debian/patches/normalize-icon-path-names.diff 2011-04-30 13:56:32.000000000 +0800 @@ -0,0 +1,19 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -273,14 +273,15 @@ + + # {{{ Theme icons + file(GLOB icon_sources RELATIVE ${SOURCE_DIR} ${SOURCE_DIR}/themes/*/titlebar/*.png) +-set(ALL_ICONS ${icon_sources}) + + foreach(icon ${icon_sources}) + # Copy all icons to the build dir to simplify the following code. + # Source paths are interpreted relative to ${SOURCE_DIR}, target paths + # relative to ${BUILD_DIR}. + get_filename_component(icon_path ${icon} PATH) ++ get_filename_component(icon_name ${icon} NAME) + file(COPY ${icon} DESTINATION ${icon_path}) ++ set(ALL_ICONS ${ALL_ICONS} "${icon_path}/${icon_name}") + endforeach() + + macro(a_icon_convert match replacement input) diff -Nru awesome-3.4.9/debian/patches/series awesome-3.4.9/debian/patches/series --- awesome-3.4.9/debian/patches/series 2011-01-17 21:29:45.000000000 +0800 +++ awesome-3.4.9/debian/patches/series 2011-04-30 13:55:58.000000000 +0800 @@ -1 +1,2 @@ debian-changes-3.4.9-1 +normalize-icon-path-names.diff