blob: 2324a07d9f514cb6a558f2aba3c094e9f7cf7076 (
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
|
# 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-184.ebuild,v 1.23 2004/06/01 18:44:41 vapier Exp $
inherit eutils
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 ~alpha arm ~hppa amd64 ~ia64"
IUSE="truetype Xaw3d"
DEPEND="|| ( x11-base/xorg-x11 >=x11-base/xfree-4.3.0-r6 )
sys-apps/utempter
Xaw3d? ( x11-libs/Xaw3d )"
src_unpack() {
unpack ${A}; cd ${S}
epatch ${FILESDIR}/${P}-remove-termcap-breakage.patch
# Keep the blue from previous xterms, instead of the dodgerblue and
# steelblue
sed -i \
-e "s:DodgerBlue1:blue3:" \
-e "s:SteelBlue1:blue:" \
${S}/XTerm-col.ad
}
src_compile() {
local myconf
use Xaw3d && myconf="${myconf} --with-Xaw3d"
econf \
`use_enable truetype freetype` \
${myconf} \
--libdir=/etc \
--with-utempter \
--enable-88-color \
--enable-256-color \
--enable-load-vt-fonts \
--enable-toolbar \
--enable-luit \
--enable-wide-chars \
--disable-imake \
|| die
emake || die
}
src_install() {
make DESTDIR=${D} install-full || die
dodoc README* INSTALL*
}
|