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/dev-libs/libtermkey/libtermkey-0.22.ebuild

40 lines
984 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic
DESCRIPTION="Library for easy processing of keyboard entry from terminal-based programs"
HOMEPAGE="http://www.leonerd.org.uk/code/libtermkey/"
SRC_URI="http://www.leonerd.org.uk/code/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm ~arm64 x86 ~x64-macos"
IUSE="demos static-libs"
RDEPEND="dev-libs/unibilium:="
DEPEND="${RDEPEND}
sys-devel/libtool
virtual/pkgconfig
demos? ( dev-libs/glib:2 )"
src_prepare() {
default
if ! use demos; then
sed -e '/^all:/s:$(DEMOS)::' -i Makefile || die
fi
}
src_compile() {
append-flags -fPIC
emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" all
}
src_install() {
emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" DESTDIR="${D}" install
use static-libs || rm "${ED}"/usr/$(get_libdir)/${PN}.a || die
rm "${ED}"/usr/$(get_libdir)/${PN}.la || die
}