You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.2 KiB
56 lines
1.2 KiB
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
inherit eutils toolchain-funcs
|
|
|
|
DESCRIPTION="Hanterm -- Korean terminal"
|
|
HOMEPAGE="http://www.hanterm.org/"
|
|
SRC_URI="http://download.kldp.net/hanterm/${P}.tar.gz"
|
|
|
|
LICENSE="MIT HPND"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
IUSE="utempter"
|
|
|
|
DEPEND="x11-libs/libXmu
|
|
x11-libs/libICE
|
|
x11-libs/libXaw
|
|
utempter? ( sys-libs/libutempter )
|
|
>=x11-libs/libXaw3d-1.5"
|
|
RDEPEND="${DEPEND}
|
|
media-fonts/baekmuk-fonts"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}/${P}-gentoo.patch" \
|
|
"${FILESDIR}"/${P}-utmp.patch
|
|
sed -i -e "/^LDFLAGS/s:=:& ${LDFLAGS} :" \
|
|
-e "s:\$(CFLAGS):& \$(LDFLAGS) :" Makefile.in
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--with-Xaw3d \
|
|
$(use_with utempter)
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCC)"
|
|
}
|
|
|
|
src_install() {
|
|
dobin hanterm || die
|
|
|
|
insinto /usr/share/X11/app-defaults
|
|
newins Hanterm.ad Hanterm.orig
|
|
newins "${FILESDIR}/Hanterm.gentoo" Hanterm
|
|
|
|
newman hanterm.man hanterm.1
|
|
|
|
dohtml doc/devel/hanterm.html doc/devel/3final.gif
|
|
|
|
dodoc README ChangeLog doc/{AUTHORS,THANKS,TODO}
|
|
dodoc doc/devel/hanterm.sgml
|
|
dodoc doc/historic/{ChangeLog*,DGUX.note,README*}
|
|
}
|