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.
net-misc/clipgrab: Version bump (thanks Sergey S. Starikoff, bug 5686…
…62). Package-Manager: portage-2.2.26
- Loading branch information
Showing
2 changed files
with
32 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 clipgrab-3.4.11.tar.bz2 371620 SHA256 48f7cbd9a503b19246ae2d31af8d2bba7c57945f5ba8ca4fcf7bf6b3a265bd83 SHA512 89613a4e3096e980b09eef7a48b7bb6eda60ecd3d542afd5621880e0cb62e3e5c385cf0072fc4a96fadab8f72d8f717957f396cb399d3a0d25d48a346bc8cf31 WHIRLPOOL fffd7c5ed4178fac9f9bb133cfb90cc8daaeb45d45ab665aed3c156745e3fe0881f32bcaef07f0cba4800fa0ddcf463e34563e0505946336d9c7d952c6c5a792 | ||
DIST clipgrab-3.4.9.tar.bz2 372342 SHA256 e1aaf9c5f55788ac580ba645f0368b8bdf5b65dbe133cd7e08df9ffed8c0546d SHA512 24efcf23b4553c47845efbbe69a9cee6d322a830693ba02a7900b41987bd449c65a81013c0ff7aa3a0cccaea528225fe6d11d43e56361fbada35fdb37003420b WHIRLPOOL 51bb35f1b4cb9c59e0cff55e95d1b4be288b97b25ac7f9c67a7dd4b12a39f242def7a2c3e2fac8b9af8201934172ec3685f5986bb3808be0cf0618c7878f79ab | ||
DIST clipgrab-3.5.6.tar.gz 470379 SHA256 b6088625209fd0fefa3078d3131b71efc0d27af36e6207dadeab79831586a672 SHA512 7a8e3311e3e081ea65e572b2e4fabcaae99424e80f8d18b91a4a8e9d26088e5cb5c4f752128bda7493a4ab07ff8e93844450d6e9d95be8d03f1c95b6f8ea23c9 WHIRLPOOL d446796bd80dabfa13dd96f61615e979da78ea09d305d40b1018df1d461a6b432f7881b690af7f2ead554e4689539ffcbb166d491e2f4e5f4b3e135babd922a6 |
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,31 @@ | ||
# Copyright 1999-2015 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=5 | ||
|
||
inherit qt4-r2 eutils | ||
|
||
DESCRIPTION="Download from various internet video services like Youtube etc." | ||
HOMEPAGE="http://clipgrab.de/en" | ||
SRC_URI="http://download.${PN}.de/${P}.tar.gz" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
DEPEND="dev-qt/qtwebkit:4" | ||
RDEPEND="${DEPEND} | ||
|| ( media-video/libav media-video/ffmpeg )" | ||
|
||
PATCHES=( | ||
"${FILESDIR}/${PN}-3.4.2-obey.patch" | ||
) | ||
|
||
src_install() { | ||
dobin ${PN} | ||
|
||
newicon icon.png ${PN}.png | ||
make_desktop_entry clipgrab Clipgrab "" "Qt;Video;AudioVideo;" | ||
} |