Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apache/anyterm: anyterm-1.1.28.ebuild ChangeLog
Date: Sat, 24 Jan 2009 14:22:41
Message-Id: E1LQjPC-0003Fp-Mr@stork.gentoo.org
1 pva 09/01/24 14:22:38
2
3 Modified: ChangeLog
4 Added: anyterm-1.1.28.ebuild
5 Log:
6 Version bump, #237655, thank Arfrever Frehtes Taifersar Arahesis and Moshe Kamensky.
7 (Portage version: 2.2_rc23/cvs/Linux i686)
8
9 Revision Changes Path
10 1.17 www-apache/anyterm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/anyterm/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/anyterm/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/anyterm/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/www-apache/anyterm/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 23 Aug 2008 04:33:29 -0000 1.16
23 +++ ChangeLog 24 Jan 2009 14:22:38 -0000 1.17
24 @@ -1,6 +1,14 @@
25 # ChangeLog for www-apache/anyterm
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/www-apache/anyterm/ChangeLog,v 1.16 2008/08/23 04:33:29 cardoe Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/www-apache/anyterm/ChangeLog,v 1.17 2009/01/24 14:22:38 pva Exp $
30 +
31 +*anyterm-1.1.28 (24 Jan 2009)
32 +
33 + 24 Jan 2009; Peter Volkov <pva@g.o>
34 + +files/anyterm-1.1.28-respect-LDFLAGS.patch, +files/anyterm.conf.d,
35 + +files/anyterm.init.d, +anyterm-1.1.28.ebuild:
36 + Version bump, #237655, thank Arfrever Frehtes Taifersar Arahesis and Moshe
37 + Kamensky.
38
39 23 Aug 2008; Doug Goldstein <cardoe@g.o> metadata.xml:
40 add GLEP 56 USE flag desc from use.local.desc
41
42
43
44 1.1 www-apache/anyterm/anyterm-1.1.28.ebuild
45
46 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/anyterm/anyterm-1.1.28.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/www-apache/anyterm/anyterm-1.1.28.ebuild?rev=1.1&content-type=text/plain
48
49 Index: anyterm-1.1.28.ebuild
50 ===================================================================
51 # Copyright 1999-2009 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/www-apache/anyterm/anyterm-1.1.28.ebuild,v 1.1 2009/01/24 14:22:38 pva Exp $
54
55 EAPI=2
56 inherit eutils flag-o-matic
57
58 DESCRIPTION="A terminal anywhere."
59 HOMEPAGE="http://anyterm.org/"
60 SRC_URI="http://anyterm.org/download/${P}.tbz2"
61
62 LICENSE="GPL-2 Boost-1.0"
63 SLOT="0"
64 KEYWORDS="~x86"
65 IUSE=""
66
67 DEPEND=">=dev-libs/boost-1.34.1
68 virtual/ssh"
69 RDEPEND="${DEPEND}"
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 epatch "${FILESDIR}/${P}-respect-LDFLAGS.patch"
75 }
76
77 src_compile() {
78 # this package uses `ld -r -b binary` and thus resulting executalbe contains
79 # executable stack
80 append-ldflags -Wl,-z,noexecstack
81 emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die
82 }
83
84 src_install() {
85 dosbin anytermd || die
86 dodoc CHANGELOG README || die
87 doman anytermd.1 || die
88 newinitd "${FILESDIR}/anyterm.init.d" anyterm || die
89 newconfd "${FILESDIR}/anyterm.conf.d" anyterm || die
90 }
91
92 pkg_postinst() {
93 elog "To proceed installation, read following:"
94 elog "http://anyterm.org/1.1/install.html"
95 }