diff -pruN 0.3.2-5/debian/changelog 0.3.2-6/debian/changelog
--- 0.3.2-5/debian/changelog	2025-09-10 00:51:38.000000000 +0000
+++ 0.3.2-6/debian/changelog	2025-10-28 01:32:22.000000000 +0000
@@ -1,3 +1,11 @@
+libgxps (0.3.2-6) unstable; urgency=medium
+
+  * Remove Suggests: devhelp
+  * Simplify doc configure flags
+  * Bump Standards Version to 4.7.2
+
+ -- Jeremy Bícha <jbicha@ubuntu.com>  Mon, 27 Oct 2025 21:32:22 -0400
+
 libgxps (0.3.2-5) unstable; urgency=medium
 
   [ Simon McVittie ]
diff -pruN 0.3.2-5/debian/control 0.3.2-6/debian/control
--- 0.3.2-5/debian/control	2025-09-10 00:51:38.000000000 +0000
+++ 0.3.2-6/debian/control	2025-10-28 01:32:22.000000000 +0000
@@ -23,7 +23,7 @@ Build-Depends: debhelper-compat (= 13),
                xsltproc <!nodoc>,
 Build-Depends-Indep: gtk-doc-tools (>= 1.14) <!nodoc>,
                      libglib2.0-doc <!nodoc>,
-Standards-Version: 4.6.2
+Standards-Version: 4.7.2
 Vcs-Browser: https://salsa.debian.org/gnome-team/libgxps
 Vcs-Git: https://salsa.debian.org/gnome-team/libgxps.git
 Homepage: https://wiki.gnome.org/libgxps
@@ -121,7 +121,6 @@ Section: doc
 Architecture: all
 Multi-Arch: foreign
 Depends: ${misc:Depends}
-Suggests: devhelp
 Description: library for handling and rendering XPS documents (documentation)
  OpenXPS or XPS stands for XML Paper Specification. It is based on XML and it's
  a new electronic paper format originally developed by Microsoft and it serves
diff -pruN 0.3.2-5/debian/rules 0.3.2-6/debian/rules
--- 0.3.2-5/debian/rules	2025-09-10 00:51:38.000000000 +0000
+++ 0.3.2-6/debian/rules	2025-10-28 01:32:22.000000000 +0000
@@ -4,23 +4,10 @@ export DEB_BUILD_MAINT_OPTIONS = hardeni
 export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs
 export DPKG_GENSYMBOLS_CHECK_LEVEL = 4
 
-built_binaries := $(shell dh_listpackages)
-configure_flags =
-
-ifeq (,$(filter nodoc,$(DEB_BUILD_PROFILES)))
-configure_flags += -Denable-man=true
-else
-configure_flags += -Denable-man=false
-endif
-
-ifeq ($(filter %-doc,$(built_binaries)),)
-configure_flags += -Denable-gtk-doc=false
-else
-configure_flags += -Denable-gtk-doc=true
-endif
-
 %:
 	dh $@
 
 override_dh_auto_configure:
-	dh_auto_configure -- $(configure_flags)
+	dh_auto_configure -- \
+		-Denable-gtk-doc=$(if $(filter %-doc,$(shell dh_listpackages)),true,false) \
+		-Denable-man=$(if $(filter nodoc,$(DEB_BUILD_OPTIONS)),false,true)
