diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-03-02 15:59:12 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-03-02 15:59:12 +0000 |
commit | 06a7b5647e11a8ddf69b1c3d3ded6a8ba28b923e (patch) | |
tree | 8d58c1f4b049da677b33209b072f2b3057268fe0 /x11-terms/yeahconsole | |
parent | 99abbc5e5a6ecd3fc981b45646fd8cb5d320377b (diff) |
gentoo resync : 02.03.2018
Diffstat (limited to 'x11-terms/yeahconsole')
-rw-r--r-- | x11-terms/yeahconsole/Manifest | 2 | ||||
-rw-r--r-- | x11-terms/yeahconsole/yeahconsole-0.3.4-r1.ebuild | 30 |
2 files changed, 16 insertions, 16 deletions
diff --git a/x11-terms/yeahconsole/Manifest b/x11-terms/yeahconsole/Manifest index 34e68dbaabc1..713cdf7edfd1 100644 --- a/x11-terms/yeahconsole/Manifest +++ b/x11-terms/yeahconsole/Manifest @@ -1,4 +1,4 @@ AUX yeahconsole-0.3.4-make.patch 769 BLAKE2B 23f6aed2c70340e4d007f5ffc8ff986c3063f51d851fc42f8605fefc9d735bf39eb8ce8d3ad87dd1d5d8fbf30d077f0c944c903790df76f9ad41a50c5931ab6a SHA512 e78ace16e451fabe508ff9e6b691ae215b626a1b16868d44f958801c01278b15921cd8a187d454dd685a75eea8b798cd00e71ae024d83c43918104c43cf1a58f DIST yeahconsole-0.3.4.tar.gz 12281 BLAKE2B d53ca2a5000a0b166f23195a6d4febcae96a0b91c03ea2d60c9a2a82bfef65222431bcdf717e10e3b83d3ed2387d3ea5ce746b22d3af209fcfb8939935d00996 SHA512 cba74d988b3cb991d95de1796e9e79b881fe011d4fc8d6aa1f863f4c465aadfd31250e57d36ce0118dfc367225c2861cf8e80ac47996c2718d83756a8e638ead -EBUILD yeahconsole-0.3.4-r1.ebuild 854 BLAKE2B ed40cb000721941c0ebdd3665c67c13022f4eb11bc15efe3e7dd76f3c805c4611e5776580662b727cdf0e081b37248232acb90588e1f894e1c3872063c7fa0df SHA512 18f3e98027f3daf5ab144e3f6a811721c67f7fa2e9f6185133312c7be7eb40d4fe709c26898e93508254e8d470df6021debe3f43640d84b58895a9a8514d4e79 +EBUILD yeahconsole-0.3.4-r1.ebuild 776 BLAKE2B 0817e66a959118ccc1b21378decd535f4b212c8486044dc74da32bcbbc5ed8508a876461f152cf5d5dd487132955505bc2768f84dedcd6b55676aaa548a8b4c1 SHA512 ee08ee9169adbbf697b1a0b1f4c1898a3f00dd2a39e6aee74d78d235eeff3092b730a1a9c1f80c926b4f636f495f5ee33780064dc0bfb6c851abe516ba514870 MISC metadata.xml 240 BLAKE2B 64fe413f69832b5396b621f50bc6f618ddea15ddd4044ac76da4557d7dc0d963ce6ba36c0d1c0a8911af48fd71a6e84c4981f15ac7bad40bbd801e52b568a23b SHA512 25affa2d6d2fe48707ae81553343451aff9797885b4232e73973a29d4cc1d28a937d024cefca49f92383f01eb8cb811546cd2334cbb78f8e66f1db1f63ff4572 diff --git a/x11-terms/yeahconsole/yeahconsole-0.3.4-r1.ebuild b/x11-terms/yeahconsole/yeahconsole-0.3.4-r1.ebuild index 08c40f4f0d49..5cbb5121559f 100644 --- a/x11-terms/yeahconsole/yeahconsole-0.3.4-r1.ebuild +++ b/x11-terms/yeahconsole/yeahconsole-0.3.4-r1.ebuild @@ -1,9 +1,8 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="2" - -inherit eutils toolchain-funcs +EAPI=6 +inherit toolchain-funcs DESCRIPTION="yeahconsole turns an xterm or rxvt-unicode into a game-like console" HOMEPAGE="http://phrat.de/yeahtools.html" @@ -12,24 +11,25 @@ SRC_URI="http://phrat.de/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 hppa x86" - -IUSE="" -RDEPEND="x11-libs/libX11" -DEPEND="${RDEPEND} - x11-proto/xproto" - -src_prepare() { - epatch "${FILESDIR}"/${P}-make.patch -} +RDEPEND=" + x11-libs/libX11 +" +DEPEND=" + ${RDEPEND} + x11-proto/xproto +" +PATCHES=( + "${FILESDIR}"/${P}-make.patch +) src_compile() { tc-export CC - emake || die "make failed" + emake } src_install() { dodir /usr/bin - emake PREFIX="${D}"/usr install || die "emake install failed" + emake PREFIX="${D}"/usr install dodoc README } |