Gentoo Archives: gentoo-commits

From: "Caleb Tennis (caleb)" <caleb@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/qt-faststart: qt-faststart-0.2.ebuild ChangeLog
Date: Sun, 28 Dec 2008 23:06:01
Message-Id: E1LH4hr-0003da-P6@stork.gentoo.org
1 caleb 08/12/28 23:05:59
2
3 Modified: ChangeLog
4 Added: qt-faststart-0.2.ebuild
5 Log:
6 Version bump, with patch from 249953
7 (Portage version: 2.2_rc18/cvs/Linux 2.6.18-xenU-ec2-v1.0 i686)
8
9 Revision Changes Path
10 1.3 media-video/qt-faststart/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qt-faststart/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qt-faststart/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qt-faststart/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-video/qt-faststart/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 7 Jun 2008 12:59:48 -0000 1.2
23 +++ ChangeLog 28 Dec 2008 23:05:59 -0000 1.3
24 @@ -1,6 +1,12 @@
25 # ChangeLog for media-video/qt-faststart
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/media-video/qt-faststart/ChangeLog,v 1.2 2008/06/07 12:59:48 caleb Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/media-video/qt-faststart/ChangeLog,v 1.3 2008/12/28 23:05:59 caleb Exp $
29 +
30 +*qt-faststart-0.2 (28 Dec 2008)
31 +
32 + 28 Dec 2008; Caleb Tennis <caleb@g.o> +files/qt-faststart-0.2.diff,
33 + +qt-faststart-0.2.ebuild:
34 + version bump, with patch from 249953
35
36 07 Jun 2008; Caleb Tennis <caleb@g.o> qt-faststart-0.1.ebuild:
37 amd64 stable
38
39
40
41 1.1 media-video/qt-faststart/qt-faststart-0.2.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qt-faststart/qt-faststart-0.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/qt-faststart/qt-faststart-0.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: qt-faststart-0.2.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-video/qt-faststart/qt-faststart-0.2.ebuild,v 1.1 2008/12/28 23:05:59 caleb Exp $
51
52 inherit eutils
53
54 DESCRIPTION="qt-faststart rearranges quicktime files to help with better network streaming"
55 HOMEPAGE="http://svn.mplayerhq.hu/ffmpeg/trunk/tools/qt-faststart.c"
56 SRC_URI="mirror://gentoo/ffmpeg-0.4.9-p20070616.tar.bz2"
57
58 LICENSE="public-domain"
59 SLOT="0"
60 KEYWORDS="~amd64 ~x86"
61 IUSE=""
62
63 DEPEND=""
64 RDEPEND=""
65
66 S="${WORKDIR}/ffmpeg"
67
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 epatch "${FILESDIR}/${P}.diff" || die "patch failed"
73 }
74
75 src_compile() {
76 cd "${WORKDIR}/ffmpeg"
77 ./configure
78 make qt-faststart
79 }
80
81 src_install() {
82 install -D -m 755 -o root -g root "${WORKDIR}/ffmpeg/qt-faststart" "${D}/usr/bin/qt-faststart"
83 }