commit
8fd4b48275
5 changed files with 63 additions and 0 deletions
@ -0,0 +1,2 @@
|
||||
AUX metadata.xml 937 SHA256 ca9f825247c220b2b722746a1eec0be41869364b0456a1ed4f585a76f17c0640 SHA512 ad3da059222fbbc46e83ad26de4c2f0b8bfdac04cd030ddfd4ee25a6a5237ab9acc1d59dab00ee1b69acc28ee694a783c75ef746cd0e8bba0eb6d5b2c2c038d2 WHIRLPOOL 31b30faeacf972c9f5ffd4763a17267d20871ffdcad368e04564b15f84b50e572e9f9c4ecdeb5d7ac60109a48de8a1febfe7ae0a865063ee4b6555d11afc4f03 |
||||
EBUILD cool-retro-term-9999.ebuild 917 SHA256 ab8e1bc52e7c0ff93d9a687ef542d6543fd7e23252b04f1357357f1f9d07c631 SHA512 c58ca79b68a71a89e77e6fec81f8587522f47c67ffdb4722de845d369baf81af07ae49f92605565151a3b7efc1e08f4952360334dcbecd4e9be573b0d0a41ce6 WHIRLPOOL d74814b40e5734e400dc9cba816103b887b6d732919324e12bfdc5e0d22116a4174cef1442ec5e112d830f76fd9b2dfc9aba905bbfb26380c1852df10643b46f |
@ -0,0 +1,42 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation |
||||
# Distributed under the terms of the GNU General Public License v2 |
||||
# $Header: $ |
||||
|
||||
EAPI="5" |
||||
|
||||
inherit git-r3 qmake-utils |
||||
|
||||
SLOT="0" |
||||
|
||||
QT5_MODULE="qtbase" |
||||
|
||||
DESCRIPTION="A good-looking terminal emulator which mimics the old cathode ray tube display." |
||||
|
||||
HOMEPAGE="https://github.com/Swordfish90/cool-retro-term" |
||||
|
||||
EGIT_REPO_URI="${HOMEPAGE}.git" |
||||
EGIT_CHECKOUT_DIR="${S}/src/" |
||||
|
||||
LICENSE="GPL-2" |
||||
|
||||
KEYWORDS="~x86 ~amd64" |
||||
|
||||
DEPEND=" |
||||
>=dev-qt/qtcore-5.3.1 |
||||
>=dev-qt/qtquickcontrols-5.3.1[widgets] |
||||
>=dev-qt/qtdeclarative-5.3.1[localstorage] |
||||
>=dev-qt/qtgraphicaleffects-5.3.1 |
||||
" |
||||
src_compile() { |
||||
cd "${EGIT_CHECKOUT_DIR}" |
||||
eqmake5 || die |
||||
emake || die |
||||
} |
||||
|
||||
src_install() { |
||||
insinto /opt/${PN}/ |
||||
doins -r ${S}/src/{imports,app,README.md} || die "install failed" |
||||
exeinto /opt/${PN} |
||||
doexe ${S}/src/${PN} || die "install failed" |
||||
dosym /opt/${PN}/${PN} /usr/bin/${PN} || die "install failed" |
||||
} |
@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> |
||||
<pkgmetadata> |
||||
<longdescription lang="en">Cool-retro-term is a terminal emulator which mimics the look and feel of old cathode ray tube screens. It has been designed to be eye-candy, customizable, and reasonably lightweight. It uses the konsole engine which is powerful and mature. This terminal emulator requires Qt 5.2 or higher to run. |
||||
</longdescription> |
||||
<maintainer status="inactive"> |
||||
<email>tamas@gerczei.eu</email> |
||||
<name>Tamás Gérczei</name> |
||||
<description>This lame ebuild is provided as-is and exists only to extend availability to Gentoo.</description> |
||||
</maintainer> |
||||
<upstream> |
||||
<name>Filippo Scognamiglio</name> |
||||
<email>flscogna@gmail.com</email> |
||||
<description>Swordfish90@GitHub</description> |
||||
</upstream> |
||||
<bugs-to>https://github.com/Swordfish90/cool-retro-term/issues</bugs-to> |
||||
</pkgmetadata> |
Reference in new issue