blob: 85341c12c9f0cecb0cf79064545b869be4a30bac (
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-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/multi-aterm/multi-aterm-0.0.4.ebuild,v 1.1 2003/06/18 20:14:03 nakano Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A terminal emulator with transparency support as well as rxvt backwards compatibility like aterm, with tab support"
SRC_URI=" http://www.materm.tuxfamily.org/${P}.tar.gz"
HOMEPAGE="http://www.materm.tuxfamily.org/materm.html"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc"
DEPEND="media-libs/jpeg
media-libs/libpng
virtual/x11"
src_compile() {
cd ${S}/src
cp feature.h feature.h.orig
sed "s:\(#define LINUX_KEYS\):/\*\1\*/:" \
feature.h.orig > feature.h
cd ${S}
econf --enable-transparency \
--enable-fading \
--enable-xterm-scroll \
--enable-half-shadow \
--enable-graphics \
--enable-mousewheel \
--with-x
emake || die
}
src_install () {
einstall
}
|