Gentoo Archives: gentoo-commits

From: "Brian Evans (grknight)" <grknight@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/ffmpeg-php: ffmpeg-php-0.6.0-r3.ebuild ChangeLog
Date: Thu, 02 Oct 2014 20:42:22
Message-Id: 20141002204218.9C4136CB6@oystercatcher.gentoo.org
1 grknight 14/10/02 20:42:18
2
3 Modified: ChangeLog
4 Added: ffmpeg-php-0.6.0-r3.ebuild
5 Log:
6 Revbump; Fix bug 513384; drop 5.3; add 5.5 and 5.6
7
8 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 67C78E1D)
9
10 Revision Changes Path
11 1.11 dev-php/ffmpeg-php/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ffmpeg-php/ChangeLog?rev=1.11&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ffmpeg-php/ChangeLog?rev=1.11&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ffmpeg-php/ChangeLog?r1=1.10&r2=1.11
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ChangeLog,v
20 retrieving revision 1.10
21 retrieving revision 1.11
22 diff -u -r1.10 -r1.11
23 --- ChangeLog 1 Oct 2014 00:53:35 -0000 1.10
24 +++ ChangeLog 2 Oct 2014 20:42:18 -0000 1.11
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-php/ffmpeg-php
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ChangeLog,v 1.10 2014/10/01 00:53:35 grknight Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ChangeLog,v 1.11 2014/10/02 20:42:18 grknight Exp $
30 +
31 +*ffmpeg-php-0.6.0-r3 (02 Oct 2014)
32 +
33 + 02 Oct 2014; <grknight@g.o> +ffmpeg-php-0.6.0-r3.ebuild,
34 + +files/ffmpeg-php-0.6.0-api.patch:
35 + Revbump; Fix bug 513384; drop 5.3; add 5.5 and 5.6
36
37 01 Oct 2014; Brian Evans <grknight@g.o> -ffmpeg-php-0.6.0-r1.ebuild:
38 Remove old
39
40
41
42 1.1 dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r3.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r3.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r3.ebuild?rev=1.1&content-type=text/plain
46
47 Index: ffmpeg-php-0.6.0-r3.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r3.ebuild,v 1.1 2014/10/02 20:42:18 grknight Exp $
52
53 EAPI="5"
54
55 PHP_EXT_NAME="ffmpeg"
56 PHP_EXT_INI="yes"
57 PHP_EXT_ZENDEXT="no"
58
59 USE_PHP="php5-6 php5-5 php5-4"
60
61 inherit php-ext-source-r2 eutils
62
63 KEYWORDS="~amd64 ~x86"
64
65 DESCRIPTION="PHP extension that provides access to movie info"
66 HOMEPAGE="http://sourceforge.net/projects/ffmpeg-php/"
67 SRC_URI="mirror://sourceforge/ffmpeg-php/${P}.tbz2"
68 LICENSE="GPL-2"
69 SLOT="0"
70 IUSE=""
71
72 DEPEND="virtual/ffmpeg
73 dev-lang/php[gd]"
74 RDEPEND="${DEPEND}"
75
76 # The test breaks with the test movie, but it the same code works fine with
77 # other movies
78
79 RESTRICT="test"
80
81 DOCS="CREDITS ChangeLog EXPERIMENTAL TODO"
82
83 src_prepare() {
84 for slot in $(php_get_slots) ; do
85 cd "${WORKDIR}/${slot}"
86 epatch "${FILESDIR}/${P}-avutil50.patch"
87 epatch "${FILESDIR}/${P}-ffmpeg.patch"
88 epatch "${FILESDIR}/${P}-log.patch"
89 epatch "${FILESDIR}/${P}-php5-4.patch"
90 epatch "${FILESDIR}/${P}-ffincludes.patch"
91 epatch "${FILESDIR}/${P}-ffmpeg1.patch"
92 epatch "${FILESDIR}/${P}-api.patch"
93 done
94 php-ext-source-r2_src_prepare
95 }