blob: d466d67b6f4b49fce761245d2f9d6eabe9602928 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/eterm/eterm-0.9.2.ebuild,v 1.4 2002/11/05 03:47:07 vapier Exp $
MY_PN=${PN/et/Et}
MY_P=${MY_PN}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="A vt102 terminal emulator for X"
SRC_URI="http://www.eterm.org/download/${MY_P}.tar.gz
http://www.eterm.org/download/${MY_PN}-bg-${PV}.tar.gz"
HOMEPAGE="http://www.eterm.org/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~alpha"
DEPEND="virtual/x11
>=x11-libs/libast-0.5
media-libs/imlib2"
src_unpack() {
unpack ${MY_P}.tar.gz
cd ${S}
unpack ${MY_PN}-bg-${PV}.tar.gz
}
src_compile() {
# always disable mmx because binutils 2.11.92+ seems to be broken for this package
local myconf="--disable-mmx"
econf \
--with-imlib \
--enable-trans \
--with-x \
--enable-multi-charset \
--with-delete=execute \
${myconf}
emake || die
}
src_install() {
dodir /usr/share/terminfo
make \
DESTDIR=${D} \
TIC="tic -o ${D}/usr/share/terminfo" \
install || die
dodoc COPYING ChangeLog README ReleaseNotes
dodoc bg/README.backgrounds
}
|