diff options
author | dsainty <dsainty@pkgsrc.org> | 2015-09-07 01:02:00 +0000 |
---|---|---|
committer | dsainty <dsainty@pkgsrc.org> | 2015-09-07 01:02:00 +0000 |
commit | 41cb8277808f9a15b15f83c45b5ea01e4a73f3a8 (patch) | |
tree | 5dda512c6d90eeb029eb314d28d64ec1f5de2920 /multimedia/mediainfo/Makefile | |
parent | 60411519597aec77919cf0ded75e6381be9f96e7 (diff) | |
download | pkgsrc-41cb8277808f9a15b15f83c45b5ea01e4a73f3a8.tar.gz |
Update mediainfo and libmediainfo to 0.7.77
The change logs between 0.7.65 and 0.7.77 total several hundred lines, and
consists primarily of very detailed per-codec trivia. The complete change
logs can be found in the source distribution as MediaInfo/History_CLI.txt and
MediaInfoLib/History_DLL.txt.
Pkgsrc:
- patch-MediaInfoLib_Source_MediaInfo_Text_File__Ttml.h applied upstream.
- pkglint a bit.
- mediainfo appears to have done some work in avoiding bashisms, so remove
"bash" from the tools.
- CONFIG_SHELL doesn't need to be explicitly bash any longer. Possibly this
was only ever necessary because bash seems to be the only shell that was
willing to treat a garbage shell substitution (caused by a bug in the
configure.ac) as somehow legal.
- ... and libmediainfo now actually builds if you accidentally on purpose
override CONFIG_SHELL to be pdksh.
Diffstat (limited to 'multimedia/mediainfo/Makefile')
-rw-r--r-- | multimedia/mediainfo/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/multimedia/mediainfo/Makefile b/multimedia/mediainfo/Makefile index 81c8e816585..ad1c116cd51 100644 --- a/multimedia/mediainfo/Makefile +++ b/multimedia/mediainfo/Makefile @@ -1,11 +1,11 @@ -# $NetBSD: Makefile,v 1.13 2015/01/10 20:35:24 wiz Exp $ +# $NetBSD: Makefile,v 1.14 2015/09/07 01:02:00 dsainty Exp $ .include "../../multimedia/mediainfo/Makefile.common" PKGNAME= mediainfo-${MIVER} LICENSE= gnu-lgpl-v3 -USE_TOOLS+= autoconf automake gmake pkg-config +USE_TOOLS+= autoconf automake autoreconf gmake pkg-config USE_LIBTOOL= yes USE_LANGUAGES= c c++ GNU_CONFIGURE= yes @@ -13,7 +13,7 @@ GNU_CONFIGURE= yes CONFIGURE_DIRS+= MediaInfo/Project/GNU/CLI pre-configure: - cd ${WRKSRC}/${CONFIGURE_DIRS} && autoreconf -i + cd ${WRKSRC}/${CONFIGURE_DIRS:Q} && autoreconf -i .include "../../multimedia/libmediainfo/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |