logo

overlay

My own overlay for experimentations, use with caution, no support is provided
commit: c406d67ea384a2a4c099c4df67ee0eb976db0355
parent c13567374fda872a9362d2ca3998b8e431d79f72
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Tue,  3 Nov 2020 06:56:37 +0100

x11-terms/svte: New package

Diffstat:

Ax11-terms/svte/Manifest1+
Ax11-terms/svte/svte-9999.ebuild37+++++++++++++++++++++++++++++++++++++
2 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/x11-terms/svte/Manifest b/x11-terms/svte/Manifest @@ -0,0 +1 @@ +DIST pangoterm-0.0_pre621.tar.gz 24447 BLAKE2B ca8ec4584d3304251a58377db0a127c310d84b819a5a6c0f4a7eca77d789405918a739f5d6a17cd021235bbf6d68f8568008b710a57f7187341656a251932e8f SHA512 df6f5726d9c2c6ae2895a45fc1eaab0389963c15296de1d14120f63a0bfda75809fd66def0ab9c6135c576d92c358931aa7e7cee3a670d625aa9d559b67bdd7b diff --git a/x11-terms/svte/svte-9999.ebuild b/x11-terms/svte/svte-9999.ebuild @@ -0,0 +1,37 @@ +# Copyright 2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit git-r3 + +DESCRIPTION="Simple-ass VTE-based (I know) terminal" +HOMEPAGE="https://hacktivis.me/git/svte/" +EGIT_REPO_URI="https://hacktivis.me/git/svte.git" +EGIT_MIN_CLONE_TYPE="single+tags" + +LICENSE="CC-BY-SA-4.0" +SLOT="0" + +DEPEND=" + x11-libs/vte + x11-libs/gtk+:3= +" +RDEPEND="${DEPEND}" + +src_compile() { + emake \ + CC="${CC:-cc}" \ + CFLAGS="${CFLAGS:--02 -Wall -Wextra}" \ + LDFLAGS="${LDFLAGS}" \ + PREFIX="/usr" +} + +src_install() { + emake \ + DESTDIR="${D}" \ + PREFIX="/usr" \ + install + + einstalldocs +}