blob: 4085a048059ff554f678437cce745c868cc35f6d (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/hanterm/hanterm-3.1.6-r2.ebuild,v 1.16 2004/10/23 07:39:58 usata Exp $
IUSE=""
DESCRIPTION="Hanterm -- Korean terminal"
HOMEPAGE="http://www.hanterm.org/"
SRC_URI="http://download.kldp.net/hanterm/${P}.tar.gz"
SLOT="0"
KEYWORDS="x86 ~ppc ~ppc-macos"
LICENSE="X11"
DEPEND="virtual/libc
virtual/x11
>=x11-libs/Xaw3d-1.5"
RDEPEND="${DEPEND}
media-fonts/baekmuk-fonts"
src_unpack() {
unpack ${A}
cd ${S}
sed -i -e "s:extern char \*malloc();::" \
-e "s:extern char \*realloc();::" \
button.c charproc.c
if use ppc-macos || use macos ; then
sed -i -e "s:extern int sys_nerr;::" misc.c
fi
}
src_compile() {
econf --with-Xaw3d --with-utempter || die
perl -i -pe "s/VENDORNAME=(.*?) -/VENDORNAME=\"\1\" -/" Makefile || die
emake || die
}
src_install() {
einstall || die
insinto /etc/X11/app-defaults
newins Hanterm.ad Hanterm.orig
newins ${FILESDIR}/Hanterm.gentoo Hanterm
dodir /usr/X11R6/lib/X11
dosym ../../../../etc/X11/app-defaults /usr/X11R6/lib/X11/app-defaults
newman hanterm.man hanterm.1
insinto /usr/share/doc/${PF}
doins doc/devel/3final.gif
dohtml doc/devel/hanterm.html
dodoc README ChangeLog doc/{AUTHORS,THANKS,TODO}
dodoc doc/devel/hanterm.sgml
dodoc doc/historic/{ChangeLog*,DGUX.note,README*}
}
|