blob: 9146be1882d895917952898d0fc8e16be068f50f (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/aterm/aterm-0.4.2-r5.ebuild,v 1.7 2004/06/24 23:20:47 agriffis Exp $
inherit eutils
IUSE="cjk"
DESCRIPTION="A terminal emulator with transparency support as well as rxvt backwards compatibility"
SRC_URI="mirror://sourceforge/aterm/${P}.tar.bz2
cjk? (http://dev.gentoo.org/~spock/portage/distfiles/aterm-0.4.2-ja.patch)"
HOMEPAGE="http://aterm.sourceforge.net"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc ~sparc ~alpha ~amd64"
DEPEND="media-libs/jpeg
media-libs/libpng
virtual/x11"
src_unpack() {
unpack ${P}.tar.bz2
cd ${S}/src
cp feature.h feature.h.orig
sed "s:\(#define LINUX_KEYS\):/\*\1\*/:" \
feature.h.orig > feature.h
cd ${S}
epatch ${FILESDIR}/aterm-0.4.2-borderless.patch
use cjk && epatch ${DISTDIR}/aterm-0.4.2-ja.patch
}
src_compile() {
local myconf
# You can't --enable-big5 with aterm-0.4.2-ja.patch
# I think it's very bad thing but as nobody complains it
# and we don't have per-language flag atm, I stick to
# use --enable-kanji/--enable-thai (and leave --enable-big5)
use cjk && myconf="$myconf
--enable-kanji
--enable-thai
--enable-xim
--enable-linespace"
econf \
--enable-transparency \
--enable-fading \
--enable-background-image \
--enable-menubar \
--enable-graphics \
--enable-utmp \
--with-x \
${myconf} || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
fperms g+s /usr/bin/aterm
fowners root:utmp /usr/bin/aterm
doman doc/aterm.1
dodoc ChangeLog INSTALL doc/BUGS doc/FAQ doc/README.*
docinto menu
dodoc doc/menu/*
dohtml -r .
}
|