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-9.05.ebuild
Date: Sat, 21 Jun 2008 18:18:14
Message-Id: E1KA7f5-0000tc-Vi@stork.gentoo.org
1 killerfox 08/06/21 18:18:07
2
3 Modified: ChangeLog
4 Added: rxvt-unicode-9.05.ebuild
5 Log:
6 Version bump; Make libafterimage an optional dependency
7 (Portage version: 2.1.4.4)
8
9 Revision Changes Path
10 1.111 x11-terms/rxvt-unicode/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.111&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?rev=1.111&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog?r1=1.110&r2=1.111
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v
19 retrieving revision 1.110
20 retrieving revision 1.111
21 diff -u -r1.110 -r1.111
22 --- ChangeLog 5 May 2008 20:19:41 -0000 1.110
23 +++ ChangeLog 21 Jun 2008 18:18:07 -0000 1.111
24 @@ -1,6 +1,12 @@
25 # ChangeLog for x11-terms/rxvt-unicode
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.110 2008/05/05 20:19:41 maekke Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt-unicode/ChangeLog,v 1.111 2008/06/21 18:18:07 killerfox Exp $
29 +
30 +*rxvt-unicode-9.05 (21 Jun 2008)
31 +
32 + 21 Jun 2008; René Nussbaumer <killerfox@g.o>
33 + +rxvt-unicode-9.05.ebuild:
34 + Version bump; Make libafterimage an optional dependency
35
36 05 May 2008; Markus Meier <maekke@g.o> rxvt-unicode-9.02-r1.ebuild:
37 amd64 stable, security bug #219760
38
39
40
41 1.1 x11-terms/rxvt-unicode/rxvt-unicode-9.05.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.05.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-terms/rxvt-unicode/rxvt-unicode-9.05.ebuild?rev=1.1&content-type=text/plain
45
46 Index: rxvt-unicode-9.05.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/rxvt-unicode/rxvt-unicode-9.05.ebuild,v 1.1 2008/06/21 18:18:07 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 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
61 IUSE="truetype perl iso14755 afterimage"
62
63 # see bug #115992 for modular x deps
64 RDEPEND="x11-libs/libX11
65 x11-libs/libXft
66 afterimage? ( 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
78 sed -i -e \
79 "s~@TIC@ \(\$(srcdir)/etc/rxvt\)~@TIC@ -o ${D}/${tdir} \1~" \
80 doc/Makefile.in
81 }
82
83 src_compile() {
84 myconf=''
85
86 use iso14755 || myconf='--disable-iso14755'
87
88 econf \
89 --enable-everything \
90 $(use_enable truetype xft) \
91 $(use_enable afterimage) \
92 $(use_enable perl) \
93 --disable-text-blink \
94 ${myconf} \
95 || die
96
97 emake || die
98
99 sed -i \
100 -e 's/RXVT_BASENAME = "rxvt"/RXVT_BASENAME = "urxvt"/' \
101 "${S}"/doc/rxvt-tabbed || die "tabs sed failed"
102 }
103
104 src_install() {
105 make DESTDIR="${D}" install || die
106
107 dodoc README.FAQ Changes
108 cd "${S}"/doc
109 dodoc README* changes.txt etc/* rxvt-tabbed
110 }
111
112 pkg_postinst() {
113 einfo "urxvt now always uses TERM=rxvt-unicode so that the"
114 einfo "upstream-supplied terminfo files can be used."
115 }
116
117
118
119 --
120 gentoo-commits@l.g.o mailing list