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: ChangeLog evilvte-0.4.4_pre8.ebuild evilvte-0.4.4_pre6-r1.ebuild
Date: Fri, 28 Nov 2008 12:16:40
Message-Id: E1L62H0-0001kk-Iw@stork.gentoo.org
1 ssuominen 08/11/28 12:16:38
2
3 Modified: ChangeLog
4 Added: evilvte-0.4.4_pre8.ebuild
5 Removed: evilvte-0.4.4_pre6-r1.ebuild
6 Log:
7 Version bump. Remove old.
8 (Portage version: 2.1.6_rc2/cvs/Linux 2.6.27.7 i686)
9
10 Revision Changes Path
11 1.7 x11-terms/evilvte/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/evilvte/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/evilvte/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/evilvte/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-terms/evilvte/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 27 Nov 2008 22:04:44 -0000 1.6
24 +++ ChangeLog 28 Nov 2008 12:16:38 -0000 1.7
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-terms/evilvte
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/evilvte/ChangeLog,v 1.6 2008/11/27 22:04:44 armin76 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/evilvte/ChangeLog,v 1.7 2008/11/28 12:16:38 ssuominen Exp $
30 +
31 +*evilvte-0.4.4_pre8 (28 Nov 2008)
32 +
33 + 28 Nov 2008; <ssuominen@g.o> +evilvte-0.4.4_pre8.ebuild:
34 + Version bump. Upstream applied our patch.
35
36 27 Nov 2008; Raúl Porcel <armin76@g.o> evilvte-0.4.3.ebuild:
37 x86 stable
38
39
40
41 1.1 x11-terms/evilvte/evilvte-0.4.4_pre8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/evilvte/evilvte-0.4.4_pre8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/evilvte/evilvte-0.4.4_pre8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: evilvte-0.4.4_pre8.ebuild
47 ===================================================================
48 # Copyright 1999-2008 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.4_pre8.ebuild,v 1.1 2008/11/28 12:16:38 ssuominen Exp $
51
52 MY_P=${P/_/\~}
53
54 inherit toolchain-funcs
55
56 DESCRIPTION="VTE based, super lightweight terminal emulator"
57 HOMEPAGE="http://www.calno.com/evilvte"
58 SRC_URI="http://www.calno.com/${PN}/${MY_P}.tar.gz"
59
60 LICENSE="BSD GPL-2"
61 SLOT="0"
62 KEYWORDS="~amd64 ~x86"
63 IUSE=""
64
65 RDEPEND="x11-libs/vte
66 >=x11-libs/gtk+-2"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig"
69
70 S=${WORKDIR}/${MY_P}
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75
76 if [[ -f /etc/${PN}/config.h ]]; then
77 cp /etc/${PN}/config.h src/ || die "copying config.h failed."
78 fi
79 }
80
81 src_compile() {
82 ./configure --prefix=/usr || die "./configure failed."
83 emake LDFLAGS="${LDFLAGS}" OPTFLAGS="${CFLAGS}" CC="$(tc-getCC)" || die "emake failed."
84 }
85
86 src_install() {
87 emake DESTDIR="${D}" install || die "emake install failed."
88 dodoc Changelog
89 insinto /etc/${PN}
90 doins src/config.h || die "doins failed."
91 }
92
93 pkg_postinst() {
94 elog "Edit /etc/${PN}/config.h and re-emerge for custom configuration."
95 }