From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 683A7138334 for ; Sun, 24 Mar 2019 09:35:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4141EE097A; Sun, 24 Mar 2019 09:35:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1CFC2E097A for ; Sun, 24 Mar 2019 09:35:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D1CD9335D00 for ; Sun, 24 Mar 2019 09:35:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43F8844B for ; Sun, 24 Mar 2019 09:35:15 +0000 (UTC) From: "Daniel Pielmeier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Daniel Pielmeier" Message-ID: <1553420102.761379c98de17215d038c0f99be9050ffe9cb608.billie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/ttcut/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/ttcut/ttcut-0.19.6_p1-r1.ebuild X-VCS-Directories: media-video/ttcut/ X-VCS-Committer: billie X-VCS-Committer-Name: Daniel Pielmeier X-VCS-Revision: 761379c98de17215d038c0f99be9050ffe9cb608 X-VCS-Branch: master Date: Sun, 24 Mar 2019 09:35:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 5b86544a-7079-472b-b981-860c8837f6bd X-Archives-Hash: 78350b959ffab2d4c6429b07ec35e89d commit: 761379c98de17215d038c0f99be9050ffe9cb608 Author: Daniel Pielmeier gentoo org> AuthorDate: Sun Mar 24 09:35:02 2019 +0000 Commit: Daniel Pielmeier gentoo org> CommitDate: Sun Mar 24 09:35:02 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=761379c9 media-video/ttcut: Revision bump to ttcut-0.19.6_p1-r1. Switch to EAPI 7. Signed-off-by: Daniel Pielmeier gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 media-video/ttcut/ttcut-0.19.6_p1-r1.ebuild | 48 +++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/media-video/ttcut/ttcut-0.19.6_p1-r1.ebuild b/media-video/ttcut/ttcut-0.19.6_p1-r1.ebuild new file mode 100644 index 00000000000..2ca5c574c24 --- /dev/null +++ b/media-video/ttcut/ttcut-0.19.6_p1-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit desktop qmake-utils xdg + +DESCRIPTION="Tool for cutting MPEG files especially for removing commercials" +HOMEPAGE="https://github.com/templer/ttcut" +SRC_URI="https://dev.gentoo.org/~billie/distfiles/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + >=media-libs/libmpeg2-0.4.0 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtopengl:5 + dev-qt/qtwidgets:5 + virtual/glu + virtual/opengl +" +RDEPEND=" + ${DEPEND} + media-video/mplayer + >=media-video/ffmpeg-1.0.8[encode] +" + +S=${WORKDIR}/${PN} + +src_prepare() { + default + + xdg_environment_reset + + eqmake5 ttcut.pro +} + +src_install() { + dobin ttcut + + domenu "${FILESDIR}"/${PN}.desktop + + dodoc AUTHORS BUGS CHANGELOG README.* TODO +}