From f0dd0508d73c54ac8424c4450075c10fb72baaea Mon Sep 17 00:00:00 2001 From: Casey Avila Date: Mon, 25 Jan 2021 10:31:57 -0800 Subject: x11-misc/xlocatemouse: Add package Signed-off-by: Casey Avila --- x11-misc/xlocatemouse/Manifest | 1 + .../files/xlocatemouse-20.05-makefile.patch | 17 ++++++++++ .../files/xlocatemouse-9999-makefile.patch | 17 ++++++++++ x11-misc/xlocatemouse/metadata.xml | 8 +++++ x11-misc/xlocatemouse/xlocatemouse-20.05.ebuild | 37 ++++++++++++++++++++++ x11-misc/xlocatemouse/xlocatemouse-9999.ebuild | 37 ++++++++++++++++++++++ 6 files changed, 117 insertions(+) create mode 100644 x11-misc/xlocatemouse/Manifest create mode 100644 x11-misc/xlocatemouse/files/xlocatemouse-20.05-makefile.patch create mode 100644 x11-misc/xlocatemouse/files/xlocatemouse-9999-makefile.patch create mode 100644 x11-misc/xlocatemouse/metadata.xml create mode 100644 x11-misc/xlocatemouse/xlocatemouse-20.05.ebuild create mode 100644 x11-misc/xlocatemouse/xlocatemouse-9999.ebuild 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 @@ + + + + + casey@theavilas.org + casey + + 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 +} -- cgit 1.4.1