blob: 9fef7d2829d7d72489304c0c190ce89b1a7a4779 (
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
98
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/rxvt/rxvt-2.7.10-r3.ebuild,v 1.15 2007/07/22 05:52:18 dberkholz Exp $
inherit eutils flag-o-matic libtool
DESCRIPTION="rxvt -- nice small x11 terminal"
HOMEPAGE="http://www.rxvt.org/
http://www.giga.it.okayama-u.ac.jp/~ishihara/opensource/"
SRC_URI="mirror://sourceforge/rxvt/${P}.tar.gz
http://www.giga.it.okayama-u.ac.jp/~ishihara/opensource/${P}-xim-fix.patch.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa mips ppc ppc64 sparc x86"
IUSE="motif cjk xgetdefault linuxkeys"
RDEPEND="virtual/libc
x11-libs/libX11
x11-libs/libXpm
x11-libs/libXext
motif? ( x11-libs/openmotif )"
DEPEND="${RDEPEND}
x11-proto/xproto"
src_unpack() {
unpack ${P}.tar.gz
cd ${S}
epatch ${FILESDIR}/${P}-line-scroll.patch
epatch ${FILESDIR}/${P}-asneeded.patch
use motif && epatch ${FILESDIR}/${P}-azz4.diff
if use cjk ; then
epatch ${DISTDIR}/${P}-xim-fix.patch.gz
if use linguas_ja ; then
epatch ${FILESDIR}/${P}-rk.patch
fi
fi
elibtoolize
}
src_compile() {
local term
if [ -n "${RXVT_TERM}" ] ; then
term="${RXVT_TERM}"
else
term="rxvt"
fi
# bug #22325
use linuxkeys && append-flags -DLINUX_KEYS
append-ldflags $(bindnow-flags)
econf \
--enable-everything \
--enable-rxvt-scroll \
--enable-next-scroll \
--enable-xterm-scroll \
--enable-transparency \
--enable-xpm-background \
--enable-utmp \
--enable-wtmp \
--enable-mousewheel \
--enable-slipwheeling \
--enable-smart-resize \
--enable-256-color \
--enable-menubar \
$(use_enable cjk languages) \
--enable-xim \
--enable-shared \
--enable-keepscrolling \
--with-term=${term} \
$(use_enable xgetdefault) || die
emake || die
}
src_install() {
einstall mandir=${D}/usr/share/man/man1 || die
cd ${S}/doc
dodoc README* *.txt BUGS FAQ
dohtml *.html
}
pkg_postinst() {
einfo
einfo "If you want to change default TERM variable other than rxvt,"
einfo "set RXVT_TERM environment variable and then emerge rxvt."
einfo "Especially, if you use rxvt under monochrome X you might need to run"
einfo "\t RXVT_TERM=rxvt-basic emerge rxvt"
einfo "otherwise curses based program will not work."
einfo
}
|