Gentoo Archives: gentoo-commits

From: "Chi-Thanh Christopher Nguyen (chithanh)" <chithanh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-terms/xterm: xterm-317.ebuild ChangeLog
Date: Mon, 30 Mar 2015 12:31:56
Message-Id: 20150330123150.5A99B14D8A@oystercatcher.gentoo.org
1 chithanh 15/03/30 12:31:49
2
3 Modified: ChangeLog
4 Added: xterm-317.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x2324E7B566DF2611!)
9
10 Revision Changes Path
11 1.409 x11-terms/xterm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/xterm/ChangeLog?rev=1.409&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/xterm/ChangeLog?rev=1.409&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/xterm/ChangeLog?r1=1.408&r2=1.409
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-terms/xterm/ChangeLog,v
20 retrieving revision 1.408
21 retrieving revision 1.409
22 diff -u -r1.408 -r1.409
23 --- ChangeLog 26 Mar 2015 16:45:43 -0000 1.408
24 +++ ChangeLog 30 Mar 2015 12:31:49 -0000 1.409
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-terms/xterm
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-terms/xterm/ChangeLog,v 1.408 2015/03/26 16:45:43 chithanh Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-terms/xterm/ChangeLog,v 1.409 2015/03/30 12:31:49 chithanh Exp $
30 +
31 +*xterm-317 (30 Mar 2015)
32 +
33 + 30 Mar 2015; Chí-Thanh Christopher Nguyễn <chithanh@g.o>
34 + +xterm-317.ebuild:
35 + Version bump.
36
37 *xterm-315 (26 Mar 2015)
38
39
40
41
42 1.1 x11-terms/xterm/xterm-317.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/xterm/xterm-317.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-terms/xterm/xterm-317.ebuild?rev=1.1&content-type=text/plain
46
47 Index: xterm-317.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-terms/xterm/xterm-317.ebuild,v 1.1 2015/03/30 12:31:49 chithanh Exp $
52
53 EAPI=5
54
55 inherit eutils flag-o-matic multilib
56
57 DESCRIPTION="Terminal Emulator for X Windows"
58 HOMEPAGE="http://invisible-island.net/xterm/"
59 SRC_URI="ftp://invisible-island.net/${PN}/${P}.tgz"
60
61 LICENSE="MIT"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
64 IUSE="+openpty toolbar truetype unicode Xaw3d"
65
66 COMMON_DEPEND="kernel_linux? ( sys-libs/libutempter )
67 kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-lib-9.0 sys-libs/libutempter ) )
68 >=sys-libs/ncurses-5.7-r7
69 x11-apps/xmessage
70 x11-libs/libX11
71 x11-libs/libXaw
72 x11-libs/libXft
73 x11-libs/libxkbfile
74 x11-libs/libXmu
75 x11-libs/libXrender
76 x11-libs/libXt
77 unicode? ( x11-apps/luit )
78 Xaw3d? ( x11-libs/libXaw3d )"
79 RDEPEND="${COMMON_DEPEND}
80 media-fonts/font-misc-misc"
81 DEPEND="${COMMON_DEPEND}
82 virtual/pkgconfig
83 x11-proto/kbproto
84 x11-proto/xproto"
85
86 DOCS=( README{,.i18n} ctlseqs.txt )
87
88 pkg_setup() {
89 DEFAULTS_DIR="${EPREFIX}"/usr/share/X11/app-defaults
90 }
91
92 src_configure() {
93 # 454736
94 # Workaround for ncurses[tinfo] until upstream fixes their buildsystem using
95 # something sane like pkg-config or ncurses5-config and stops guessing libs
96 # Everything gets linked against ncurses anyways, so don't shout
97 append-libs $(pkg-config --libs ncurses)
98
99 econf \
100 --libdir="${EPREFIX}"/etc \
101 --disable-full-tgetent \
102 --with-app-defaults="${DEFAULTS_DIR}" \
103 --disable-setuid \
104 --disable-setgid \
105 --with-utempter \
106 --with-x \
107 $(use_with Xaw3d) \
108 --disable-imake \
109 --enable-256-color \
110 --enable-broken-osc \
111 --enable-broken-st \
112 --enable-exec-xterm \
113 $(use_enable truetype freetype) \
114 --enable-i18n \
115 --enable-load-vt-fonts \
116 --enable-logging \
117 $(use_enable openpty) \
118 $(use_enable toolbar) \
119 $(use_enable unicode mini-luit) \
120 $(use_enable unicode luit) \
121 --enable-wide-chars \
122 --enable-dabbrev \
123 --enable-warnings
124 }
125
126 src_install() {
127 default
128
129 dohtml xterm.log.html
130 domenu *.desktop
131
132 # Fix permissions -- it grabs them from live system, and they can
133 # be suid or sgid like they were in pre-unix98 pty or pre-utempter days,
134 # respectively (#69510).
135 # (info from Thomas Dickey) - Donnie Berkholz <spyderous@g.o>
136 fperms 0755 /usr/bin/xterm
137
138 # restore the navy blue
139 sed -i -e "s:blue2$:blue:" "${D}${DEFAULTS_DIR}"/XTerm-color || die
140 }