summaryrefslogtreecommitdiff
path: root/x11-misc/xsr
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-10-29 11:22:34 +0000
committerV3n3RiX <venerix@redcorelinux.org>2017-10-29 11:22:34 +0000
commitbd7908c6630f38067350d396ac5d18c3cc2434a0 (patch)
tree3559b3e11424f5529527f2474d8a977a91ee3389 /x11-misc/xsr
parent8b2628ad8526c806375e7b157889e4274b70248b (diff)
gentoo resync : 29.10.2017
Diffstat (limited to 'x11-misc/xsr')
-rw-r--r--x11-misc/xsr/Manifest3
-rw-r--r--x11-misc/xsr/metadata.xml32
-rw-r--r--x11-misc/xsr/xsr-1.0.0.ebuild28
3 files changed, 63 insertions, 0 deletions
diff --git a/x11-misc/xsr/Manifest b/x11-misc/xsr/Manifest
new file mode 100644
index 000000000000..1ed2533916d0
--- /dev/null
+++ b/x11-misc/xsr/Manifest
@@ -0,0 +1,3 @@
+DIST xsr-1.0.0.tar.gz 8028 SHA256 46cb94d45c90762fa08edcbe2ff03165424978f855c33969062a742b835b2e59 SHA512 0fd7326452a50d0493d30cd956ded07fc3eed551af31c042c0a8f0a9c3af69319719868cfc43fff8b542191b5b9c959894d3db13b15c4127e8ff6020a04f7f15 WHIRLPOOL 6d98693369ac60023cb6ca941a3bd88ebe38f64aa3b96c41ba15f4ea8b20f88d75c215d485472c4d6e9cd6c85ee76d2e145a70d029678b548f9115e9ed285db6
+EBUILD xsr-1.0.0.ebuild 522 SHA256 01df0fbcba4bcdc43beb3f91b35a94e3c8c9b3404140face80f01f39b9297954 SHA512 06ddd1a4ffd54858323b798ecbb38ab2f49a28d2846311b2bbf3c419183368c2398e0171cd9d1db2d28f31f2e10f5fc3cca932f1cd022e46d3150439b4e9ac95 WHIRLPOOL be92adb06398803c93b67d2500b49059cde730fbe606c3b2aca00921e14b0ee8dc803daf74988de96d92caf357cd117d5bdc3cb013e12ed50e4286c53821d19d
+MISC metadata.xml 1228 SHA256 4421477dd5e3c44e11915c3001a55ef55b2e3e365495ffd3bf588fe75143ae9b SHA512 39a98820d8d8202b5996733b970a0107d4cda3ed3911942196e9ec3454c0457bee8539fc1de1e25c5a41ed7175e13d4744732f1c9aa1ebce8e816a5c0cd8461a WHIRLPOOL faa2dc044d8363256afca61249eb61431e7a63c549643f421cf5ecccca1584b26e7f0ce755c709647a4f27f94bb1203b5e25ed05b942b5d628615ce3d27fa85e
diff --git a/x11-misc/xsr/metadata.xml b/x11-misc/xsr/metadata.xml
new file mode 100644
index 000000000000..c2e7935c2eab
--- /dev/null
+++ b/x11-misc/xsr/metadata.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>lezsakdomi1@gmail.com</email>
+ <name>Domonkos Lezsák</name>
+ </maintainer>
+ <maintainer type="project">
+ <email>proxy-maint@gentoo.org</email>
+ <name>Proxy Maintainers</name>
+ </maintainer>
+
+ <longdescription lang="en">
+ X Steps Recorder is a clone of PSR for Windows, a program that allows users
+ to make a recording of all of the steps they took. (It's like a screen
+ recorder except it doesn't record a video.)
+
+ The main differences are that this only runs on Linux, that it records
+ your keystrokes too (!), and that it saves the output as standard html
+ (base64-uri-encoded images) rather than mhtml. This allows for easy
+ editing of the resultant file, such as to remove passwords you typed
+ (which is why psr doesn't record keystrokes in the first place).
+ </longdescription>
+
+ <use>
+ <flag name="cursor">Capture mouse cursor using <pkg>x11-misc/xdotool</pkg>, and place them on the screenshots using <pkg>media-gfx/imagemagick</pkg></flag>
+ </use>
+
+ <upstream>
+ <remote-id type="github">nonnymoose/xsr</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/x11-misc/xsr/xsr-1.0.0.ebuild b/x11-misc/xsr/xsr-1.0.0.ebuild
new file mode 100644
index 000000000000..f933fb6d9645
--- /dev/null
+++ b/x11-misc/xsr/xsr-1.0.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="X Steps Recorder"
+HOMEPAGE="https://github.com/nonnymoose/xsr"
+SRC_URI="https://github.com/nonnymoose/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="cursor"
+
+RDEPEND="
+ dev-lang/perl
+ media-gfx/scrot
+ cursor? (
+ media-gfx/imagemagick
+ x11-misc/xdotool
+ )"
+
+src_install() {
+ dobin "${PN}"
+ insinto /usr/share/xsr
+ doins Cursor.png
+ einstalldocs
+}