diff options
author | 2008-04-09 16:35:33 +0000 | |
---|---|---|
committer | 2008-04-09 16:35:33 +0000 | |
commit | 15cfacd1358e5af343c1d989cf277cbf58eb7706 (patch) | |
tree | 9f27ffa82cca321398c3d743ad4dd05962edb023 /media-video | |
parent | Version bump (diff) | |
download | gentoo-2-15cfacd1358e5af343c1d989cf277cbf58eb7706.tar.gz gentoo-2-15cfacd1358e5af343c1d989cf277cbf58eb7706.tar.bz2 gentoo-2-15cfacd1358e5af343c1d989cf277cbf58eb7706.zip |
Version bump. This version includes a patch from Gentoo to build against recent ffmpeg snapshot with headers relocated, thanks to Alexis Ballier.
(Portage version: 2.1.4.4)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/ffmpegthumbnailer/ChangeLog | 9 | ||||
-rw-r--r-- | media-video/ffmpegthumbnailer/ffmpegthumbnailer-1.2.3.ebuild | 28 |
2 files changed, 36 insertions, 1 deletions
diff --git a/media-video/ffmpegthumbnailer/ChangeLog b/media-video/ffmpegthumbnailer/ChangeLog index 22e09ae17da4..8aa277e4d00e 100644 --- a/media-video/ffmpegthumbnailer/ChangeLog +++ b/media-video/ffmpegthumbnailer/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-video/ffmpegthumbnailer # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.39 2008/03/26 11:35:40 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.40 2008/04/09 16:35:33 drac Exp $ + +*ffmpegthumbnailer-1.2.3 (09 Apr 2008) + + 09 Apr 2008; Samuli Suominen <drac@gentoo.org> + +ffmpegthumbnailer-1.2.3.ebuild: + Version bump. This version includes a patch from Gentoo to build against + recent ffmpeg snapshot with headers relocated, thanks to Alexis Ballier. 26 Mar 2008; Jeroen Roovers <jer@gentoo.org> ffmpegthumbnailer-1.2.2.ebuild: diff --git a/media-video/ffmpegthumbnailer/ffmpegthumbnailer-1.2.3.ebuild b/media-video/ffmpegthumbnailer/ffmpegthumbnailer-1.2.3.ebuild new file mode 100644 index 000000000000..4f1ac5936982 --- /dev/null +++ b/media-video/ffmpegthumbnailer/ffmpegthumbnailer-1.2.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-1.2.3.ebuild,v 1.1 2008/04/09 16:35:33 drac Exp $ + +DESCRIPTION="Lightweight video thumbnailer that can be used by file managers" +HOMEPAGE="http://code.google.com/p/ffmpegthumbnailer" +SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="media-libs/libpng + media-libs/jpeg + >=media-video/ffmpeg-0.4.9_p20070330" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_compile() { + econf --disable-dependency-tracking + emake || die "emake failed." +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog README TODO +} |