diff options
Diffstat (limited to 'x11-misc/xnotify')
-rw-r--r-- | x11-misc/xnotify/Manifest | 1 | ||||
-rw-r--r-- | x11-misc/xnotify/metadata.xml | 11 | ||||
-rw-r--r-- | x11-misc/xnotify/xnotify-0.3.2.ebuild | 41 | ||||
-rw-r--r-- | x11-misc/xnotify/xnotify-9999.ebuild | 38 |
4 files changed, 91 insertions, 0 deletions
diff --git a/x11-misc/xnotify/Manifest b/x11-misc/xnotify/Manifest new file mode 100644 index 0000000..3dc38f6 --- /dev/null +++ b/x11-misc/xnotify/Manifest @@ -0,0 +1 @@ +DIST xnotify-0.3.2.tar.gz 12533 BLAKE2B 30f222781f81466c88077f461e06a52584249ee8b976ce3dd6460e6e03eec50eb155691cd29a4d9af9d8e08379715ade63cd4f5ef07908bba61c4b80ce5635a4 SHA512 d12d421129acd85b95dd310618cbe9c3dd4e4d7b0238da611f6e3285f92b8f4a14d510bae3a109385c50dd3517fd25dec49709121a10f0efe362fbcc18ff3b60 diff --git a/x11-misc/xnotify/metadata.xml b/x11-misc/xnotify/metadata.xml new file mode 100644 index 0000000..10d7f1b --- /dev/null +++ b/x11-misc/xnotify/metadata.xml @@ -0,0 +1,11 @@ +<?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> + <upstream> + <remote-id type="github">phillbush/xnotify</remote-id> + </upstream> +</pkgmetadata> diff --git a/x11-misc/xnotify/xnotify-0.3.2.ebuild b/x11-misc/xnotify/xnotify-0.3.2.ebuild new file mode 100644 index 0000000..452f016 --- /dev/null +++ b/x11-misc/xnotify/xnotify-0.3.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 2019-2020 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://github.com/phillbush/xnotify.git" +fi + +DESCRIPTION="read notifications from stdin and display them on the screen" +HOMEPAGE="https://github.com/phillbush/xnotify" + +if [[ ${PV} == *9999 ]]; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/phillbush/xnotify/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND=" + media-libs/fontconfig + media-libs/imlib2 + x11-libs/libX11 + x11-libs/libXft + x11-libs/libXinerama +" +RDEPEND="${DEPEND}" +BDEPEND="" + +DOCS=( README.md ) + +src_install() { + emake DESTDIR="${D}" PREFIX="/usr" install + einstalldocs +} diff --git a/x11-misc/xnotify/xnotify-9999.ebuild b/x11-misc/xnotify/xnotify-9999.ebuild new file mode 100644 index 0000000..4bb281d --- /dev/null +++ b/x11-misc/xnotify/xnotify-9999.ebuild @@ -0,0 +1,38 @@ +# Copyright 2019-2020 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://github.com/phillbush/xnotify.git" +fi + +DESCRIPTION="read notifications from stdin and display them on the screen" +HOMEPAGE="https://github.com/phillbush/xnotify" + +if [[ ${PV} == *9999 ]]; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/phillbush/xnotify/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND=" + media-libs/fontconfig + media-libs/imlib2 + x11-libs/libX11 + x11-libs/libXft + x11-libs/libXinerama +" +RDEPEND="${DEPEND}" +BDEPEND="" + +src_install() { + emake DESTDIR="${D}" PREFIX="/usr" install +} |