diff options
author | drochner <drochner@pkgsrc.org> | 2007-11-21 21:47:25 +0000 |
---|---|---|
committer | drochner <drochner@pkgsrc.org> | 2007-11-21 21:47:25 +0000 |
commit | ad6df071ee7e19b89b8e71ddb1b6b97aee400450 (patch) | |
tree | 5582b421eb03b40a875e8bea05fb6b2962ec35a0 /audio | |
parent | 7eae8e2ced5a96757eccfd2d56ed251bcd26e428 (diff) | |
download | pkgsrc-ad6df071ee7e19b89b8e71ddb1b6b97aee400450.tar.gz |
update for changed signature of MP4GetMetadataCoverArt() in libmp4v2-1.6.1,
bump required version of libmp4v2 and PKGREVISION
should resolve PR pkg/37418 by Johann Franz (the other half of it)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/easytag/Makefile | 3 | ||||
-rw-r--r-- | audio/easytag/distinfo | 3 | ||||
-rw-r--r-- | audio/easytag/options.mk | 3 | ||||
-rw-r--r-- | audio/easytag/patches/patch-aa | 13 |
4 files changed, 19 insertions, 3 deletions
diff --git a/audio/easytag/Makefile b/audio/easytag/Makefile index aa728d5ed5c..34417d59da0 100644 --- a/audio/easytag/Makefile +++ b/audio/easytag/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.58 2007/05/10 16:08:33 wiz Exp $ +# $NetBSD: Makefile,v 1.59 2007/11/21 21:47:25 drochner Exp $ # DISTNAME= easytag-2.1 +PKGREVISION= 1 CATEGORIES= audio MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=easytag/} EXTRACT_SUFX= .tar.bz2 diff --git a/audio/easytag/distinfo b/audio/easytag/distinfo index bfd260132b2..72e34018bed 100644 --- a/audio/easytag/distinfo +++ b/audio/easytag/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.28 2007/05/10 16:08:33 wiz Exp $ +$NetBSD: distinfo,v 1.29 2007/11/21 21:47:25 drochner Exp $ SHA1 (easytag-2.1.tar.bz2) = 6da0125ab0dcc7e7ecabe488147ecdf0e75f6f2a RMD160 (easytag-2.1.tar.bz2) = b553458c8cff008dd044412a95674aa26478b2eb Size (easytag-2.1.tar.bz2) = 2924032 bytes +SHA1 (patch-aa) = bfb67a2d37317243f197f6a497fff67adf38df0b diff --git a/audio/easytag/options.mk b/audio/easytag/options.mk index d55ec15d77f..a901e4051ea 100644 --- a/audio/easytag/options.mk +++ b/audio/easytag/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.3 2007/10/16 21:32:59 wiz Exp $ +# $NetBSD: options.mk,v 1.4 2007/11/21 21:47:25 drochner Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.easytag PKG_SUPPORTED_OPTIONS= flac mpeg4ip ogg @@ -15,6 +15,7 @@ CONFIGURE_ARGS+= --disable-flac .endif .if !empty(PKG_OPTIONS:Mmpeg4ip) +BUILDLINK_API_DEPENDS.libmp4v2+= libmp4v2>=1.6.1 .include "../../multimedia/libmp4v2/buildlink3.mk" # for mpeg4ip.h CPPFLAGS+= -DHAVE_GTK diff --git a/audio/easytag/patches/patch-aa b/audio/easytag/patches/patch-aa new file mode 100644 index 00000000000..892fb95b6fb --- /dev/null +++ b/audio/easytag/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.17 2007/11/21 21:47:25 drochner Exp $ + +--- src/mp4_tag.c.orig 2007-11-19 19:27:42.000000000 +0100 ++++ src/mp4_tag.c +@@ -185,7 +185,7 @@ gboolean Mp4tag_Read_File_Tag (gchar *fi + * Picture * + ***********/ + // There is only one picture! +- if ( MP4GetMetadataCoverArt( mp4file, &coverArt, &coverSize ) ) ++ if ( MP4GetMetadataCoverArt( mp4file, &coverArt, &coverSize, 0 ) ) + { + Picture *pic = Picture_Allocate(); + pic->size = coverSize; |