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 B50EF1382C5 for ; Tue, 27 Feb 2018 16:14:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CEF90E088F; Tue, 27 Feb 2018 16:14:16 +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 AD4D8E088F for ; Tue, 27 Feb 2018 16:14:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DF842335C4F for ; Tue, 27 Feb 2018 16:14:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 52E4A233 for ; Tue, 27 Feb 2018 16:14:12 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1519748011.bbd34f942dbf42146a26a6e9d20f44abfd2156d7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/tsmuxer/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-video/tsmuxer/tsmuxer-2.6.11-r1.ebuild X-VCS-Directories: media-video/tsmuxer/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: bbd34f942dbf42146a26a6e9d20f44abfd2156d7 X-VCS-Branch: master Date: Tue, 27 Feb 2018 16:14:12 +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-Archives-Salt: 6a912ce4-448f-4073-9f42-15f0c463abb2 X-Archives-Hash: 240555b3077e25b9b90f8662ddaf22cd commit: bbd34f942dbf42146a26a6e9d20f44abfd2156d7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Feb 27 15:28:42 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Feb 27 16:13:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbd34f94 media-video/tsmuxer: Drop USE=qt4 Bug: https://bugs.gentoo.org/641956 Package-Manager: Portage-2.3.24, Repoman-2.3.6 media-video/tsmuxer/tsmuxer-2.6.11-r1.ebuild | 40 ++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/media-video/tsmuxer/tsmuxer-2.6.11-r1.ebuild b/media-video/tsmuxer/tsmuxer-2.6.11-r1.ebuild new file mode 100644 index 00000000000..ea8db60637d --- /dev/null +++ b/media-video/tsmuxer/tsmuxer-2.6.11-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 + +inherit eutils + +DESCRIPTION="Utility to create and demux TS and M2TS files" +HOMEPAGE="http://forum.doom9.org/showthread.php?t=168539" +SRC_URI="https://drive.google.com/uc?export=download&id=0B0VmPcEZTp8NekJxLUVJRWMwejQ -> ${P}.tar.gz" + +LICENSE="SmartLabs" +SLOT="0" + +KEYWORDS="~amd64 ~x86" +IUSE="" + +QA_FLAGS_IGNORED="opt/${PN}/bin/tsMuxeR opt/${PN}/bin/tsMuxerGUI" + +DEPEND="|| ( + >=app-arch/upx-ucl-3.01[lzma] + >=app-arch/upx-bin-3.01 +)" +RDEPEND=" + >=media-libs/freetype-2.5.0.1:2[abi_x86_32(-)] +" + +S="${WORKDIR}" + +src_prepare() { + upx -d tsMuxeR tsMuxerGUI || die +} + +src_install() { + dodir /opt/bin + exeinto /opt/${PN}/bin + + doexe tsMuxeR + dosym ../${PN}/bin/tsMuxeR /opt/bin/tsMuxeR +}