diff options
Diffstat (limited to 'media-video/ttcut')
-rw-r--r-- | media-video/ttcut/Manifest | 1 | ||||
-rw-r--r-- | media-video/ttcut/ttcut-0.19.6_p1.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/media-video/ttcut/Manifest b/media-video/ttcut/Manifest index d452df524cb..12c44227998 100644 --- a/media-video/ttcut/Manifest +++ b/media-video/ttcut/Manifest @@ -1 +1,2 @@ DIST ttcut-0.19.6.tar.gz 283977 SHA256 e0f3f55fdcd67096de5588ddfb4a455cff731a9723923b34c283546c42c2ae11 SHA512 796dfb6759f7e9c96f8a8481cb280044c1744a43935f226f352b9e867ebdbaeaed90c3d96acf00b5ae8afb7b2350cbd6a384eb2d38136fef38c2983467d25cf6 WHIRLPOOL e660404f1bf2eb9a5936d53f3e0e9478d743c1e3af28f8d9d4d2c66d494e07df03226a1ca3fb008c90bb8ea05bba13a95ddd4ed2137e4e71a5e5ab29bbdb2365 +DIST ttcut-0.19.6_p1.tar.gz 283304 SHA256 53946745c58060526700efbd479202dd3020b6cf0dbc55edbffc22d1545c294f SHA512 9d104436145ef209db4eaca1566d718ccdf84636a391e3f47bd829a165741f57a6123942f37ba2eb361dd46716e78e36832cb9a459ca9ed0130a70af92287494 WHIRLPOOL 2662bdd1bf963d3928f649a2c0d81a61dbae836fd71a98cdd714a6addfd40ef7c5892ed930dc5605e17920140cd6813fc71a288db7478cbfccdcc39ac98e4b50 diff --git a/media-video/ttcut/ttcut-0.19.6_p1.ebuild b/media-video/ttcut/ttcut-0.19.6_p1.ebuild new file mode 100644 index 00000000000..e00e37db471 --- /dev/null +++ b/media-video/ttcut/ttcut-0.19.6_p1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils qmake-utils xdg + +DESCRIPTION="Tool for cutting MPEG files especially for removing commercials" +HOMEPAGE="http://www.tritime.de/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 + + eqmake5 ttcut.pro +} + +src_install() { + dobin ttcut + + domenu "${FILESDIR}"/${PN}.desktop + + dodoc AUTHORS BUGS CHANGELOG README.* TODO +} |