blob: f030178b8cd96ca31e0d7ed845f4bda189994895 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
inherit flag-o-matic toolchain-funcs
DESCRIPTION="Japanese Kanji X Terminal"
#HOMEPAGE="http://www.asahi-net.or.jp/~hc3j-tkg/kterm/"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI="mirror://gentoo/${P}.tar.gz
mirror://gentoo/${P}-wpi.patch.gz
mirror://gentoo/${P}.ext02.patch.gz"
LICENSE="MIT HPND XC"
SLOT="0"
KEYWORDS="-alpha amd64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="Xaw3d"
RDEPEND="app-text/rman
sys-libs/ncurses:=
x11-libs/libXaw
x11-libs/libXmu
x11-libs/libXpm
x11-libs/libxkbfile
Xaw3d? ( x11-libs/libXaw3d )"
DEPEND="${RDEPEND}
x11-misc/gccmakedep
x11-misc/imake"
PATCHES=(
"${WORKDIR}"/${P}-wpi.patch # wallpaper patch
"${WORKDIR}"/${P}.ext02.patch # JIS 0213 support
"${FILESDIR}"/${PN}-openpty.patch
"${FILESDIR}"/${PN}-gentoo.patch
"${FILESDIR}"/${PN}-ad-gentoo.patch
"${FILESDIR}"/${PN}-underline.patch
)
src_prepare(){
default
use Xaw3d && eapply "${FILESDIR}"/${PN}-Xaw3d.patch
}
src_configure() {
xmkmf -a || die
}
src_compile(){
emake \
CC="$(tc-getCC)" \
CDEBUGFLAGS="${CFLAGS}" \
LOCAL_LDFLAGS="${LDFLAGS}" \
TERMCAPLIB="$("$(tc-getPKG_CONFIG)" --libs ncurses)" \
XAPPLOADDIR="${EPREFIX}/usr/share/X11/app-defaults"
}
src_install(){
emake \
BINDIR="${EPREFIX}/usr/bin" \
XAPPLOADDIR="${EPREFIX}/usr/share/X11/app-defaults" \
DESTDIR="${D}" \
install
einstalldocs
# install man pages
newman ${PN}.man ${PN}.1
iconv -f ISO-2022-JP -t UTF-8 ${PN}.jman > ${PN}.ja.1
doman ${PN}.ja.1
# Remove link to avoid collision
rm -f "${ED}"/usr/lib/X11/app-defaults
}
pkg_postinst() {
elog
elog "KTerm wallpaper support is enabled."
elog "In order to use this feature,"
elog "you need specify favourite xpm file with -wp option"
elog
elog "\t% ${PN} -wp filename.xpm"
elog
elog "or set it with X resource"
elog
elog "\tKTerm*wallPaper: /path/to/filename.xpm"
elog
}
|