gentoo/app-pda/libimobiledevice/libimobiledevice-1.3.0_p20240201-r1.ebuild
Joe Kappus 1bcb5cad8c
app-pda/libimobiledevice: revbump, fix gnutls useflag
This would not have built with gnutls support if gnutls use was set.
Fixed the configure options so it now does if desired.

Closes: https://bugs.gentoo.org/926951
Signed-off-by: Joe Kappus <joe@wt.gd>
Part-of: https://github.com/gentoo/gentoo/pull/44570
Closes: https://github.com/gentoo/gentoo/pull/44570
Signed-off-by: Sam James <sam@gentoo.org>
2025-11-29 05:50:37 +00:00

77 lines
1.7 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
MY_COMMIT=73b6fd183872096f20e6d1007429546a317a7cb1
DESCRIPTION="Support library to communicate with Apple iPhone/iPod Touch devices"
HOMEPAGE="https://libimobiledevice.org/"
SRC_URI="https://github.com/libimobiledevice/libimobiledevice/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}"/${PN}-${MY_COMMIT}
# While COPYING* doesn't mention 'or any later version', all the headers do, hence use +
LICENSE="GPL-2+ LGPL-2.1+"
SLOT="0/1.0-6" # based on SONAME of libimobiledevice-1.0.so
KEYWORDS="amd64 ~arm ~arm64 ~hppa ~loong ppc ~ppc64 ~riscv ~s390 x86"
IUSE="doc gnutls readline static-libs"
RDEPEND="
app-pda/libimobiledevice-glue:=
>=app-pda/libplist-2.3:=
>=app-pda/libusbmuxd-2.0.2:=
gnutls? (
dev-libs/libgcrypt:0
>=dev-libs/libtasn1-1.1
>=net-libs/gnutls-2.2.0
)
!gnutls? (
dev-libs/openssl:0=
)
readline? ( sys-libs/readline:= )
"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
doc? ( app-text/doxygen )
"
PATCHES=(
"${FILESDIR}"/${PN}-1.3.0_p20240201_time_h.patch
)
src_prepare() {
default
echo ${PV}-${MY_COMMIT} > .tarball-version
eautoreconf
}
src_configure() {
local myeconfargs=(
--without-cython
$(use_enable static-libs static)
)
use gnutls && myeconfargs+=( --with-gnutls --without-openssl )
# --with-readline also causes readline to not be used
use readline || myeconfargs+=( --without-readline )
econf "${myeconfargs[@]}"
}
src_compile() {
emake
if use doc; then
doxygen doxygen.cfg || die
fi
}
src_install() {
emake install DESTDIR="${D}"
use doc && dodoc docs/html/*
find "${D}" -name '*.la' -delete || die
}