Bug#930869: Don't release with buster

2019-06-23 Thread Ivo De Decker
Control: tags -1 buster-ignore

Hi,

On Fri, Jun 21, 2019 at 07:42:00PM +0200, Michael Biebl wrote:
> As former maintainer of pm-utils, I don't want to see pm-utils released
> with buster.

acpi-support depends on it, so removal is not possible. And even if it was, it
would probably be too late for that.

Tagging this bug buster-ignore accordingly.

Ivo



Processed: Re: Don't release with buster

2019-06-23 Thread Debian Bug Tracking System
Processing control commands:

> tags -1 buster-ignore
Bug #930869 [pm-utils] Don't release with buster
Added tag(s) buster-ignore.

-- 
930869: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=930869
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#930969: mffm-fftw FTCBFS: broken Makefile dependencies

2019-06-23 Thread Helmut Grohne
Source: mffm-fftw
Version: 1.7-4
Tags: patch upstream

mffm-fftw fails to cross build from source, because it relinks using the
wrong compiler during make install. In part this happens, because
dh_auto_install doesn't pass cross tools to make install. Having make
install compile or link stuff seems wrong though. This happens, because
upstream's Makefile dependencies are broken. The attached patch fixes
the dependencies and makes mffm-fftw cross buildable. Please consider
applying it.

Helmut
--- mffm-fftw-1.7.orig/Makefile
+++ mffm-fftw-1.7/Makefile
@@ -40,9 +40,11 @@
 docs:
 	doxygen
 
-libs:
-	$(MAKELIB),libfft.so.1 -o libfft.so.1 $(OBJ) -lfftw3
-	$(MAKELIB),lib2Dfft.so.1 -o lib2Dfft.so.1 $(OBJ2D) -lfftw3
+libs: libfft.so.1 lib2Dfft.so.1
+libfft.so.1: $(OBJ)
+	$(MAKELIB),$@ -o $@ $^ -lfftw3
+lib2Dfft.so.1: $(OBJ2D)
+	$(MAKELIB),$@ -o $@ $^ -lfftw3
 
 ex:
 #fftw V2
@@ -54,9 +56,7 @@
 #	$(CC) *.o -lfftw3 real2DFFTExample.cc -o real2DFFTExample
 #	$(CC) *.o -lfftw3 realFFTExample.cc -o realFFTExample
 
-install: $(OBJ) \
-	$(OBJ2D) \
-	libs \
+install: libfft.so.1 lib2Dfft.so.1 \
 	docs
 	install --directory $(LIB) $(INC) $(DOCS)/html $(DOCS)/examples
 	install lib* $(LIB)