From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 916D7139694 for ; Sat, 4 Mar 2017 23:02:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA4D5E0C10; Sat, 4 Mar 2017 23:01:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B90A9E0C09 for ; Sat, 4 Mar 2017 23:01:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D2BC4341842 for ; Sat, 4 Mar 2017 23:01:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F9335C92 for ; Sat, 4 Mar 2017 23:01:52 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1488668395.2033a40dc5b8a436901280a3594391bf30062ee0.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/detachtty/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/detachtty/detachtty-9-r1.ebuild X-VCS-Directories: app-misc/detachtty/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 2033a40dc5b8a436901280a3594391bf30062ee0 X-VCS-Branch: master Date: Sat, 4 Mar 2017 23:01:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2b666204-4df2-4d85-ad5a-d7402b137096 X-Archives-Hash: a184df8dd0a1c0552ebe603dedbc2213 commit: 2033a40dc5b8a436901280a3594391bf30062ee0 Author: Patrice Clement gentoo org> AuthorDate: Sat Mar 4 22:59:55 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Mar 4 22:59:55 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2033a40d app-misc/detachtty: EAPI 6 bump. Package-Manager: Portage-2.3.3, Repoman-2.3.1 app-misc/detachtty/detachtty-9-r1.ebuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/app-misc/detachtty/detachtty-9-r1.ebuild b/app-misc/detachtty/detachtty-9-r1.ebuild new file mode 100644 index 00000000000..ecb689a20b3 --- /dev/null +++ b/app-misc/detachtty/detachtty-9-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs + +MY_P="${P/-/_}" + +DESCRIPTION="Attach/detach from interactive processes across the network" +HOMEPAGE="http://packages.debian.org/unstable/admin/detachtty" +SRC_URI="mirror://debian/pool/main/d/${PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" +} + +src_install() { + dobin detachtty attachtty + doman detachtty.1 + dosym /usr/share/man/man1/detachtty.1 /usr/share/man/man1/attachtty.1 + dodoc INSTALL README +}