From 45c51706cbb5975a86580784308d043249db79fa Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Sun, 22 Nov 2020 14:04:47 +0300 Subject: x11-apps/sxinit: Add package Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Azat Bahawi --- x11-apps/sxinit/metadata.xml | 11 +++++++++ x11-apps/sxinit/sxinit-9999.ebuild | 47 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 x11-apps/sxinit/metadata.xml create mode 100644 x11-apps/sxinit/sxinit-9999.ebuild (limited to 'x11-apps') diff --git a/x11-apps/sxinit/metadata.xml b/x11-apps/sxinit/metadata.xml new file mode 100644 index 0000000..2c331be --- /dev/null +++ b/x11-apps/sxinit/metadata.xml @@ -0,0 +1,11 @@ + + + + + azahi@teknik.io + azahi + + + sineemore/sxinit + + diff --git a/x11-apps/sxinit/sxinit-9999.ebuild b/x11-apps/sxinit/sxinit-9999.ebuild new file mode 100644 index 0000000..cd85918 --- /dev/null +++ b/x11-apps/sxinit/sxinit-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/sineemore/sxinit.git" +fi + +inherit toolchain-funcs "${SCM}" + +DESCRIPTION="Simple xinit alternative" +HOMEPAGE="https://github.com/sineemore/sxinit" + +if [[ ${PV} == *9999 ]]; then + SRC_URI="" + KEYWORDS="" +else + SRC_URI="https://github.com/sineemore/sxinit/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT" +SLOT="0" +IUSE="" + +DEPEND="" +RDEPEND="${DEPEND} + x11-base/xorg-server[xorg] +" +BDEPEND="" + +src_prepare() { + default + + sed -e 's/ =/ ?=/g' -i Makefile || die +} + +src_compile() { + emake \ + CC="$(tc-getCC)" +} + +src_install() { + dobin ${PN} +} -- cgit 1.4.1