From c40c646f8a0a9c477dc217f50009fa4c2fdbd4e2 Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Sat, 19 Sep 2020 21:20:26 +0300 Subject: x11-misc/herbe: Add live, docs, upstream info Package-Manager: Portage-3.0.7, Repoman-3.0.1 Manifest-Sign-Key: B40FCB6608BBE3B6 Signed-off-by: Azat Bahawi --- x11-misc/herbe/Manifest | 15 +++++++++++- x11-misc/herbe/herbe-1.0.0-r1.ebuild | 47 ++++++++++++++++++++++++++++++++++++ x11-misc/herbe/herbe-1.0.0.ebuild | 34 -------------------------- x11-misc/herbe/herbe-9999.ebuild | 47 ++++++++++++++++++++++++++++++++++++ x11-misc/herbe/metadata.xml | 3 +++ 5 files changed, 111 insertions(+), 35 deletions(-) create mode 100644 x11-misc/herbe/herbe-1.0.0-r1.ebuild delete mode 100644 x11-misc/herbe/herbe-1.0.0.ebuild create mode 100644 x11-misc/herbe/herbe-9999.ebuild (limited to 'x11-misc') diff --git a/x11-misc/herbe/Manifest b/x11-misc/herbe/Manifest index 5d496e9..260b004 100644 --- a/x11-misc/herbe/Manifest +++ b/x11-misc/herbe/Manifest @@ -1,2 +1,15 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA256 + DIST herbe-1.0.0.tar.gz 4974 BLAKE2B fd5c9141138f109e68947115578578217b23c577ff22edae5b593a84de38a36e63dd147ebed31052ba29f39f5aefbc99b6031da9e5087f246d5cd82b815d850d SHA512 3f49de25fd92194d1354054c207616343d9c21a9d82c6c4e3316ebc5228c0bd90650621438d14cd4730135f328c0438ef054a2b6843f3bd4d15f9cb47a22df12 -EBUILD herbe-1.0.0.ebuild 632 BLAKE2B dc29625ba8ff7315e2e5823f96109638ae9f895f93dd9b58e3d57485d572ccbf734dffc07af54fb9781b4fa71a32693ce2cd98a60390556a5da5465ecdad484b SHA512 00b476a760d86a269d89e80d0cc292d7729dc63f04cd897ca45ef87ca86a8e619c8b9078fbece179cb7bf29c2f8214a0016e66067e67a643143fba960b4d96d8 +-----BEGIN PGP SIGNATURE----- + +iQEzBAEBCAAdFiEE6fNIPzHHKbRMonw4tA/LZgi747YFAl9mS+oACgkQtA/LZgi7 +47Y3wwf+IC+ouBxVsFWJDARCaPrwnqVwGD6ABiMTGsYEcujpg40L4acnTahyeRdf +HbTIGOLrkt/bbqkUPBslJiOzXMqHq6r3obTY3DpdyZXu0PBPQXT77+OI9LzyTpZU +v7FVx5WbuI7y5oL2j1xCD+Z7hi7vlgoMYHNzwDVeGQRCENwavFN42AW5E+tYngk9 +kUhxZnWuXundue47VZhcr97AD/6qgnlJgkW0Yz2UtokEwYzF/hs+yC0EUTsqoZK6 +UnKiMOEYOTmzjss3RXc8tTfwNE0DF4h7TfjXvS+N8VT21Oe1q7nsRdOFcs8zUI69 +zyDN2BacxBcruQuuvIb9wz5e8rkseA== +=Fant +-----END PGP SIGNATURE----- diff --git a/x11-misc/herbe/herbe-1.0.0-r1.ebuild b/x11-misc/herbe/herbe-1.0.0-r1.ebuild new file mode 100644 index 0000000..bc9427d --- /dev/null +++ b/x11-misc/herbe/herbe-1.0.0-r1.ebuild @@ -0,0 +1,47 @@ +# Copyright 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/dudik/herbe.git" +fi + +inherit savedconfig ${SCM} + +DESCRIPTION="Daemon-less notifications without D-Bus" +HOMEPAGE="https://github.com/dudik/herbe" + +if [[ ${PV} == *9999 ]]; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/dudik/herbe/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND=" + media-libs/freetype:2 + x11-libs/libX11 + x11-libs/libXft +" +RDEPEND="${DEPEND}" +BDEPEND="" + +DOCS=( README.md ) + +src_prepare() { + restore_config config.h + default +} + +src_install() { + save_config config.h + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + einstalldocs +} diff --git a/x11-misc/herbe/herbe-1.0.0.ebuild b/x11-misc/herbe/herbe-1.0.0.ebuild deleted file mode 100644 index 263ceab..0000000 --- a/x11-misc/herbe/herbe-1.0.0.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit savedconfig - -DESCRIPTION="Daemon-less notifications without D-Bus. Minimal and lightweight." -HOMEPAGE="https://github.com/dudik/herbe" -SRC_URI="https://github.com/dudik/herbe/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="x11-libs/libX11 - x11-libs/libXft - media-libs/freetype:2 -" -RDEPEND="${DEPEND}" -BDEPEND="" - -src_prepare() { - default - - restore_config config.h -} - -src_install() { - emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install - - save_config config.h -} diff --git a/x11-misc/herbe/herbe-9999.ebuild b/x11-misc/herbe/herbe-9999.ebuild new file mode 100644 index 0000000..bc9427d --- /dev/null +++ b/x11-misc/herbe/herbe-9999.ebuild @@ -0,0 +1,47 @@ +# Copyright 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/dudik/herbe.git" +fi + +inherit savedconfig ${SCM} + +DESCRIPTION="Daemon-less notifications without D-Bus" +HOMEPAGE="https://github.com/dudik/herbe" + +if [[ ${PV} == *9999 ]]; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/dudik/herbe/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND=" + media-libs/freetype:2 + x11-libs/libX11 + x11-libs/libXft +" +RDEPEND="${DEPEND}" +BDEPEND="" + +DOCS=( README.md ) + +src_prepare() { + restore_config config.h + default +} + +src_install() { + save_config config.h + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + einstalldocs +} diff --git a/x11-misc/herbe/metadata.xml b/x11-misc/herbe/metadata.xml index 90ac276..65b587d 100644 --- a/x11-misc/herbe/metadata.xml +++ b/x11-misc/herbe/metadata.xml @@ -5,4 +5,7 @@ casey@theavilas.org casey + + dudik/herbe + -- cgit 1.4.1