manibuilder/anita: Compensate for missing pkg-config

The old anita:7.1 images don't have pkg-config and packages are not
available anymore. Hence configure the available libraries manually.

Change-Id: Id86f77690cd595380fd32c9d7633dcacac9d258a
Signed-off-by: Nico Huber <nico.h@gmx.de>
Reviewed-on: https://review.coreboot.org/c/flashrom-stable/+/73774
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
diff --git a/util/manibuilder/Makefile.anita b/util/manibuilder/Makefile.anita
index 25695ec..d4fb23d 100644
--- a/util/manibuilder/Makefile.anita
+++ b/util/manibuilder/Makefile.anita
@@ -68,3 +68,11 @@
 
 # Compiler doesn't like simplified initializers, e.g. `= { 0 };`
 anita\:7.1-i386 anita\:7.1-amd64: MAKEARGS+=WARNERROR=no
+
+# Missing pkg-config (container images can't be updated anymore)
+anita\:7.1-i386 anita\:7.1-amd64: MAKEARGS+=HAS_LIBPCI=yes
+anita\:7.1-i386 anita\:7.1-amd64: MAKEARGS+=CONFIG_LIBPCI_LDFLAGS='-L/usr/pkg/lib -lpciutils -lpci'
+anita\:7.1-i386 anita\:7.1-amd64: MAKEARGS+=CONFIG_LIBPCI_CFLAGS=-I/usr/pkg/include/pciutils
+anita\:7.1-i386 anita\:7.1-amd64: MAKEARGS+=HAS_LIBUSB1=yes
+anita\:7.1-i386 anita\:7.1-amd64: MAKEARGS+=CONFIG_LIBUSB1_LDFLAGS='-L/usr/pkg/lib -lusb-1.0'
+anita\:7.1-i386 anita\:7.1-amd64: MAKEARGS+=CONFIG_LIBUSB1_CFLAGS=-I/usr/pkg/include/libusb-1.0