Gentoo Archives: gentoo-commits

From: "Rene Nussbaumer (killerfox)" <killerfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-terms/rxvt-unicode: ChangeLog rxvt-unicode-8.8.ebuild
Date: Sun, 16 Dec 2007 13:45:20
Message-Id: E1J3tnl-00075O-26@stork.gentoo.org
1 killerfox 07/12/16 13:45:05
2
3 Modified: ChangeLog
4 Added: rxvt-unicode-8.8.ebuild
5 Log:
6 Version bump by upstream
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.100 x11-terms/rxvt-unicode/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.100&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.100&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.99&r2=1.100
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
19 retrieving revision 1.99
20 retrieving revision 1.100
21 diff -u -r1.99 -r1.100
22 --- ChangeLog 13 Nov 2007 20:01:59 -0000 1.99
23 +++ ChangeLog 16 Dec 2007 13:45:04 -0000 1.100
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-terms/rxvt-unicode
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.99 2007/11/13 20:01:59 jer Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.100 2007/12/16 13:45:04 killerfox Exp $
29 +
30 +*rxvt-unicode-8.8 (16 Dec 2007)
31 +
32 + 16 Dec 2007; René Nussbaumer <killerfox@g.o>
33 + +rxvt-unicode-8.8.ebuild:
34 + Version bump by upstream
35
36 13 Nov 2007; Jeroen Roovers <jer@g.o> rxvt-unicode-8.3.ebuild:
37 Stable for HPPA (bug #198780).
38
39
40
41 1.1 x11-terms/rxvt-unicode/rxvt-unicode-8.8.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-8.8.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-8.8.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rxvt-unicode-8.8.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-8.8.ebuild,v 1.1 2007/12/16 13:45:04 killerfox Exp $
51
52 inherit flag-o-matic
53
54 DESCRIPTION="rxvt clone with XFT and Unicode support"
55 HOMEPAGE="http://software.schmorp.de/"
56 SRC_URI="http://dist.schmorp.de/rxvt-unicode/${P}.tar.bz2"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
61 IUSE="truetype perl iso14755"
62
63 # see bug #115992 for modular x deps
64 RDEPEND="x11-libs/libX11
65 x11-libs/libXft
66 media-libs/libafterimage
67 x11-libs/libXrender
68 perl? ( dev-lang/perl )"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig
71 x11-proto/xproto"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 local tdir=/usr/share/terminfo
77 sed -i -e \
78 "s~@TIC@ \(\$(srcdir)/etc/rxvt\)~@TIC@ -o ${D}/${tdir} \1~" \
79 doc/Makefile.in
80 }
81
82 src_compile() {
83 myconf=''
84
85 use iso14755 || myconf='--disable-iso14755'
86
87 econf \
88 --enable-everything \
89 $(use_enable truetype xft) \
90 $(use_enable perl) \
91 --disable-text-blink \
92 ${myconf} \
93 || die
94
95 emake || die
96
97 sed -i \
98 -e 's/RXVT_BASENAME = "rxvt"/RXVT_BASENAME = "urxvt"/' \
99 "${S}"/doc/rxvt-tabbed || die "tabs sed failed"
100 }
101
102 src_install() {
103 make DESTDIR="${D}" install || die
104
105 dodoc README.FAQ Changes
106 cd "${S}"/doc
107 dodoc README* changes.txt etc/* rxvt-tabbed
108 }
109
110 pkg_postinst() {
111 einfo "urxvt now always uses TERM=rxvt-unicode so that the"
112 einfo "upstream-supplied terminfo files can be used."
113 }
114
115
116
117 --
118 gentoo-commits@g.o mailing list