parlay

yet another gentoo overlay
git clone https://git.parazyd.org/parlay
Log | Files | Refs | README

commit c73b0b94c2eac8fbb76193a64e93e95085db88ae
parent 5f569128971672f93f6a6d8a439c072ddbc8d343
Author: parazyd <parazyd@dyne.org>
Date:   Thu, 23 Jun 2016 20:34:59 +0200

x11-terms/cool-retro-term: Add 9999

Diffstat:
Ax11-terms/cool-retro-term/cool-retro-term-9999.ebuild | 37+++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+), 0 deletions(-)

diff --git a/x11-terms/cool-retro-term/cool-retro-term-9999.ebuild b/x11-terms/cool-retro-term/cool-retro-term-9999.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit qmake-utils git-r3 + +DESCRIPTION="A good looking terminal emulator which mimics the old cathode display" +HOMEPAGE="https://github.com/Swordfish90/cool-retro-term" + +EGIT_REPO_URI="git://github.com/Swordfish90/${PN}.git" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" +IUSE="" + +DEPEND=" + dev-qt/qtquickcontrols:5[widgets] + dev-qt/qtgraphicaleffects:5 + dev-qt/qtdeclarative:5[localstorage] +" + +RDEPEND="${DEPEND}" + +src_configure() { + local myeqmakeargs=( + PREFIX="${EPREFIX}/usr" + ) + eqmake5 ${myeqmakeargs[@]} +} + +src_install() { + emake INSTALL_ROOT="${D}" install || die +} +