diff options
author | Azat Bahawi <azahi@teknik.io> | 2020-11-22 13:22:53 +0300 |
---|---|---|
committer | Azat Bahawi <azahi@teknik.io> | 2020-11-22 14:06:28 +0300 |
commit | d5029992afe9933c82e00bb080b2a750b2dab34c (patch) | |
tree | 225fdf320e11356ca48a279b19639f47bd92adc1 | |
parent | Add contact information to README.md (diff) |
x11-misc/stw: Add package
Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Azat Bahawi <azahi@teknik.io>
-rw-r--r-- | x11-misc/stw/metadata.xml | 11 | ||||
-rw-r--r-- | x11-misc/stw/stw-9999.ebuild | 58 |
2 files changed, 69 insertions, 0 deletions
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 @@ +<?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">sineemore/stw</remote-id> + </upstream> +</pkgmetadata> 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 +} |