2021-12-30 16:36:05 +03:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
2020-01-02 12:06:01 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=7
|
|
|
|
|
|
|
|
inherit xdg-utils
|
|
|
|
|
|
|
|
DESCRIPTION="An interface library to access tags for identifying languages"
|
|
|
|
HOMEPAGE="https://bitbucket.org/tagoh/liblangtag/wiki/Home"
|
|
|
|
SRC_URI="https://bitbucket.org/tagoh/${PN}/downloads/${P}.tar.bz2"
|
|
|
|
|
|
|
|
LICENSE="|| ( LGPL-3 MPL-2.0 )"
|
|
|
|
SLOT="0"
|
2021-12-30 16:36:05 +03:00
|
|
|
KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86"
|
2020-01-02 12:06:01 +03:00
|
|
|
IUSE="debug doc introspection static-libs test"
|
|
|
|
|
|
|
|
BDEPEND="
|
|
|
|
sys-devel/gettext
|
2020-12-03 11:33:19 +03:00
|
|
|
sys-devel/libtool
|
2020-01-02 12:06:01 +03:00
|
|
|
doc? ( dev-util/gtk-doc )
|
|
|
|
introspection? ( dev-libs/gobject-introspection-common )
|
|
|
|
"
|
|
|
|
RDEPEND="
|
|
|
|
dev-libs/libxml2
|
|
|
|
introspection? ( dev-libs/gobject-introspection )
|
|
|
|
"
|
2020-01-03 10:28:43 +03:00
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
test? ( dev-libs/check )
|
|
|
|
"
|
2020-01-02 12:06:01 +03:00
|
|
|
|
|
|
|
# Upstream expect liblangtag to be installed when one runs tests...
|
|
|
|
RESTRICT="test"
|
|
|
|
|
2020-12-11 08:40:23 +03:00
|
|
|
PATCHES=(
|
|
|
|
"${FILESDIR}/${P}-fix-for-gtk-doc-1.32.patch"
|
|
|
|
)
|
|
|
|
|
2020-01-02 12:06:01 +03:00
|
|
|
src_prepare() {
|
|
|
|
default
|
|
|
|
xdg_environment_reset
|
|
|
|
if [[ -d docs/html ]]; then
|
|
|
|
rm -r docs/html || die "Failed to remove existing gtk-doc"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
local myeconfargs=(
|
|
|
|
$(use_enable debug)
|
|
|
|
$(use_enable doc gtk-doc)
|
|
|
|
$(use_enable introspection)
|
|
|
|
$(use_enable static-libs static)
|
|
|
|
$(use_enable test)
|
|
|
|
)
|
|
|
|
econf "${myeconfargs[@]}"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
default
|
|
|
|
find "${D}" -name '*.la' -type f -delete || die
|
|
|
|
}
|