commit: 3bfd19bd9da246edd95033a315789b84491b8217 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de> AuthorDate: Sat Apr 25 01:00:58 2020 +0000 Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de> CommitDate: Sat Apr 25 01:42:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3bfd19bd
x11-misc/xob: New package. A lightweight overlay volume (or anything) bar for the X Window System. Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de> x11-misc/xob/Manifest | 1 + x11-misc/xob/metadata.xml | 8 ++++++++ x11-misc/xob/xob-0.2.ebuild | 25 +++++++++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/x11-misc/xob/Manifest b/x11-misc/xob/Manifest new file mode 100644 index 0000000..af59ad6 --- /dev/null +++ b/x11-misc/xob/Manifest @@ -0,0 +1 @@ +DIST xob-0.2.tar.gz 510814 BLAKE2B fa2590511a8cb48d009a8e07d5d8a57aebb09a70caa80e648304a1af6ea48378db062151cacfd87efa589486c2699985c3904718bb75055968c17c57009fca8e SHA512 f1981bb04172c5453428ecbdab33cc22453d1336aaac54ff613b29924179533c040cc82e640f12f3c5d1753c227af010aee3ac725ff4fb22d64ba1b07692a97e diff --git a/x11-misc/xob/metadata.xml b/x11-misc/xob/metadata.xml new file mode 100644 index 0000000..5533c93 --- /dev/null +++ b/x11-misc/xob/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>gen...@tastytea.de</email> + <name>Ronny (tastytea) Gutbrod</name> + </maintainer> +</pkgmetadata> diff --git a/x11-misc/xob/xob-0.2.ebuild b/x11-misc/xob/xob-0.2.ebuild new file mode 100644 index 0000000..2a73d3f --- /dev/null +++ b/x11-misc/xob/xob-0.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A lightweight overlay volume (or anything) bar for the X Window System" +HOMEPAGE="https://github.com/florentc/xob" +SRC_URI="https://github.com/florentc/xob/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + x11-libs/libX11 + dev-libs/libconfig +" +DEPEND="${RDEPEND}" + +src_install() { + emake prefix="${EPREFIX}"/usr \ + sysconfdir="${EPREFIX}"/etc \ + DESTDIR="${D}" install + dodoc CHANGELOG.md README.md +}