diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2019-01-22 10:09:44 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2019-01-22 10:09:44 +0000 |
commit | 09351e78166b5e864197c4456ebae3f89dd0bed9 (patch) | |
tree | 41a96399f56ed3aa399006871bfce4430db84aa2 /app-misc/detachtty | |
parent | c8a77dfe4d3d307c1d5dd2650b7297447d8b609d (diff) |
gentoo resync : 22.01.2019
Diffstat (limited to 'app-misc/detachtty')
-rw-r--r-- | app-misc/detachtty/Manifest | 2 | ||||
-rw-r--r-- | app-misc/detachtty/detachtty-11.0.0.ebuild | 25 |
2 files changed, 27 insertions, 0 deletions
diff --git a/app-misc/detachtty/Manifest b/app-misc/detachtty/Manifest index 4a91d5090cf1..78838c3f38d5 100644 --- a/app-misc/detachtty/Manifest +++ b/app-misc/detachtty/Manifest @@ -1,3 +1,5 @@ +DIST detachtty-11.0.0.tar.gz 23189 BLAKE2B 734489fe35acb5bfb381b8fee1b91d60f15ec795f2ba58f5855544d913957f7da4174c15583dc4090e397c5f562e78a23c1534a741a9812980f4a9cd2d2e291e SHA512 608d68ebe9b8fae55b4295b9c50d8e9065226dbb78818535af79bd2e70cc4a831820b6c673414289548b1063843b5dc80c8b7d2371dd716a16eceb20cd064a10 DIST detachtty_9.tar.gz 13081 BLAKE2B 28bb6a946d04717bc60ac7f65b791a8bb59a5ce1a2f7d7fabb63776538ade3fe046e874007effe7dd6ba7ebac8d739e16b0b0e2372ce4154385164d7939b498c SHA512 8ae7edc1a1c7727eb4d32a1a4327932e374ac838b441f34aee99cfe83e922f1d70383ab0aab2299808f28fea6229f5c122a7624b7ff992ab92b9c3f53483d035 +EBUILD detachtty-11.0.0.ebuild 592 BLAKE2B 10295df5f463fd693d0f3448c4c8b77bfdcb5efc9e6e7a71fe568e78059cdc4e355f32f9ceb1b914f1d027747a988951e2d79ac467ca939aff197c4dec2cc5bd SHA512 cd9ebc51e2dc0b4064c140bc22987d19380d668b78a3ea9f0414f41f73ee1a53f58df741f9efd7136b7467676f49083a5b972ccd7fd2b73c07b12661aa666d96 EBUILD detachtty-9-r1.ebuild 600 BLAKE2B 26747aa2903250488781353bcf93ecb0f66b086e63a691cd84725f3e9b7e7717927509aada2d64b017ca4a12c6cafb0c566ea7cf354b076c8a88032d8b6f0315 SHA512 4902bab8a023b424d9d6f1d583ab431b50375e878d0ed5e7e08840a762e4176dd56c681e632b01fb8a0bd20220c254af0b945561cbf272f5bdeae1f6a0759cda MISC metadata.xml 703 BLAKE2B 68c8ac450ee3a0fba9c9e217653526978c03635b843e9068f6c6e0937d927a030d78a9683f11f81273aaabb8c94f039f1211a1cc5b5ec58b2126d1ffdecc281e SHA512 00e9860010346c6dbad86cd3dd2eaea29f1e91df559b7f5b7dd634a48a0875830a46cab665efd3e3e87eafd6566ecec6ed6e4a691fdc48ebea327f527a312794 diff --git a/app-misc/detachtty/detachtty-11.0.0.ebuild b/app-misc/detachtty/detachtty-11.0.0.ebuild new file mode 100644 index 000000000000..570e3b528b6f --- /dev/null +++ b/app-misc/detachtty/detachtty-11.0.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit toolchain-funcs + +DESCRIPTION="Attach/detach from interactive processes across the network" +HOMEPAGE="https://github.com/cosmos72/detachtty" +SRC_URI="https://github.com/cosmos72/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" +} + +src_install() { + dobin attachtty detachtty + doman "${PN}.1" + dosym detachtty.1 /usr/share/man/man1/attachtty.1 + einstalldocs +} |