| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 9999 | 8 | ~amd64 ~x86 | 0 |
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools pax-utils
if [[ -z ${PV%%*9999} ]]; then
inherit git-r3
EGIT_REPO_URI="git://wimlib.net/${PN}"
else
MY_PV="bd7c352"
if [[ -n ${PV%%*_p*} ]]; then
MY_PV="v${PV}"
SRC_URI="
https://wimlib.net/downloads/${P}.tar.gz
"
else
SRC_URI="
https://wimlib.net/git/?p=${PN};a=snapshot;h=${MY_PV};sf=tgz -> ${P}.tar.gz
"
fi
RESTRICT="primaryuri"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${PN}-${MY_PV#v}"
fi
DESCRIPTION="The open source Windows Imaging (WIM) library"
HOMEPAGE="https://wimlib.net/"
LICENSE="|| ( GPL-3+ LGPL-3+ ) CC0-1.0"
SLOT="0"
IUSE="fuse ntfs static-libs threads test yasm"
RESTRICT+=" !test? ( test )"
RDEPEND="
dev-libs/libxml2:2
ntfs? ( sys-fs/ntfs3g )
fuse? ( sys-fs/fuse:0 )
"
DEPEND="
${RDEPEND}
"
PATCHES=( "${FILESDIR}"/${PN}-tests.diff )
src_prepare() {
default
eautoreconf
}
src_configure() {
local myeconfargs=(
$(use_with ntfs ntfs-3g)
$(use_with fuse)
$(use_enable static-libs static)
)
use test && myeconfargs+=( --enable-test-support )
econf "${myeconfargs[@]}"
}
src_compile() {
emake
pax-mark m "${S}"/.libs/wimlib-imagex
}
src_install() {
default
find "${ED}" -type f -name '*.la' -delete
}
dev-libs/libxml2:2 ntfs? ( sys-fs/ntfs3g ) fuse? ( sys-fs/fuse:0 )
dev-libs/libxml2:2 ntfs? ( sys-fs/ntfs3g ) fuse? ( sys-fs/fuse:0 )