blob: 3911320e5cdbc3fad155f050012f37d355679fa2 (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/aterm/aterm-0.4.2.ebuild,v 1.9 2002/12/30 12:59:52 mholzer Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A terminal emulator with transparency support as well as rxvt backwards compatability"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
HOMEPAGE="http://aterm.sourceforge.net"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
DEPEND=">=media-libs/jpeg-6b-r2 >=media-libs/libpng-1.0.11 virtual/x11"
RDEPEND=$DEPEND
src_compile() {
./configure --prefix=/usr --host=${CHOST} \
--enable-transparency \
--enable-fading \
--enable-background-image \
--enable-menubar \
--enable-graphics \
--enable-utmp \
--disable-backspace-key \
--with-x
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc TODO ChangeLog INSTALL doc/BUGS doc/FAQ doc/README.menu
docinto menu
dodoc doc/menu/*
docinto html
dodoc *.html
}
|