Gentoo Archives: gentoo-commits

From: "Matt Turner (mattst88)" <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-terms/xterm: ChangeLog xterm-271.ebuild
Date: Tue, 02 Aug 2011 18:57:11
Message-Id: 20110802185653.D51B52004C@flycatcher.gentoo.org
1 mattst88 11/08/02 18:56:53
2
3 Modified: ChangeLog
4 Added: xterm-271.ebuild
5 Log:
6 Version bump to xterm-271.
7
8 (Portage version: 2.1.10.3/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.328 x11-terms/xterm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/xterm/ChangeLog?rev=1.328&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/xterm/ChangeLog?rev=1.328&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/xterm/ChangeLog?r1=1.327&r2=1.328
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-terms/xterm/ChangeLog,v
20 retrieving revision 1.327
21 retrieving revision 1.328
22 diff -u -r1.327 -r1.328
23 --- ChangeLog 2 Aug 2011 05:52:28 -0000 1.327
24 +++ ChangeLog 2 Aug 2011 18:56:53 -0000 1.328
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-terms/xterm
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/xterm/ChangeLog,v 1.327 2011/08/02 05:52:28 mattst88 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/xterm/ChangeLog,v 1.328 2011/08/02 18:56:53 mattst88 Exp $
30 +
31 +*xterm-271 (02 Aug 2011)
32 +
33 + 02 Aug 2011; Matt Turner <mattst88@g.o> +xterm-271.ebuild:
34 + Version bump.
35
36 02 Aug 2011; Matt Turner <mattst88@g.o> xterm-267.ebuild,
37 xterm-269.ebuild, xterm-270.ebuild:
38
39
40
41 1.1 x11-terms/xterm/xterm-271.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/xterm/xterm-271.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/xterm/xterm-271.ebuild?rev=1.1&content-type=text/plain
45
46 Index: xterm-271.ebuild
47 ===================================================================
48 # Copyright 1999-2011 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/x11-terms/xterm/xterm-271.ebuild,v 1.1 2011/08/02 18:56:53 mattst88 Exp $
51
52 EAPI=4
53 inherit eutils multilib
54
55 DESCRIPTION="Terminal Emulator for X Windows"
56 HOMEPAGE="http://dickey.his.com/xterm/"
57 SRC_URI="ftp://invisible-island.net/${PN}/${P}.tgz"
58
59 LICENSE="MIT"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
62 IUSE="toolbar truetype unicode Xaw3d"
63
64 COMMON_DEPEND="sys-libs/libutempter
65 x11-apps/xmessage
66 x11-libs/libX11
67 x11-libs/libXaw
68 x11-libs/libXft
69 x11-libs/libxkbfile
70 x11-libs/libXmu
71 x11-libs/libXrender
72 x11-libs/libXt
73 unicode? ( x11-apps/luit )
74 Xaw3d? ( x11-libs/libXaw3d )"
75 RDEPEND="${COMMON_DEPEND}
76 media-fonts/font-misc-misc"
77 DEPEND="${COMMON_DEPEND}
78 dev-util/pkgconfig
79 x11-proto/kbproto
80 x11-proto/xproto"
81
82 pkg_setup() {
83 DEFAULTS_DIR=/usr/share/X11/app-defaults
84 }
85
86 src_configure() {
87 # looking for reason why crosscompile failed? try restoring this:
88 # --x-libraries="${ROOT}usr/$(get_libdir)"
89 # -ssuominen, 2011
90
91 econf \
92 --libdir=/etc \
93 --disable-full-tgetent \
94 --with-app-defaults=${DEFAULTS_DIR} \
95 --disable-setuid \
96 --disable-setgid \
97 --with-utempter \
98 --with-x \
99 $(use_with Xaw3d) \
100 --disable-imake \
101 --enable-256-color \
102 --enable-broken-osc \
103 --enable-broken-st \
104 --enable-exec-xterm \
105 $(use_enable truetype freetype) \
106 --enable-i18n \
107 --enable-load-vt-fonts \
108 --enable-logging \
109 $(use_enable toolbar) \
110 $(use_enable unicode mini-luit) \
111 $(use_enable unicode luit) \
112 --enable-wide-chars \
113 --enable-dabbrev \
114 --enable-warnings
115 }
116
117 src_install() {
118 emake DESTDIR="${D}" install
119 dodoc README{,.i18n} ctlseqs.txt
120 dohtml xterm.log.html
121 domenu *.desktop
122
123 # Fix permissions -- it grabs them from live system, and they can
124 # be suid or sgid like they were in pre-unix98 pty or pre-utempter days,
125 # respectively (#69510).
126 # (info from Thomas Dickey) - Donnie Berkholz <spyderous@g.o>
127 fperms 0755 /usr/bin/xterm
128
129 # restore the navy blue
130 sed -i -e "s:blue2$:blue:" "${D}"${DEFAULTS_DIR}/XTerm-color
131 }