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.
gentoo-overlay/app-i18n/xvnkb/xvnkb-0.2.11.ebuild

64 lines
1.3 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
inherit toolchain-funcs
DESCRIPTION="Vietnamese input keyboard for X"
HOMEPAGE="http://xvnkb.sourceforge.net/"
SRC_URI="http://${PN}.sourceforge.net/${P}.tar.bz2"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="spell xft"
RDEPEND="x11-libs/libX11:=
xft? ( x11-libs/libXft:= )"
DEPEND="${RDEPEND}
x11-base/xorg-proto"
BDEPEND="xft? ( virtual/pkgconfig )"
PATCHES=(
"${FILESDIR}"/${PN}-cc.patch
"${FILESDIR}"/${P}-ldflags.patch
)
src_prepare() {
default
tc-export CC
}
src_configure() {
# *not* autotools
./configure \
$(usex spell '' '--no-spellcheck') \
$(usex xft '' '--no-xft') \
--use-extstroke \
|| die "./configure failed"
}
src_install() {
dobin ${PN}
dobin tools/${PN}_ctrl
dolib.so ${PN}.so.${PV}
dosym ${PN}.so.${PV} /usr/$(get_libdir)/${PN}.so
einstalldocs
dodoc -r doc/. scripts contrib
}
pkg_postinst() {
elog "Remember to"
elog "$ export LANG=en_US.UTF-8"
elog "(or any other UTF-8 locale) and"
elog "$ export LD_PRELOAD=/usr/$(get_libdir)/${PN}.so"
elog "before starting X Window"
elog "More documents are in ${EROOT}/usr/share/doc/${PF}"
ewarn "Programs with suid/sgid will have LD_PRELOAD cleared"
ewarn "You have to unset suid/sgid to use with ${PN}"
}