media-video/tsmuxer: Drop old
authorAndreas Sturmlechner <asturm@gentoo.org>
Tue, 27 Feb 2018 15:55:58 +0000 (16:55 +0100)
committerAndreas Sturmlechner <asturm@gentoo.org>
Tue, 27 Feb 2018 16:13:31 +0000 (17:13 +0100)
Closes: https://bugs.gentoo.org/641956
Package-Manager: Portage-2.3.24, Repoman-2.3.6

media-video/tsmuxer/Manifest
media-video/tsmuxer/metadata.xml
media-video/tsmuxer/tsmuxer-2.6.11.ebuild [deleted file]

index e4ddad8d7838e82b2006e8363e070cef76d3f8db..602c43239fed94dc4484c157e46a55bb77e71131 100644 (file)
@@ -1,2 +1 @@
 DIST tsmuxer-2.6.11.tar.gz 538798 BLAKE2B 18f5f9002e356664ae84343afbadcddd447743404bcdcca709ba039ebb2ab05e5fba7eda0f30c86c29e18040d646004d1aec7dec34ed008ddbdb15228c63f09d SHA512 25b552153b76231ac1b88858d2178564d22edd18c6b08dc872765ac214ca6fd1ff6df5c5fff0f24647ea35f3f990e364bfb8adff5dd79c69cc12875fafb4f137
-DIST tsmuxer-icon.png 1634 BLAKE2B 400a1101ae382264d66a07e389157f055a7346c80065be159ffda6ce8c28450c1ff954b50fd1ce6df05384fdb892eeab7319bc42f154878c2fccfb5638b90a3d SHA512 4af3b1bd0e1a2c8379773e16121aa1c0ae749a3a9b9fdef0622991ea4ea632f51fbd91af0f6b5a415c28b375bd71adde2e9aacfb8b495242168cc97e1c8bf4ff
index fde90f47550849a97f3b5355ed474b1caa353a56..e55b2b5811059577edf4099a8028956d1a456be3 100644 (file)
@@ -11,7 +11,4 @@
                Dune HD Ultra, Sony Playstation3 and others). tsMuxeR is a part of
                SmartCONTENT, content preparation solution.
        </longdescription>
-       <use>
-               <flag name="qt4">Installs tsMuxerGUI (needs Qt4)</flag>
-       </use>
 </pkgmetadata>
diff --git a/media-video/tsmuxer/tsmuxer-2.6.11.ebuild b/media-video/tsmuxer/tsmuxer-2.6.11.ebuild
deleted file mode 100644 (file)
index 65f1d35..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils qt4-r2
-
-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
-       http://gentoo.sbriesen.de/distfiles/tsmuxer-icon.png"
-LICENSE="SmartLabs"
-SLOT="0"
-
-KEYWORDS="~amd64 ~x86"
-IUSE="qt4"
-
-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(-)]
-       qt4? (
-               >=dev-libs/glib-2.34.3:2[abi_x86_32(-)]
-               >=dev-qt/qtcore-4.8.5-r1:4[abi_x86_32(-)]
-               >=dev-qt/qtgui-4.8.5-r2:4[abi_x86_32(-)]
-               >=media-libs/fontconfig-2.10.92[abi_x86_32(-)]
-               >=media-libs/libpng-1.2.51:1.2[abi_x86_32(-)]
-               >=sys-libs/zlib-1.2.8-r1[abi_x86_32(-)]
-               >=x11-libs/libICE-1.0.8-r1[abi_x86_32(-)]
-               >=x11-libs/libSM-1.2.1-r1[abi_x86_32(-)]
-               >=x11-libs/libX11-1.6.2[abi_x86_32(-)]
-               >=x11-libs/libXext-1.3.2[abi_x86_32(-)]
-               >=x11-libs/libXrender-0.9.8[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
-
-       if use qt4; then
-               doexe tsMuxerGUI
-               dosym ../${PN}/bin/tsMuxerGUI /opt/bin/tsMuxerGUI
-               newicon "${DISTDIR}/${PN}-icon.png" "${PN}.png"
-               make_desktop_entry tsMuxerGUI "tsMuxeR GUI" "${PN}" "Qt;AudioVideo;Video"
-       fi
-}