blob: 49232320483f93e0cebc9a0be27dd8b352d6a33d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/xterm/xterm-191.ebuild,v 1.8 2004/06/14 23:06:54 tgall Exp $
inherit eutils flag-o-matic
DESCRIPTION="Terminal Emulator for X Windows"
HOMEPAGE="http://dickey.his.com/xterm/"
SRC_URI="ftp://invisible-island.net/${PN}/${P}.tgz"
LICENSE="X11"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~mips arm hppa amd64 ~ppc64"
IUSE="truetype Xaw3d unicode"
DEPEND="|| ( x11-base/xorg-x11 >=x11-base/xfree-4.3.0-r7 )
sys-apps/utempter
Xaw3d? ( x11-libs/Xaw3d )"
# Doesn't work because of broken portage (#8810)
# virtual/x11"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-184-remove-termcap-breakage.patch
}
src_compile() {
filter-flags "-fstack-protector"
local myconf
use Xaw3d && myconf="--with-Xaw3d"
econf \
`use_enable truetype freetype` \
`use_enable unicode luit` \
--libdir=/etc \
--with-utempter \
--enable-ansi-color \
--enable-88-color \
--enable-256-color \
--enable-broken-osc \
--enable-broken-st \
--enable-load-vt-fonts \
--enable-i18n \
--enable-luit \
--enable-wide-chars \
--enable-doublechars \
--enable-warnings \
--enable-tcap-query \
--disable-imake \
--disable-toolbar \
${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} install-full || die
dodoc README* INSTALL*
}
|