Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/detachtty/
Date: Sat, 04 Mar 2017 23:02:00
Message-Id: 1488668395.2033a40dc5b8a436901280a3594391bf30062ee0.monsieurp@gentoo
1 commit: 2033a40dc5b8a436901280a3594391bf30062ee0
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 4 22:59:55 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 22:59:55 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2033a40d
7
8 app-misc/detachtty: EAPI 6 bump.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 app-misc/detachtty/detachtty-9-r1.ebuild | 27 +++++++++++++++++++++++++++
13 1 file changed, 27 insertions(+)
14
15 diff --git a/app-misc/detachtty/detachtty-9-r1.ebuild b/app-misc/detachtty/detachtty-9-r1.ebuild
16 new file mode 100644
17 index 00000000000..ecb689a20b3
18 --- /dev/null
19 +++ b/app-misc/detachtty/detachtty-9-r1.ebuild
20 @@ -0,0 +1,27 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +
26 +inherit toolchain-funcs
27 +
28 +MY_P="${P/-/_}"
29 +
30 +DESCRIPTION="Attach/detach from interactive processes across the network"
31 +HOMEPAGE="http://packages.debian.org/unstable/admin/detachtty"
32 +SRC_URI="mirror://debian/pool/main/d/${PN}/${MY_P}.tar.gz"
33 +
34 +LICENSE="GPL-2"
35 +SLOT="0"
36 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
37 +
38 +src_compile() {
39 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
40 +}
41 +
42 +src_install() {
43 + dobin detachtty attachtty
44 + doman detachtty.1
45 + dosym /usr/share/man/man1/detachtty.1 /usr/share/man/man1/attachtty.1
46 + dodoc INSTALL README
47 +}