Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/anyterm/
Date: Thu, 08 Feb 2018 00:10:42
Message-Id: 1518048119.fc8d6a1bbf54375f7b429be7f4ecebb58fab3b22.asturm@gentoo
1 commit: fc8d6a1bbf54375f7b429be7f4ecebb58fab3b22
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Feb 4 11:55:41 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Feb 8 00:01:59 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc8d6a1b
7
8 www-apache/anyterm: remove old
9
10 Closes: https://github.com/gentoo/gentoo/pull/7060
11
12 www-apache/anyterm/anyterm-1.1.29.ebuild | 45 --------------------------------
13 1 file changed, 45 deletions(-)
14
15 diff --git a/www-apache/anyterm/anyterm-1.1.29.ebuild b/www-apache/anyterm/anyterm-1.1.29.ebuild
16 deleted file mode 100644
17 index 0c499ce28ee..00000000000
18 --- a/www-apache/anyterm/anyterm-1.1.29.ebuild
19 +++ /dev/null
20 @@ -1,45 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI="2"
25 -
26 -inherit eutils flag-o-matic
27 -
28 -DESCRIPTION="A terminal anywhere"
29 -HOMEPAGE="https://anyterm.org/"
30 -SRC_URI="https://anyterm.org/download/${P}.tbz2"
31 -
32 -LICENSE="GPL-2 Boost-1.0"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~x86"
35 -IUSE=""
36 -
37 -RDEPEND="virtual/ssh"
38 -DEPEND="${RDEPEND}
39 - >=dev-libs/boost-1.34.1"
40 -
41 -src_prepare() {
42 - epatch "${FILESDIR}/${PN}-1.1.28-respect-LDFLAGS.patch"
43 - epatch "${FILESDIR}/${P}-gcc-4.4.patch"
44 - epatch "${FILESDIR}/${P}-boost-1.50.patch"
45 -}
46 -
47 -src_compile() {
48 - # this package uses `ld -r -b binary` and thus resulting executable contains
49 - # executable stack
50 - append-ldflags -Wl,-z,noexecstack
51 - emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
52 -}
53 -
54 -src_install() {
55 - dosbin anytermd || die
56 - dodoc CHANGELOG README || die
57 - doman anytermd.1 || die
58 - newinitd "${FILESDIR}/anyterm.init.d" anyterm || die
59 - newconfd "${FILESDIR}/anyterm.conf.d" anyterm || die
60 -}
61 -
62 -pkg_postinst() {
63 - elog "To proceed installation, read following:"
64 - elog "https://anyterm.org/install.html"
65 -}