diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-12 12:30:49 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-06-12 12:37:04 +0200 |
commit | 1eb16a7838c9a80f3b79922a34458a6c35ae05d3 (patch) | |
tree | 97cc00ca4ab64774d82c9699ba93170f633082ba /media-video/ffmpegthumbnailer | |
parent | media-video/ffmpegthumbnailer: Fix libffmpegthumbnailer.pc libdir (diff) | |
download | gentoo-1eb16a7838c9a80f3b79922a34458a6c35ae05d3.tar.gz gentoo-1eb16a7838c9a80f3b79922a34458a6c35ae05d3.tar.bz2 gentoo-1eb16a7838c9a80f3b79922a34458a6c35ae05d3.zip |
media-video/ffmpegthumbnailer: Drop 2.2.0 (r0)
Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-video/ffmpegthumbnailer')
-rw-r--r-- | media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.0.ebuild | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.0.ebuild b/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.0.ebuild deleted file mode 100644 index d92f8f290948..000000000000 --- a/media-video/ffmpegthumbnailer/ffmpegthumbnailer-2.2.0.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit cmake-utils eutils - -DESCRIPTION="Lightweight video thumbnailer that can be used by file managers" -HOMEPAGE="https://github.com/dirkvdb/ffmpegthumbnailer" -SRC_URI="https://github.com/dirkvdb/${PN}/releases/download/${PV}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" -IUSE="gnome gtk jpeg libav png test" - -RDEPEND=" - gtk? ( dev-libs/glib:2= ) - jpeg? ( virtual/jpeg:0= ) - !libav? ( >=media-video/ffmpeg-2.7:0= ) - libav? ( >=media-video/libav-11:0= ) - png? ( media-libs/libpng:0= ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" -REQUIRED_USE="gnome? ( gtk ) - test? ( png jpeg )" - -DOCS=( AUTHORS ChangeLog README.md ) - -src_prepare() { - rm -rf out* || die - - cmake-utils_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DENABLE_GIO=$(usex gtk) - -DENABLE_TESTS=$(usex test) - -DENABLE_THUMBNAILER=$(usex gnome) - -DHAVE_JPEG=$(usex jpeg) - -DHAVE_PNG=$(usex png) - ) - cmake-utils_src_configure -} |