diff options
author | Azat Bahawi <azahi@teknik.io> | 2020-08-10 15:32:45 +0300 |
---|---|---|
committer | Azat Bahawi <azahi@teknik.io> | 2020-08-10 15:32:45 +0300 |
commit | 6cb6a3af390046b44b61553873dcdb3934078cd5 (patch) | |
tree | 0cd3b30b719ba66016ebaf20d4a24c42b9a2885d | |
parent | x11-misc/xmenu: Fix missing fontconfig dep (diff) |
x11-misc/xclickroot: Add package
-rw-r--r-- | x11-misc/xclickroot/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/xclickroot/metadata.xml | 8 | ||||
-rw-r--r-- | x11-misc/xclickroot/xclickroot-1.0.ebuild | 34 | ||||
-rw-r--r-- | x11-misc/xclickroot/xclickroot-9999.ebuild | 34 |
4 files changed, 77 insertions, 0 deletions
diff --git a/x11-misc/xclickroot/Manifest b/x11-misc/xclickroot/Manifest new file mode 100644 index 0000000..edaf4e2 --- /dev/null +++ b/x11-misc/xclickroot/Manifest @@ -0,0 +1 @@ +DIST xclickroot-1.0.tar.gz 2250 BLAKE2B c83e0809aaaccc3bc917a563747797b84bf2875d04443c4ddb09ab9652d90e5cb22e7e236aacb422baa5008c951fa3bd05e23ad94b395bd21e4051291bd1f2fc SHA512 9dcce0e2a22bcf7109067cb0182056d877c484349db956e34cd3c3cf5edc1a51d2eb8f96539370fbb46a11a8b70e1f7d6e07ac46526beb8bba533013358fa2bc diff --git a/x11-misc/xclickroot/metadata.xml b/x11-misc/xclickroot/metadata.xml new file mode 100644 index 0000000..7869e07 --- /dev/null +++ b/x11-misc/xclickroot/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>azahi@teknik.io</email> + <name>azahi</name> + </maintainer> +</pkgmetadata> diff --git a/x11-misc/xclickroot/xclickroot-1.0.ebuild b/x11-misc/xclickroot/xclickroot-1.0.ebuild new file mode 100644 index 0000000..69e8c68 --- /dev/null +++ b/x11-misc/xclickroot/xclickroot-1.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} == *9999 ]]; then + SCM="git-r3" + EGIT_REPO_URI="https://github.com/phillbush/xclickroot.git" +fi + +inherit eutils ${SCM} + +DESCRIPTION="click on root window and run a command" +HOMEPAGE="https://github.com/phillbush/xclickroot" + +if [[ ${PV} == *9999 ]]; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/phillbush/xclickroot/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="x11-libs/libX11" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_install() { + emake PREFIX= DESTDIR="${D}" MANPREFIX="/usr/share/man" install +} diff --git a/x11-misc/xclickroot/xclickroot-9999.ebuild b/x11-misc/xclickroot/xclickroot-9999.ebuild new file mode 100644 index 0000000..69e8c68 --- /dev/null +++ b/x11-misc/xclickroot/xclickroot-9999.ebuild @@ -0,0 +1,34 @@ +# Copyright 2019-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +if [[ ${PV} == *9999 ]]; then + SCM="git-r3" + EGIT_REPO_URI="https://github.com/phillbush/xclickroot.git" +fi + +inherit eutils ${SCM} + +DESCRIPTION="click on root window and run a command" +HOMEPAGE="https://github.com/phillbush/xclickroot" + +if [[ ${PV} == *9999 ]]; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/phillbush/xclickroot/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="x11-libs/libX11" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_install() { + emake PREFIX= DESTDIR="${D}" MANPREFIX="/usr/share/man" install +} |