minidlna: exclude "po" directory to fix CONFIG_BUILD_NLS=y builds
authorRafał Miłecki <rafal@milecki.pl>
Mon, 19 Feb 2018 11:43:14 +0000 (12:43 +0100)
committerRafał Miłecki <rafal@milecki.pl>
Mon, 19 Feb 2018 11:47:31 +0000 (12:47 +0100)
commit90d3ef2f76338f78101dd05c0ee171c4e1e3df55
tree601153c93c1d98aee3000fd29f43881ad8a96c59
parent56331e808f499610c7a3ee295485ad49a9d351e7
minidlna: exclude "po" directory to fix CONFIG_BUILD_NLS=y builds

This fixes:
*** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version 0.18 but the autoconf macros are from gettext version 0.19

Makefile of minidlna package specifies PKG_FIXUP:=autoreconf. That
results in calling autoreconf with multiple arguments, including many -I
ones. One of autoreconf steps is calling aclocal with the same set of -I
arguments.

All of that results in:
1) aclocal using staging_dir's /usr/share/aclocal and its po.m4
2) not using minidlna's po.m4
3) not updating Makefile.in.in

If staging_dir's po.m4 has different GETTEXT_MACRO_VERSION than the
minidlna's one it'll result in a mismatch in the Makefile.in. Ideally we
should take care of regenerating Makefile.in.in but this isn't
currentlly supported. As localization isn't properly supported anyway
(no shipping .mo files) it's safe to just disable building po files.

Added patch comes from the master branch commit d5fcc972ba57d
("multimedia/minidlna: Update to 1.2.0").

Fixes: 72928442614d9 ("minidlna: backport fixes from 1.1.6 and 1.2.0 releases")
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
multimedia/minidlna/Makefile
multimedia/minidlna/patches/008-dont-build-po-files.patch [new file with mode: 0644]
multimedia/minidlna/patches/010-libav-fix.patch