diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-08 11:21:58 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-10-08 11:21:58 +0000 |
commit | e72549065e3ab52f01dcb8b8cc65400497b4689d (patch) | |
tree | d1614741b0a3dabe0689a9b168834f76d9df9446 /media-video | |
parent | old (diff) | |
download | gentoo-2-e72549065e3ab52f01dcb8b8cc65400497b4689d.tar.gz gentoo-2-e72549065e3ab52f01dcb8b8cc65400497b4689d.tar.bz2 gentoo-2-e72549065e3ab52f01dcb8b8cc65400497b4689d.zip |
Version bump wrt #288126, thanks to George Waksman for reporting.
(Portage version: 2.2_rc44/cvs/Linux x86_64)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/ffmpegthumbnailer/ChangeLog | 8 | ||||
-rw-r--r-- | media-video/ffmpegthumbnailer/ffmpegthumbnailer-1.5.5.ebuild | 34 |
2 files changed, 41 insertions, 1 deletions
diff --git a/media-video/ffmpegthumbnailer/ChangeLog b/media-video/ffmpegthumbnailer/ChangeLog index 5862bfd33d64..b466d01da454 100644 --- a/media-video/ffmpegthumbnailer/ChangeLog +++ b/media-video/ffmpegthumbnailer/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-video/ffmpegthumbnailer # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.88 2009/09/27 16:10:53 nixnut Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ChangeLog,v 1.89 2009/10/08 11:21:58 ssuominen Exp $ + +*ffmpegthumbnailer-1.5.5 (08 Oct 2009) + + 08 Oct 2009; Samuli Suominen <ssuominen@gentoo.org> + +ffmpegthumbnailer-1.5.5.ebuild: + Version bump wrt #288126, thanks to George Waksman for reporting. 27 Sep 2009; nixnut <nixnut@gentoo.org> ffmpegthumbnailer-1.5.4.ebuild: ppc stable #283632 diff --git a/media-video/ffmpegthumbnailer/ffmpegthumbnailer-1.5.5.ebuild b/media-video/ffmpegthumbnailer/ffmpegthumbnailer-1.5.5.ebuild new file mode 100644 index 000000000000..b0ca9a107978 --- /dev/null +++ b/media-video/ffmpegthumbnailer/ffmpegthumbnailer-1.5.5.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpegthumbnailer/ffmpegthumbnailer-1.5.5.ebuild,v 1.1 2009/10/08 11:21:58 ssuominen Exp $ + +EAPI=2 + +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 ~x86-fbsd" +IUSE="jpeg png" + +RDEPEND=">=media-video/ffmpeg-0.5 + png? ( media-libs/libpng ) + jpeg? ( media-libs/jpeg )" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_configure() { + econf \ + --disable-dependency-tracking \ + --disable-static \ + $(use_enable png) \ + $(use_enable jpeg) +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS ChangeLog README + find "${D}"/usr -name '*.la' -delete +} |