blob: af0982f6ebc73eab8d24333fd1154b173469e688 (
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
|
# 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.4 2004/01/18 02:06:22 seemant Exp $
IUSE="truetype"
S=${WORKDIR}/${P}
DESCRIPTION="Terminal Emulator for X Windows"
HOMEPAGE="http://dickey.his.com/xterm/"
SRC_URI="ftp://invisible-island.net/${PN}/${P}.tgz"
SLOT="0"
LICENSE="X11"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~arm ~amd64 ~ia64 ~ppc64"
DEPEND="virtual/x11
sys-apps/utempter"
src_compile() {
local myconf
use truetype \
&& myconf="${myconf} --enable-freetype" \
|| myconf="${myconf} --disable-freetype"
econf \
--libdir=/etc \
--with-utempter \
--enable-256-color \
--enable-load-vt-fonts \
--enable-toolbar \
--enable-luit \
--enable-wide-chars \
--enable-broken-st \
--enable-broken-osc \
|| die
emake || die
}
src_install() {
make DESTDIR=${D} install-full || die
dodoc README* INSTALL*
}
|