From d5029992afe9933c82e00bb080b2a750b2dab34c Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Sun, 22 Nov 2020 13:22:53 +0300 Subject: x11-misc/stw: Add package Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Azat Bahawi --- x11-misc/stw/metadata.xml | 11 +++++++++ x11-misc/stw/stw-9999.ebuild | 58 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 x11-misc/stw/metadata.xml create mode 100644 x11-misc/stw/stw-9999.ebuild diff --git a/x11-misc/stw/metadata.xml b/x11-misc/stw/metadata.xml new file mode 100644 index 0000000..5abd00e --- /dev/null +++ b/x11-misc/stw/metadata.xml @@ -0,0 +1,11 @@ + + + + + azahi@teknik.io + azahi + + + sineemore/stw + + diff --git a/x11-misc/stw/stw-9999.ebuild b/x11-misc/stw/stw-9999.ebuild new file mode 100644 index 0000000..21e3674 --- /dev/null +++ b/x11-misc/stw/stw-9999.ebuild @@ -0,0 +1,58 @@ +# 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/sineemore/stw.git" +fi + +inherit toolchain-funcs savedconfig "${SCM}" + +DESCRIPTION="Simple text widget for X" +HOMEPAGE="https://github.com/sineemore/stw" + +if [[ ${PV} == *9999 ]]; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/sineemore/stw/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +DEPEND=" + media-libs/fontconfig + x11-libs/libX11 + x11-libs/libXft + x11-libs/libXrender +" +RDEPEND="${DEPEND}" +BDEPEND="" + +DOCS=( README.md ) + +src_prepare() { + default + + sed -e 's/\ =/\ +=/g' -i Makefile || die +} + +src_compile() { + restore_config config.h + + emake \ + CC="$(tc-getCC)" +} + +src_install() { + save_config config.h + + dobin ${PN} + doman ${PN}.1 + einstalldocs +} -- cgit 1.4.1