blob: 4640b41c0d1e4bee80595a8f00168242548fb704 (
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
|
# 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-179.ebuild,v 1.12 2004/04/15 15:11:08 spyderous 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 ~amd64 ~ppc"
DEPEND="|| ( x11-base/xorg-x11 x11-base/xfree )
sys-apps/utempter"
src_compile() {
local myconf
econf \
--libdir=/etc \
--enable-wide-chars \
--with-utempter \
--enable-256-color \
`use_enable truetype freetype` || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc README* INSTALL*
}
|