Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-terms/evilvte: evilvte-0.4.5_pre7.ebuild ChangeLog
Date: Mon, 31 Aug 2009 11:04:07
Message-Id: E1Mi9V5-0003UM-2T@stork.gentoo.org
1 ssuominen 09/08/31 16:12:59
2
3 Modified: ChangeLog
4 Added: evilvte-0.4.5_pre7.ebuild
5 Log:
6 Version bump; use savedconfig.eclass.
7 (Portage version: 2.2_rc40/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.12 x11-terms/evilvte/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/evilvte/ChangeLog?rev=1.12&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/evilvte/ChangeLog?rev=1.12&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/evilvte/ChangeLog?r1=1.11&r2=1.12
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-terms/evilvte/ChangeLog,v
19 retrieving revision 1.11
20 retrieving revision 1.12
21 diff -u -r1.11 -r1.12
22 --- ChangeLog 1 Jun 2009 12:06:17 -0000 1.11
23 +++ ChangeLog 31 Aug 2009 16:12:58 -0000 1.12
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-terms/evilvte
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/evilvte/ChangeLog,v 1.11 2009/06/01 12:06:17 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/evilvte/ChangeLog,v 1.12 2009/08/31 16:12:58 ssuominen Exp $
29 +
30 +*evilvte-0.4.5_pre7 (31 Aug 2009)
31 +
32 + 31 Aug 2009; Samuli Suominen <ssuominen@g.o>
33 + +evilvte-0.4.5_pre7.ebuild:
34 + Version bump; use savedconfig.eclass.
35
36 01 Jun 2009; Markus Meier <maekke@g.o> evilvte-0.4.5_pre2.ebuild:
37 amd64/x86 stable, bug #272068
38
39
40
41 1.1 x11-terms/evilvte/evilvte-0.4.5_pre7.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/evilvte/evilvte-0.4.5_pre7.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/evilvte/evilvte-0.4.5_pre7.ebuild?rev=1.1&content-type=text/plain
45
46 Index: evilvte-0.4.5_pre7.ebuild
47 ===================================================================
48 # Copyright 1999-2009 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-terms/evilvte/evilvte-0.4.5_pre7.ebuild,v 1.1 2009/08/31 16:12:58 ssuominen Exp $
51
52 EAPI=2
53 inherit toolchain-funcs savedconfig versionator
54
55 MY_P=${PN}-$(replace_version_separator 3 '~')
56
57 DESCRIPTION="VTE based, super lightweight terminal emulator"
58 HOMEPAGE="http://www.calno.com/evilvte"
59 SRC_URI="http://www.calno.com/${PN}/${MY_P}.tar.gz"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE=""
65
66 RDEPEND="x11-libs/vte
67 x11-libs/gtk+:2"
68 DEPEND="${RDEPEND}
69 x11-libs/libXtst
70 dev-util/pkgconfig"
71
72 S=${WORKDIR}/${MY_P}
73
74 src_prepare() {
75 if use savedconfig; then
76 restore_config src/config.h
77 fi
78 }
79
80 src_configure() {
81 ./configure --prefix=/usr || die
82 }
83
84 src_compile() {
85 emake CC="$(tc-getCC)" OPTFLAGS="${CFLAGS}" || die
86 }
87
88 src_install() {
89 emake DESTDIR="${D}" install || die
90 dodoc Changelog
91 save_config src/config.h
92 }