#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-z,defs -Wl,-O1 -Wl,--as-needed

# needed with the Ubuntu toolchain to avoid plugin issues
export DEB_LDFLAGS_MAINT_STRIP := -Wl,-Bsymbolic-functions

# Parallel breaks i18n https://bugzilla.gnome.org/770100

%:
	dh $@ --no-parallel --with gir,gnome,python3

override_dh_auto_configure:
	dh_auto_configure -- --enable-gtk-doc

override_dh_python3:
	dh_python3
	dh_python3 /usr/lib/$(DEB_HOST_MULTIARCH)/gedit/plugins
	dh_python3 /usr/share/gedit/plugins

override_dh_girepository:
	dh_girepository	-ldebian/tmp/usr/share/gedit/gir-1.0 \
		/usr/lib/$(DEB_HOST_MULTIARCH)/gedit/girepository-1.0

override_dh_install:
	# remove cruft
	find debian/tmp -name '*.la' -print -delete
	rm -rf debian/tmp/usr/lib/*/gedit/plugins/*/__pycache__/
	# remove gnome-text-editor symlink, it's registered in the
	# debian alternatives system instead. See postinst.
	rm -f debian/tmp/usr/bin/gnome-text-editor
	dh_install
	pkg-gnome-compat-desktop-file \
		$(CURDIR)/debian/gedit/usr/share/applications/org.gnome.gedit.desktop \
		$(CURDIR)/debian/gedit/usr/share/applications/gedit.desktop

override_dh_missing:
	dh_missing --fail-missing
