Gentoo Archives: gentoo-commits

From: "Steve Dibb (beandog)" <beandog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/ffprobe: ffprobe-79.ebuild metadata.xml ChangeLog
Date: Fri, 27 Feb 2009 18:41:00
Message-Id: E1Ld7dp-0000QE-2p@stork.gentoo.org
1 beandog 09/02/27 18:40:57
2
3 Added: ffprobe-79.ebuild metadata.xml ChangeLog
4 Log:
5 Initial commit
6 (Portage version: 2.2_rc23/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 media-video/ffprobe/ffprobe-79.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffprobe/ffprobe-79.ebuild?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffprobe/ffprobe-79.ebuild?rev=1.1&content-type=text/plain
13
14 Index: ffprobe-79.ebuild
15 ===================================================================
16 # Copyright 1999-2009 Gentoo Foundation
17 # Distributed under the terms of the GNU General Public License v2
18 # $Header: /var/cvsroot/gentoo-x86/media-video/ffprobe/ffprobe-79.ebuild,v 1.1 2009/02/27 18:40:56 beandog Exp $
19
20 inherit autotools
21
22 DESCRIPTION="Tool to probe audio / video using ffmpeg and print pretty output"
23 HOMEPAGE="http://sourceforge.net/projects/ffprobe/"
24 SRC_URI="mirrors://gentoo/${P}.tar.bz2"
25
26 LICENSE="GPL-2 LGPL-2.1"
27 SLOT="0"
28 KEYWORDS="~amd64"
29 IUSE="perl"
30
31 DEPEND="media-video/ffmpeg"
32 RDEPEND="${DEPEND}
33 perl? ( virtual/perl-Scalar-List-Utils
34 virtual/perl-Getopt-Long
35 virtual/perl-File-Spec
36 dev-perl/Statistics-Descriptive
37 sci-visualization/gnuplot )"
38
39 src_unpack() {
40
41 unpack ${A}
42 cd "${S}"
43
44 einfo "Regenerating autotools files..."
45 eautoconf || die "eautoconf failed"
46
47 }
48
49 src_install() {
50
51 dobin src/ffprobe
52 if use perl; then
53 newbin tools/plot-vframes-bitrate.pl plot-vframes-bitrate
54 newbin tools/plot-vframes-sizes.pl plot-vframes-sizes
55 fi
56 doman doc/ffprobe.1
57 dohtml doc/ffprobe.html
58 dodoc AUTHORS README
59
60 }
61
62 pkg_postinst() {
63
64 einfo "ffprobe with no arguments doesn't produce anything interesting"
65 einfo "other than the same output you would get with ffmpeg -i"
66 einfo "See -h for output options."
67
68 }
69
70
71
72 1.1 media-video/ffprobe/metadata.xml
73
74 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffprobe/metadata.xml?rev=1.1&view=markup
75 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffprobe/metadata.xml?rev=1.1&content-type=text/plain
76
77 Index: metadata.xml
78 ===================================================================
79 <?xml version="1.0" encoding="UTF-8"?>
80 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
81 <pkgmetadata>
82 <herd>media-video</herd>
83 <use>
84 <flag name="perl">Installs tools written in perl to produce plots based on video frame bitrate and size</flag>
85 </use>
86 </pkgmetadata>
87
88
89
90 1.1 media-video/ffprobe/ChangeLog
91
92 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffprobe/ChangeLog?rev=1.1&view=markup
93 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffprobe/ChangeLog?rev=1.1&content-type=text/plain
94
95 Index: ChangeLog
96 ===================================================================
97 # ChangeLog for media-video/ffprobe
98 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
99 # $Header: /var/cvsroot/gentoo-x86/media-video/ffprobe/ChangeLog,v 1.1 2009/02/27 18:40:56 beandog Exp $
100
101 *ffprobe-79 (27 Feb 2009)
102
103 27 Feb 2009; Steve Dibb <beandog@g.o> +metadata.xml,
104 +ffprobe-79.ebuild:
105 Initial commit