media-libs/libmp4v2: EAPI-7 bump, fix tag corruption
authorAndreas Sturmlechner <asturm@gentoo.org>
Wed, 3 Oct 2018 20:15:57 +0000 (22:15 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Wed, 3 Oct 2018 21:11:27 +0000 (23:11 +0200)
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11

media-libs/libmp4v2/files/libmp4v2-2.0.0-gcc7.patch [moved from media-libs/libmp4v2/files/gcc7.patch with 64% similarity]
media-libs/libmp4v2/files/libmp4v2-2.0.0-mp4tags-corruption.patch [new file with mode: 0644]
media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild [new file with mode: 0644]
media-libs/libmp4v2/libmp4v2-2.0.0.ebuild

similarity index 64%
rename from media-libs/libmp4v2/files/gcc7.patch
rename to media-libs/libmp4v2/files/libmp4v2-2.0.0-gcc7.patch
index fbfae97e58c033a76177977140070dd44ab835ea..156f0fcbaa0dde566ee66257dac1a2b37e5791fa 100644 (file)
@@ -1,8 +1,13 @@
 https://bugs.gentoo.org/show_bug.cgi?id=600892
 
---- mp4v2-2.0.0/src/rtphint.cpp        2012-05-20 16:11:53.000000000 -0600
-+++ /tmp/rtphint.cpp   2017-05-16 10:25:26.930705191 -0600
-@@ -339,7 +339,7 @@
+Description: Fix pointer comparison (FTBFS on GCC 7)
+Author: Philip Chung <philipchung1995@yahoo.com>
+Bug-Debian: https://bugs.debian.org/853560
+Last-Update: 2017-09-04
+
+--- a/src/rtphint.cpp
++++ b/src/rtphint.cpp
+@@ -339,7 +339,7 @@ void MP4RtpHintTrack::GetPayload(
                  pSlash = strchr(pSlash, '/');
                  if (pSlash != NULL) {
                      pSlash++;
diff --git a/media-libs/libmp4v2/files/libmp4v2-2.0.0-mp4tags-corruption.patch b/media-libs/libmp4v2/files/libmp4v2-2.0.0-mp4tags-corruption.patch
new file mode 100644 (file)
index 0000000..1c41a41
--- /dev/null
@@ -0,0 +1,20 @@
+From: "Matteo F. Vescovi" <mfv@debian.org>
+Date: Thu, 5 Nov 2015 15:26:00 +0100
+Subject: Fix_mp4tags_corruption
+
+---
+ util/mp4tags.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/util/mp4tags.cpp b/util/mp4tags.cpp
+index 1b9e866..80e89d4 100644
+--- a/util/mp4tags.cpp
++++ b/util/mp4tags.cpp
+@@ -539,6 +539,7 @@ extern "C" int
+                         else {
+                             fprintf( stderr, "Art file %s not found\n", tags[i] );
+                         }
++                        break;
+                     }
+                     case OPT_ALBUM_ARTIST:
+                         MP4TagsSetAlbumArtist( mdata, tags[i] );
\ No newline at end of file
diff --git a/media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild b/media-libs/libmp4v2/libmp4v2-2.0.0-r1.ebuild
new file mode 100644 (file)
index 0000000..9f5cac1
--- /dev/null
@@ -0,0 +1,46 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P=${P/lib}
+inherit libtool
+
+DESCRIPTION="Functions for accessing ISO-IEC:14496-1:2001 MPEG-4 standard"
+HOMEPAGE="https://code.google.com/p/mp4v2/"
+SRC_URI="https://mp4v2.googlecode.com/files/${MY_P}.tar.bz2"
+
+LICENSE="MPL-1.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+IUSE="static-libs test utils"
+
+BDEPEND="sys-apps/sed
+       utils? ( sys-apps/help2man )
+       test? ( dev-util/dejagnu )"
+
+DOCS=( doc/{Authors,BuildSource,Documentation,ReleaseNotes,ToolGuide}.txt README )
+
+S=${WORKDIR}/${MY_P}
+
+PATCHES=(
+       "${FILESDIR}/${P}-gcc7.patch"
+       "${FILESDIR}/${P}-mp4tags-corruption.patch"
+)
+
+src_prepare() {
+       default
+       elibtoolize
+}
+
+src_configure() {
+       econf \
+               --disable-gch \
+               $(use_enable utils util) \
+               $(use_enable static-libs static)
+}
+
+src_install() {
+       default
+       find "${D}" -name '*.la' -delete || die
+}
index b52cf1e5e63031cb3064929c0bd05c5784e1ada6..cd9550fdec8e67d12259afee98e8388916957365 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=4
@@ -25,7 +25,7 @@ DOCS="doc/*.txt README"
 S=${WORKDIR}/${MY_P}
 
 src_prepare() {
-       epatch "${FILESDIR}/gcc7.patch"
+       epatch "${FILESDIR}/${P}-gcc7.patch"
        elibtoolize
 }