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.
Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
Showing
3 changed files
with
53 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST peek-0.8.0.tar.gz 70208 SHA256 45261ecd3f1891962441266e723a50a7ec81ee00a699c2db64bdde5e6c01aaa9 SHA512 88d16b1f23e7e710dd617389f632b2eb94c9050861615abc95bc1a76cda84727f0eaf3b1f9898536e457507d0943b3d994800b7340ce2943adb509eb4516236b WHIRLPOOL 0b59668469067ef724e8e1ffcbf9dc6bd5a9a46ab61d133ce2f7bc6a1cb0de17bee53dc5975f4f1fd5bff228a490e3ca3c2b2a000a40b5662aef8ee120f2d0c2 |
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,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
<name>Bernard Cafarelli</name> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="github">phw/peek</remote-id> | ||
</upstream> | ||
</pkgmetadata> |
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,41 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
VALA_MIN_API_VERSION="0.22" | ||
|
||
inherit gnome2 vala cmake-utils | ||
|
||
DESCRIPTION="Simple animated Gif screen recorder" | ||
HOMEPAGE="https://github.com/phw/peek" | ||
SRC_URI="https://github.com/phw/peek/archive/v${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-3+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
RDEPEND=">=dev-libs/glib-2.38:2 | ||
media-video/ffmpeg[X,encode] | ||
|| ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] ) | ||
>=x11-libs/gtk+-3.14:3" | ||
|
||
DEPEND="${RDEPEND} | ||
$(vala_depend) | ||
>=sys-devel/gettext-0.19" | ||
|
||
src_prepare() { | ||
cmake-utils_src_prepare | ||
gnome2_src_prepare | ||
vala_src_prepare | ||
} | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DGSETTINGS_COMPILE=OFF | ||
-DVALA_EXECUTABLE="${VALAC}" | ||
) | ||
|
||
cmake-utils_src_configure | ||
} |