#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
export QT_SELECT=qt5

# Where libc2pa_c.so is installed; it's a private, package-internal dependency (not
# meant to be linked against by other packages), so it lives under its own
# subdirectory of /usr/lib rather than /usr/lib itself.
C2PA_LIBDIR := /usr/lib/bwfmetaedit

# OBS build workers have no network access, so `cargo build` can't fetch crates.io
# dependencies there. Release/Release_Source.sh pre-vendors them (with network, on a
# developer machine) into this tarball, staged next to the source tree by
# Release_OBS.sh.
VENDOR_TARBALL := $(firstword $(wildcard $(CURDIR)/../bwfmetaedit-vendor_*.tar.xz) $(wildcard $(CURDIR)/bwfmetaedit-vendor_*.tar.xz))

configure: configure-stamp
configure-stamp:
	dh_testdir
	# Add here commands to configure the package.

	fromdos      *.txt
	chmod 644    *.txt

	test -n "$(VENDOR_TARBALL)" # bwfmetaedit-vendor_*.tar.xz not found next to the source tree
	rm -rf Source/ThirdParty/c2pa-rs/vendor
	tar -xf $(VENDOR_TARBALL) -C Source/ThirdParty/c2pa-rs
	mkdir -p Source/ThirdParty/c2pa-rs/.cargo
	printf '[source.crates-io]\nreplace-with = "vendored-sources"\n\n[source.vendored-sources]\ndirectory = "vendor"\n' \
		> Source/ThirdParty/c2pa-rs/.cargo/config.toml
	cd Source/ThirdParty/c2pa-rs && \
		CARGO_HOME=$(CURDIR)/debian/cargo_home CARGO_NET_OFFLINE=true \
		cargo build --release --offline --locked -p c2pa-c-ffi \
			--no-default-features --features "rust_native_crypto, http, file_io"
	strip Source/ThirdParty/c2pa-rs/target/release/libc2pa_c.so

	cd Project/GNU/CLI && chmod u+x autogen
	cd Project/GNU/CLI && ./autogen
	cd Project/GNU/CLI && ./configure --prefix=/usr --enable-c2pa --with-c2pa-libdir=$(C2PA_LIBDIR)

	cd Project/QtCreator && ./prepare ENABLE_C2PA=yes C2PA_LIBDIR=$(C2PA_LIBDIR) BINDIR=/usr/bin

	touch $@


build: build-stamp
build-stamp: configure-stamp
	dh_testdir

	# Add here commands to compile the package.
	cd Project/GNU/CLI && $(MAKE)

	cd Project/QtCreator && $(MAKE)

	touch $@

clean:
	dh_testdir
	dh_testroot

	# Add here commands to clean up after the build process.
	# $(MAKE) clean

	dh_clean

install: build
	dh_testdir
	dh_testroot
	dh_prep
	dh_installdirs

	# Add here commands to install the package into debian/tmp
	cd Project/GNU/CLI && $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
	cd Project/QtCreator && $(MAKE) install INSTALL_ROOT=$(CURDIR)/debian/tmp

	install -dm 755 $(CURDIR)/debian/tmp$(C2PA_LIBDIR)
	install -m 755 Source/ThirdParty/c2pa-rs/target/release/libc2pa_c.so $(CURDIR)/debian/tmp$(C2PA_LIBDIR)/libc2pa_c.so

	install -dm 755 $(CURDIR)/debian/tmp/usr/share/doc/bwfmetaedit
	install -m 644 Release/ReadMe_CLI_Linux.txt $(CURDIR)/debian/tmp/usr/share/doc/bwfmetaedit/ReadMe.txt
	install -m 644 History_CLI.txt $(CURDIR)/debian/tmp/usr/share/doc/bwfmetaedit/History.txt
	install -m 644 conformance_point_document.xsd $(CURDIR)/debian/tmp/usr/share/doc/bwfmetaedit
	install -m 644 License.html $(CURDIR)/debian/tmp/usr/share/doc/bwfmetaedit

	install -dm 755 $(CURDIR)/debian/tmp/usr/share/doc/bwfmetaedit-gui
	install -m 644 Release/ReadMe_CLI_Linux.txt $(CURDIR)/debian/tmp/usr/share/doc/bwfmetaedit-gui/ReadMe.txt
	install -m 644 History_GUI.txt $(CURDIR)/debian/tmp/usr/share/doc/bwfmetaedit-gui/History.txt
	install -m 644 conformance_point_document.xsd $(CURDIR)/debian/tmp/usr/share/doc/bwfmetaedit-gui
	install -m 644 License.html $(CURDIR)/debian/tmp/usr/share/doc/bwfmetaedit-gui

	install -dm 755 $(CURDIR)/debian/tmp/usr/share/pixmaps
	install -m 644 Source/Resource/Image/Logo/Logo.png $(CURDIR)/debian/tmp/usr/share/pixmaps/bwfmetaedit.png
	install -dm 755 $(CURDIR)/debian/tmp/usr/share/icons/hicolor/128x128/apps
	install -m 644 Source/Resource/Image/Logo/Logo128.png $(CURDIR)/debian/tmp/usr/share/icons/hicolor/128x128/apps/bwfmetaedit.png

	install -dm 755 $(CURDIR)/debian/tmp/usr/share/applications
	install -m 644 Project/GNU/GUI/bwfmetaedit-gui.desktop $(CURDIR)/debian/tmp/usr/share/applications
	install -dm 755 $(CURDIR)/debian/tmp/usr/share/apps/konqueror/servicemenus/
	install -m 644 Project/GNU/GUI/bwfmetaedit-gui.kde3.desktop $(CURDIR)/debian/tmp/usr/share/apps/konqueror/servicemenus/bwfmetaedit-gui.desktop
	install -dm 755 $(CURDIR)/debian/tmp/usr/share/kde4/services/ServiceMenus/
	install -m 644 Project/GNU/GUI/bwfmetaedit-gui.kde4.desktop $(CURDIR)/debian/tmp/usr/share/kde4/services/ServiceMenus/bwfmetaedit-gui.desktop
	install -dm 755 $(CURDIR)/debian/tmp/usr/share/kservices5/ServiceMenus/
	install -m 644 Project/GNU/GUI/bwfmetaedit-gui.kde4.desktop $(CURDIR)/debian/tmp/usr/share/kservices5/ServiceMenus/bwfmetaedit-gui.desktop
	install -dm 755 $(CURDIR)/debian/tmp/usr/share/appdata
	install -m 644 Project/GNU/GUI/bwfmetaedit-gui.metainfo.xml $(CURDIR)/debian/tmp/usr/share/appdata/bwfmetaedit-gui.appdata.xml

# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.

# Build architecture-dependent files here.
binary-arch: build install
	dh_testdir
	dh_testroot
	dh_install --sourcedir=debian/tmp
	dh_installchangelogs
	dh_installdocs
	dh_installexamples
#	dh_install
#	dh_installmenu
#	dh_installdebconf
#	dh_installlogrotate
#	dh_installemacsen
#	dh_installpam
#	dh_installmime
#	dh_installinit
#	dh_installcron
#	dh_installinfo
	dh_installman
	dh_link
	dh_strip -p bwfmetaedit --dbg-package=bwfmetaedit-dbg
	dh_strip -p bwfmetaedit-plugin-c2pa --dbg-package=bwfmetaedit-plugin-c2pa-dbg
	dh_strip -p bwfmetaedit-gui --dbg-package=bwfmetaedit-gui-dbg
	dh_compress
	dh_fixperms
#	dh_perl
#	dh_python
	dh_makeshlibs -X$(C2PA_LIBDIR)
	dh_installdeb
	# libc2pa_c.so carries no SONAME (typical for a Rust cdylib) and is a private,
	# package-internal dependency, so dpkg-shlibdeps can't compute real dependency
	# information for it; point it at the lib and tell it not to fail on that.
	dh_shlibdeps -- -l$(CURDIR)/debian/bwfmetaedit-plugin-c2pa$(C2PA_LIBDIR) --ignore-missing-info
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure
