blob: 8c737620101dea925c1c4c96ed9c5d62453734ce (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/xvt/xvt-2.1.ebuild,v 1.5 2004/06/12 20:04:20 kloeri Exp $
inherit ccc eutils flag-o-matic
DESCRIPTION="A tiny vt100 terminal emulator for X"
HOMEPAGE="ftp://ftp.x.org/R5contrib/xvt-1.0.README"
SRC_URI="ftp://ftp.x.org/R5contrib/xvt-1.0.tar.Z"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 alpha"
IUSE=""
DEPEND="virtual/x11"
S=${WORKDIR}/${PN}-1.0
src_unpack() {
unpack ${A}
# this brings the distribution upto version 2.1
cd ${S}; epatch ${FILESDIR}/xvt-2.1.diff.gz
# set the makefile options
sed -i 's/#\(ARCH=LINUX\)/\1/g' Makefile
# set CFLAGS
sed -i "s^\(CFLAGS=\)-O^\1${CFLAGS}^g" Makefile
# add search path for X11 libs.
append-ldflags -L/usr/X11R6/lib
# make gcc quiet.
sed -i -e 's/^void$/int/' -e 's/^void\( main\)/int\1/g' xvt.c
}
src_compile() {
# emake -j1 config
emake || die
}
src_install() {
dobin xvt
doman xvt.1
dodoc README COPYING
}
|