On Fri, Jun 19, 2020 at 09:41:22PM +0300, Yavor Doganov wrote: > [email protected] wrote: > > Yavor Doganov <[email protected]> writes: > > > > > Thanks; I'll fix this shortly -- the upload will depend on my sponsor > > > though. Meanwhile, feel free to upload libgphoto2 whenever you like > > > and raise the severity of this bug to serious. > > > > Did so, thanks. I'm willing to sponsor your upload fixing this issue if > > needed. > > It has a bunch of other changes so I'm not sure you'll be comfortable > reviewing them. And I've already contacted my sponsor... Anyway, the > updated package is available at mentors.d.n and also on Salsa.
Fixing the FTBFS is fairly simple and the attached patch is sufficient. Might be worth doing the NMU as it has been removed from testing. -- Regards Sudip
diff -Nru camera.app-0.8.0/debian/rules camera.app-0.8.0/debian/rules --- camera.app-0.8.0/debian/rules 2018-02-07 12:12:59.000000000 +0000 +++ camera.app-0.8.0/debian/rules 2020-07-20 21:11:00.000000000 +0100 @@ -17,8 +17,8 @@ # override GNUmakefile.preamble DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) -export ADDITIONAL_INCLUDE_DIRS += `/usr/lib/$(DEB_HOST_MULTIARCH)/libgphoto2-dev/bin/gphoto2-config --cflags` -export ADDITIONAL_GUI_LIBS += `/usr/lib/$(DEB_HOST_MULTIARCH)/libgphoto2-dev/bin/gphoto2-config --libs` +export ADDITIONAL_INCLUDE_DIRS += `pkg-config libgphoto2 --cflags` +export ADDITIONAL_GUI_LIBS += `pkg-config libgphoto2 --libs` %: dh $@

