forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-video/tsmuxer: bump to vn. 2.6.11, update homepage #536808
Package-Manager: portage-2.2.26
- Loading branch information
Showing
2 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST tsMuxeR_shared_1.10.6.tar.gz 640010 SHA256 40871629da0968488c90600a0870b6f9e3ed09d30522c56a97d7397365af0910 SHA512 64d5214a84ae1d2fdbaad214ff9586007ed1d88e7d0e18d866dfe4e75cf371de52e4c05eb1d67d0b9c7c2f9cd5ca87b4dbb2b113e81361ba658aa1fecca115d6 WHIRLPOOL ca4993cf04a22051f9a5c8b7cbe8537156263d2b3e0c9f27a889a519eb7b171df7dbca5841a7345237b1623ce46c547ace886ce07bba3e92717513f87fd1cd15 | ||
DIST tsmuxer-2.6.11.tar.gz 538798 SHA256 815a383aebc67e59b6e541b927ce14480efed9d103fe99e74ced9ea381f61764 SHA512 25b552153b76231ac1b88858d2178564d22edd18c6b08dc872765ac214ca6fd1ff6df5c5fff0f24647ea35f3f990e364bfb8adff5dd79c69cc12875fafb4f137 WHIRLPOOL b798cb5413c521a3d4034d434dbcc1fcb0b203abc71d92e4351c323e5ed15bcf19951eeb86bac6a703fe9ffa5d189124664dfad0f06a8e4f5dfc4fad1604cab1 | ||
DIST tsmuxer-icon.png 1634 SHA256 ff166c09d7e5218ee566d876c20873e26ccf6242a3f37a7f01e6514c4396a753 SHA512 4af3b1bd0e1a2c8379773e16121aa1c0ae749a3a9b9fdef0622991ea4ea632f51fbd91af0f6b5a415c28b375bd71adde2e9aacfb8b495242168cc97e1c8bf4ff WHIRLPOOL 265eed8149ce9de8e8695bdc8a4e726cdb4cf4514f30263384d60edcfb896b37fc8cfdb707b16d11672cb302f8300f8790415db3f6b4ced11dd4d5bcd4859b96 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
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 | ||
} |