Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-video/ffmpegthumbnailer: ChangeLog ffmpegthumbnailer-2.0.0.ebuild ffmpegthumbnailer-1.5.6.ebuild
Date: Thu, 07 Jan 2010 09:40:57
Message-Id: E1NSorN-0004IY-RF@stork.gentoo.org
1 ssuominen 10/01/07 09:40:53
2
3 Modified: ChangeLog
4 Added: ffmpegthumbnailer-2.0.0.ebuild
5 Removed: ffmpegthumbnailer-1.5.6.ebuild
6 Log:
7 Version bump.
8 (Portage version: 2.2_rc61/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.91 media-video/ffmpegthumbnailer/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?rev=1.91&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?rev=1.91&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog?r1=1.90&r2=1.91
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v
20 retrieving revision 1.90
21 retrieving revision 1.91
22 diff -u -r1.90 -r1.91
23 --- ChangeLog 24 Dec 2009 12:05:22 -0000 1.90
24 +++ ChangeLog 7 Jan 2010 09:40:53 -0000 1.91
25 @@ -1,6 +1,12 @@
26 # ChangeLog for media-video/ffmpegthumbnailer
27 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.90 2009/12/24 12:05:22 ssuominen Exp $
29 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.91 2010/01/07 09:40:53 ssuominen Exp $
31 +
32 +*ffmpegthumbnailer-2.0.0 (07 Jan 2010)
33 +
34 + 07 Jan 2010; Samuli Suominen <ssuominen@g.o>
35 + +ffmpegthumbnailer-2.0.0.ebuild:
36 + Version bump.
37
38 *ffmpegthumbnailer-1.5.6 (24 Dec 2009)
39
40
41
42
43 1.1 media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.0.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: ffmpegthumbnailer-2.0.0.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.0.0.ebuild,v 1.1 2010/01/07 09:40:53 ssuominen Exp $
53
54 EAPI=2
55
56 DESCRIPTION="Lightweight video thumbnailer that can be used by file managers"
57 HOMEPAGE="http://code.google.com/p/ffmpegthumbnailer/"
58 SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
63 IUSE="jpeg png"
64
65 RDEPEND=">=media-video/ffmpeg-0.5
66 png? ( media-libs/libpng )
67 jpeg? ( media-libs/jpeg )"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig"
70
71 src_configure() {
72 econf \
73 --disable-dependency-tracking \
74 --disable-static \
75 $(use_enable png) \
76 $(use_enable jpeg)
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install || die
81 dodoc AUTHORS ChangeLog README
82 find "${D}"/usr -name '*.la' -delete
83 }