blob: 13b284b4d71a37f7e1bc0c44c8b3ef0810684357 (
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/mrxvt/mrxvt-0.3.13-r1.ebuild,v 1.4 2005/03/19 09:50:28 kloeri Exp $
inherit eutils
IUSE="debug truetype xgetdefault"
#IUSE="${IUSE} utempter"
DESCRIPTION="Multi-tabbed rxvt clone with XFT, transparent background and CJK support"
HOMEPAGE="http://materm.sourceforge.net/"
SRC_URI="mirror://sourceforge/materm/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc-macos ~amd64 ppc alpha"
RDEPEND="virtual/libc
virtual/x11
dev-libs/expat
media-libs/libpng
media-libs/jpeg
truetype? ( virtual/xft
media-libs/fontconfig
media-libs/freetype )"
# utempter? ( sys-apps/utempter )
DEPEND="${RDEPEND}
sys-devel/autoconf
sys-devel/automake"
src_unpack() {
unpack ${A}
cd ${S}/src
epatch ${FILESDIR}/${P}-xdefaults.patch
}
src_compile() {
local myconf
# if you want to pass any other flags, use EXTRA_ECONF.
if use linguas_el ; then
myconf="${myconf} --enable-greek"
fi
if use linguas_ja ; then
# --with-encoding=sjis
myconf="${myconf} --enable-kanji --with-encoding=eucj"
fi
if use linguas_ko ; then
myconf="${myconf} --enable-kr --with-encoding=kr"
fi
if use linguas_th ; then
myconf="${myconf} --enable-thai"
fi
if use linguas_zh_CN ; then
# --with-encoding=gbk
myconf="${myconf} --enable-gb --with-encoding=gb"
fi
if use linguas_zh_TW ; then
myconf="${myconf} --enable-big5 --with-encoding=big5"
fi
./bootstrap.sh
econf \
--enable-everything \
--enable-rxvt-scroll \
--enable-next-scroll \
--enable-xterm-scroll \
--enable-transparency \
--enable-xpm-background \
--enable-fading \
--enable-utmp \
--enable-wtmp \
--enable-mousewheel \
--enable-slipwheeling \
--enable-smart-resize \
--enable-ttygid \
--enable-256-color \
--enable-xim \
--enable-shared \
--enable-keepscrolling \
--enable-xft \
$(use_enable xgetdefault) \
$(use_enable truetype xft) \
$(use_enable debug) \
--disable-text-blink \
--disable-menubar \
${myconf} || die
emake || die
}
src_install() {
make DESTDIR=${D} docdir=/usr/share/doc/${PF} install || die
dodoc AUTHORS CREDITS ChangeLog FAQ NEWS README* TODO
}
|