summaryrefslogtreecommitdiff
path: root/x11-misc/xprintidle
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-10-09 18:53:29 +0100
commit4f2d7949f03e1c198bc888f2d05f421d35c57e21 (patch)
treeba5f07bf3f9d22d82e54a462313f5d244036c768 /x11-misc/xprintidle
reinit the tree, so we can have metadata
Diffstat (limited to 'x11-misc/xprintidle')
-rw-r--r--x11-misc/xprintidle/Manifest3
-rw-r--r--x11-misc/xprintidle/metadata.xml10
-rw-r--r--x11-misc/xprintidle/xprintidle-2.0.ebuild36
3 files changed, 49 insertions, 0 deletions
diff --git a/x11-misc/xprintidle/Manifest b/x11-misc/xprintidle/Manifest
new file mode 100644
index 000000000000..ef1d14f11bbb
--- /dev/null
+++ b/x11-misc/xprintidle/Manifest
@@ -0,0 +1,3 @@
+DIST xprintidle-2.0.tar.gz 87308 SHA256 18acf6f247cf217b71f8893db498c8b0497bc73d4ab1c34de6cadc0933cc17aa SHA512 cc2f62b33ef387366246ee9a195be4cde68b2d13a49a4d1299640da2d42f7042152bfdf6932e7904a7f4211b0dc22486bbd62b47fdaf9d5d3db895e296b5f2f9 WHIRLPOOL 08c461c73cc244b595ae4072ef7a4aa9da05dcce0b377f29b6ee07a3cfcb7336f711a418f80feaa12e8bc4f3bad1c152c30a571db6e5d79ccc14dcabca7e9e9b
+EBUILD xprintidle-2.0.ebuild 653 SHA256 22221ff4ded54fa7ba36878ab3a6f1c634dd9773b0c244e058b2d7edb0befdeb SHA512 94c94b601d05b720c99c080074af43276a74415f3ecd670a517298945f96c5efdfa393483028edbb35ef7f4a6fe4a80ccf35b44cdb0466205f1b540c081a343a WHIRLPOOL d0eb5fdd62366a92cb3aa7d79198779c1751e5090c1b05e768ab61bd4eb870fbf0845c6ea08ec2d7a1b0c1f4d80620bf5e6dc84d7cc57631732d233c51b61512
+MISC metadata.xml 304 SHA256 b6abf55431a7a3903429974d003c45b6e1c2f3849d54833eaeb6ddc0bfedd436 SHA512 3f2adb57b1759967aefe91475feac1723efe2e29c86f1111635f9f1c1d909ab518a80e60666cb500247b6a66772067901a3513d1b01a39ad42cbe3044c96e875 WHIRLPOOL 338f43593da953891ecf4174d1c8142b5c95acb4923cd253a4dacbf9e9a70a3f997f64fc4c5e4256fd06765259be8a81d5c8864cf8247721e69842694048b343
diff --git a/x11-misc/xprintidle/metadata.xml b/x11-misc/xprintidle/metadata.xml
new file mode 100644
index 000000000000..3216f3a00a5b
--- /dev/null
+++ b/x11-misc/xprintidle/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>sping@gentoo.org</email>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">lucianposton/xprintidle</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/x11-misc/xprintidle/xprintidle-2.0.ebuild b/x11-misc/xprintidle/xprintidle-2.0.ebuild
new file mode 100644
index 000000000000..83b621d16fed
--- /dev/null
+++ b/x11-misc/xprintidle/xprintidle-2.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Prints user's X server idle time in milliseconds"
+HOMEPAGE="https://github.com/lucianposton/xprintidle"
+SRC_URI="https://github.com/lucianposton/xprintidle/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+ x11-libs/libX11
+ x11-libs/libXext
+ x11-libs/libXScrnSaver
+ "
+RDEPEND="${DEPEND}"
+
+DOCS=(
+ AUTHORS
+ ChangeLog
+ NEWS
+ README
+)
+
+src_prepare() {
+ eapply_user
+
+ # Address "configure: WARNING: 'missing' script is too old or missing"
+ eautoreconf
+}