mirror of
https://github.com/pentoo/pentoo-overlay
synced 2025-12-06 08:25:01 +01:00
46 lines
899 B
Bash
46 lines
899 B
Bash
# Copyright 1999-2019 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Library for Transactional Registry (TxR) data types"
|
|
HOMEPAGE="https://github.com/libyal/libftxr"
|
|
SRC_URI="https://github.com/libyal/libftxr/releases/download/${PV}/${PN}-experimental-${PV}.tar.gz"
|
|
|
|
LICENSE="LGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64 x86"
|
|
IUSE="nls debug"
|
|
|
|
DEPEND="
|
|
nls? (
|
|
virtual/libiconv
|
|
virtual/libintl
|
|
)
|
|
dev-libs/libcerror[nls=]
|
|
dev-libs/libcnotify[nls=]
|
|
dev-libs/libfdatetime[nls=]
|
|
dev-libs/libfguid[nls=]
|
|
dev-libs/libfusn[nls=]
|
|
dev-libs/libuna[nls=]
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
"
|
|
|
|
src_prepare() {
|
|
eautoreconf
|
|
eapply_user
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable nls) \
|
|
$(use_with nls libiconv-prefix) \
|
|
$(use_with nls libintl-prefix) \
|
|
$(use_enable debug verbose-output ) \
|
|
$(use_enable debug debug-output ) \
|
|
|
|
}
|