gentoo-ebuilds/app-pda/pilot-link/pilot-link-0.12.5-r5.ebuild
NHOrus 1dd7e1d8e9
app-pda/pilot-link: port to C23
Fix build issues, including with and without usb USE flag set.
Configure checks for presence of bison, as .y file was changed
added it to build depends

Closes: https://bugs.gentoo.org/883101
Closes: https://bugs.gentoo.org/944433
Signed-off-by: NHOrus <jy6x2b32pie9@yahoo.com>
Part-of: https://github.com/gentoo/gentoo/pull/41417
Closes: https://github.com/gentoo/gentoo/pull/41417
Signed-off-by: Sam James <sam@gentoo.org>
2025-04-24 20:11:45 +01:00

103 lines
2.3 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic perl-module
DESCRIPTION="Suite of tools for moving data between a Palm device and a desktop"
# this is a new mirror; the distfile has the same content inside the tarball,
# but the tarball itself doesn't match due to recompression and Git
# indirection.
HOMEPAGE="https://github.com/jichu4n/pilot-link"
SRC_URI="
mirror://gentoo/${P}.tar.bz2
https://dev.gentoo.org/~soap/distfiles/${P}-gentoo-patchset-r2.tar.xz"
LICENSE="|| ( GPL-2 LGPL-2 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
IUSE="bluetooth perl png threads usb"
RESTRICT="test" #672872
RDEPEND="
dev-libs/popt
sys-libs/ncurses:=
sys-libs/readline:=
virtual/libiconv
bluetooth? ( net-wireless/bluez )
perl? ( dev-lang/perl:= )
png? ( media-libs/libpng:= )
usb? ( virtual/libusb:0 )"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
perl? ( dev-lang/perl )
sys-devel/bison"
PATCHES=(
"${WORKDIR}/${P}-gentoo-patchset"/
"${FILESDIR}/${P}-C23.patch"
)
src_prepare() {
default
eautoreconf
}
src_configure() {
# -Werror=lto-type-mismatch
# https://bugs.gentoo.org/924480
#
# Upstream is abandoned since 2016, existing issue offering gentoo-patchset
# has been ignored. No bug filed.
#
# The issue is in the internal compat code for *not* using libusb.
use usb || filter-lto
# tcl/tk support is disabled as per upstream request.
# readline is not really optional, bug #626504
# Does not build with Java 8
# Does not build with Python 3, bug #735238
econf \
--includedir="${EPREFIX}"/usr/include/libpisock \
--enable-conduits \
--with-readline \
$(use_enable threads) \
$(use_enable usb libusb) \
$(use_with png libpng) \
$(use_with bluetooth bluez) \
$(use_with perl) \
--without-java \
--without-tcl \
--without-python
if use perl; then
perl_set_version
cd bindings/Perl || die
perl-module_src_configure
fi
}
src_compile() {
emake
if use perl; then
cd bindings/Perl || die
local mymake=( OTHERLDFLAGS="${LDFLAGS} -L../../libpisock/.libs -lpisock" ) #308629
perl-module_src_compile
fi
}
src_install() {
default
dodoc doc/{README*,TODO}
if use perl; then
cd bindings/Perl || die
perl-module_src_install
fi
find "${ED}" -name '*.la' -delete || die
}