summary refs log tree commit diff
path: root/x11-misc
diff options
context:
space:
mode:
authorCasey Avila <casey@theavilas.org>2021-01-25 10:31:57 -0800
committerCasey Avila <casey@theavilas.org>2021-01-25 10:31:57 -0800
commitf0dd0508d73c54ac8424c4450075c10fb72baaea (patch)
tree8655bdc6b11ef1005e601b28d26e5189e4157bad /x11-misc
parentx11-misc/xprompt: Bump version (diff)
x11-misc/xlocatemouse: Add package
Signed-off-by: Casey Avila <casey@theavilas.org>
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/xlocatemouse/Manifest1
-rw-r--r--x11-misc/xlocatemouse/files/xlocatemouse-20.05-makefile.patch17
-rw-r--r--x11-misc/xlocatemouse/files/xlocatemouse-9999-makefile.patch17
-rw-r--r--x11-misc/xlocatemouse/metadata.xml8
-rw-r--r--x11-misc/xlocatemouse/xlocatemouse-20.05.ebuild37
-rw-r--r--x11-misc/xlocatemouse/xlocatemouse-9999.ebuild37
6 files changed, 117 insertions, 0 deletions
diff --git a/x11-misc/xlocatemouse/Manifest b/x11-misc/xlocatemouse/Manifest
new file mode 100644
index 0000000..c213787
--- /dev/null
+++ b/x11-misc/xlocatemouse/Manifest
@@ -0,0 +1 @@
+DIST xlocatemouse-v20.05.tar.gz 3727 BLAKE2B 0341008e0e7eae9b332dba5006bd268f382a3cc070020dfd8b5b41d11323f30b7273808087f4c25ed91b5c658e14584100f1f79bbd7ffac9e34ebadfc712007b SHA512 7fade5eb99f93154d77c43204788d78681cb516ddf8de2d9e11eac7629ab4216e8cee262a81e1bb572588e4373a875078d56c96d474995fefb6b92c22811547f
diff --git a/x11-misc/xlocatemouse/files/xlocatemouse-20.05-makefile.patch b/x11-misc/xlocatemouse/files/xlocatemouse-20.05-makefile.patch
new file mode 100644
index 0000000..fb4a619
--- /dev/null
+++ b/x11-misc/xlocatemouse/files/xlocatemouse-20.05-makefile.patch
@@ -0,0 +1,17 @@
+diff --git a/Makefile b/Makefile
+index 11eedbb..fdfa277 100644
+--- a/Makefile
++++ b/Makefile
+@@ -5,10 +5,8 @@ INSTALL = install
+ INSTALL_PROGRAM = $(INSTALL)
+ INSTALL_DATA = $(INSTALL) -m 644
+ 
+-prefix = /usr/local
+-exec_prefix = $(prefix)
+-bindir = $(exec_prefix)/bin
+-datarootdir = $(prefix)/share
++bindir = $(PREFIX)/bin
++datarootdir = $(PREFIX)/share
+ mandir = $(datarootdir)/man
+ man1dir = $(mandir)/man1
+ 
diff --git a/x11-misc/xlocatemouse/files/xlocatemouse-9999-makefile.patch b/x11-misc/xlocatemouse/files/xlocatemouse-9999-makefile.patch
new file mode 100644
index 0000000..fb4a619
--- /dev/null
+++ b/x11-misc/xlocatemouse/files/xlocatemouse-9999-makefile.patch
@@ -0,0 +1,17 @@
+diff --git a/Makefile b/Makefile
+index 11eedbb..fdfa277 100644
+--- a/Makefile
++++ b/Makefile
+@@ -5,10 +5,8 @@ INSTALL = install
+ INSTALL_PROGRAM = $(INSTALL)
+ INSTALL_DATA = $(INSTALL) -m 644
+ 
+-prefix = /usr/local
+-exec_prefix = $(prefix)
+-bindir = $(exec_prefix)/bin
+-datarootdir = $(prefix)/share
++bindir = $(PREFIX)/bin
++datarootdir = $(PREFIX)/share
+ mandir = $(datarootdir)/man
+ man1dir = $(mandir)/man1
+ 
diff --git a/x11-misc/xlocatemouse/metadata.xml b/x11-misc/xlocatemouse/metadata.xml
new file mode 100644
index 0000000..90ac276
--- /dev/null
+++ b/x11-misc/xlocatemouse/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>casey@theavilas.org</email>
+		<name>casey</name>
+	</maintainer>
+</pkgmetadata>
diff --git a/x11-misc/xlocatemouse/xlocatemouse-20.05.ebuild b/x11-misc/xlocatemouse/xlocatemouse-20.05.ebuild
new file mode 100644
index 0000000..af570a1
--- /dev/null
+++ b/x11-misc/xlocatemouse/xlocatemouse-20.05.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} == *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://www.uninformativ.de/git/xlocatemouse.git"
+fi
+
+DESCRIPTION="Find your X11 mouse pointer"
+HOMEPAGE="https://www.uninformativ.de/git/xlocatemouse/file/README.html"
+
+if [[ ${PV} == *9999 ]]; then
+	SRC_URI=""
+	KEYWORDS=""
+else
+	SRC_URI="https://www.uninformativ.de/git/xlocatemouse/archives/xlocatemouse-v${PV}.tar.gz -> ${PN}-v${PV}.tar.gz"
+	S="${WORKDIR}/${PN}-v${PV}"  # xlocatemouse-v20.05 is used in source tarball
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+DEPEND="x11-libs/libX11"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+PATCHES=(
+	"${FILESDIR}/${P}-makefile.patch"
+)
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+}
diff --git a/x11-misc/xlocatemouse/xlocatemouse-9999.ebuild b/x11-misc/xlocatemouse/xlocatemouse-9999.ebuild
new file mode 100644
index 0000000..af570a1
--- /dev/null
+++ b/x11-misc/xlocatemouse/xlocatemouse-9999.ebuild
@@ -0,0 +1,37 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+if [[ ${PV} == *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://www.uninformativ.de/git/xlocatemouse.git"
+fi
+
+DESCRIPTION="Find your X11 mouse pointer"
+HOMEPAGE="https://www.uninformativ.de/git/xlocatemouse/file/README.html"
+
+if [[ ${PV} == *9999 ]]; then
+	SRC_URI=""
+	KEYWORDS=""
+else
+	SRC_URI="https://www.uninformativ.de/git/xlocatemouse/archives/xlocatemouse-v${PV}.tar.gz -> ${PN}-v${PV}.tar.gz"
+	S="${WORKDIR}/${PN}-v${PV}"  # xlocatemouse-v20.05 is used in source tarball
+	KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+DEPEND="x11-libs/libX11"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+PATCHES=(
+	"${FILESDIR}/${P}-makefile.patch"
+)
+
+src_install() {
+	emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+}

Consider giving Nix/NixOS a try! <3