Gentoo Archives: gentoo-commits

From: "Ole Markus With (olemarkus)" <olemarkus@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-php/ffmpeg-php: ffmpeg-php-0.6.0-r2.ebuild ChangeLog
Date: Mon, 04 Mar 2013 09:17:10
Message-Id: 20130304091706.21BB72171E@flycatcher.gentoo.org
1 olemarkus 13/03/04 09:17:06
2
3 Modified: ChangeLog
4 Added: ffmpeg-php-0.6.0-r2.ebuild
5 Log:
6 Adds 5.4 support to ffmpeg-php. Thanks to Sergey Smirnov. Fixes bug 459006
7
8 (Portage version: 2.1.11.50/cvs/Linux x86_64, signed Manifest commit with key C4A92BF5)
9
10 Revision Changes Path
11 1.4 dev-php/ffmpeg-php/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ffmpeg-php/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ffmpeg-php/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ffmpeg-php/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 9 Jan 2012 15:26:53 -0000 1.3
24 +++ ChangeLog 4 Mar 2013 09:17:05 -0000 1.4
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-php/ffmpeg-php
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ChangeLog,v 1.3 2012/01/09 15:26:53 aballier Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ChangeLog,v 1.4 2013/03/04 09:17:05 olemarkus Exp $
31 +
32 +*ffmpeg-php-0.6.0-r2 (04 Mar 2013)
33 +
34 + 04 Mar 2013; Ole Markus With <olemarkus@g.o>
35 + +ffmpeg-php-0.6.0-r2.ebuild, +files/ffmpeg-php-0.6.0-php5-4.patch:
36 + Adds 5.4 support to ffmpeg-php. Thanks to Sergey Smirnov. Fixes bug 459006
37
38 09 Jan 2012; Alexis Ballier <aballier@g.o> ffmpeg-php-0.6.0-r1.ebuild,
39 files/ffmpeg-php-0.6.0-ffmpeg.patch, +files/ffmpeg-php-0.6.0-log.patch:
40 @@ -65,4 +71,3 @@
41 15 Aug 2007; Jakub Moc <jakub@g.o> -ffmpeg-php-0.5.0.ebuild,
42 +ffmpeg-php-0.5.0.ebuild:
43 Version bump, check for gd support in PHP
44 -
45
46
47
48 1.1 dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild?rev=1.1&content-type=text/plain
52
53 Index: ffmpeg-php-0.6.0-r2.ebuild
54 ===================================================================
55 # Copyright 1999-2013 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild,v 1.1 2013/03/04 09:17:05 olemarkus Exp $
58
59 EAPI="3"
60
61 PHP_EXT_NAME="ffmpeg"
62 PHP_EXT_INI="yes"
63 PHP_EXT_ZENDEXT="no"
64
65 USE_PHP="php5-3 php5-4"
66
67 inherit php-ext-source-r2 eutils
68
69 KEYWORDS="~amd64 ~x86"
70
71 DESCRIPTION="PHP extension that provides access to movie info."
72 HOMEPAGE="http://sourceforge.net/projects/ffmpeg-php/"
73 SRC_URI="mirror://sourceforge/ffmpeg-php/${P}.tbz2"
74 LICENSE="GPL-2"
75 SLOT="0"
76 IUSE=""
77
78 DEPEND="virtual/ffmpeg
79 dev-lang/php[gd]"
80 RDEPEND="${DEPEND}"
81
82 # The test breaks with the test movie, but it the same code works fine with
83 # other movies
84
85 RESTRICT="test"
86
87 DOCS="CREDITS ChangeLog EXPERIMENTAL TODO"
88
89 src_prepare() {
90 for slot in $(php_get_slots) ; do
91 cd "${WORKDIR}/${slot}"
92 epatch "${FILESDIR}/${P}-avutil50.patch"
93 epatch "${FILESDIR}/${P}-ffmpeg.patch"
94 epatch "${FILESDIR}/${P}-log.patch"
95 epatch "${FILESDIR}/${P}-php5-4.patch"
96 done
97 php-ext-source-r2_src_prepare
98 }