summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Pipping <sping@gentoo.org>2017-04-22 16:23:38 +0200
committerSebastian Pipping <sping@gentoo.org>2017-04-22 16:30:15 +0200
commit237ca8a7efd86c936734288889b414272cda1968 (patch)
tree3b85432a0473d16c4536573b34141e2a4923c4f5 /x11-misc/xprintidle
parentsys-cluster/libqb: ebuild cleanup and eapi bump (diff)
downloadgentoo-237ca8a7efd86c936734288889b414272cda1968.tar.gz
gentoo-237ca8a7efd86c936734288889b414272cda1968.tar.bz2
gentoo-237ca8a7efd86c936734288889b414272cda1968.zip
x11-misc/xprintidle: 2.0
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'x11-misc/xprintidle')
-rw-r--r--x11-misc/xprintidle/Manifest1
-rw-r--r--x11-misc/xprintidle/metadata.xml7
-rw-r--r--x11-misc/xprintidle/xprintidle-2.0.ebuild36
3 files changed, 44 insertions, 0 deletions
diff --git a/x11-misc/xprintidle/Manifest b/x11-misc/xprintidle/Manifest
new file mode 100644
index 000000000000..8a5c72e080d9
--- /dev/null
+++ b/x11-misc/xprintidle/Manifest
@@ -0,0 +1 @@
+DIST xprintidle-2.0.tar.gz 87308 SHA256 18acf6f247cf217b71f8893db498c8b0497bc73d4ab1c34de6cadc0933cc17aa SHA512 cc2f62b33ef387366246ee9a195be4cde68b2d13a49a4d1299640da2d42f7042152bfdf6932e7904a7f4211b0dc22486bbd62b47fdaf9d5d3db895e296b5f2f9 WHIRLPOOL 08c461c73cc244b595ae4072ef7a4aa9da05dcce0b377f29b6ee07a3cfcb7336f711a418f80feaa12e8bc4f3bad1c152c30a571db6e5d79ccc14dcabca7e9e9b
diff --git a/x11-misc/xprintidle/metadata.xml b/x11-misc/xprintidle/metadata.xml
new file mode 100644
index 000000000000..82b7b7953794
--- /dev/null
+++ b/x11-misc/xprintidle/metadata.xml
@@ -0,0 +1,7 @@
+<?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>
+</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
+}