mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Bug: https://bugs.gentoo.org/473598 Bug: https://bugs.gentoo.org/720224 Signed-off-by: Fabian Groffen <grobian@gentoo.org>
78 lines
2.0 KiB
Bash
78 lines
2.0 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="8"
|
|
|
|
inherit autotools xdg-utils
|
|
|
|
# TODO unbundle coucal, upstream ticket https://github.com/xroche/httrack/issues/247
|
|
COUCAL_COMMIT=73ada075553b7607d083037a87cb9c73b3683bfc
|
|
|
|
DESCRIPTION="HTTrack Website Copier, Open Source Offline Browser"
|
|
HOMEPAGE="https://www.httrack.com/"
|
|
SRC_URI="https://github.com/xroche/httrack/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz
|
|
https://github.com/xroche/coucal/archive/${COUCAL_COMMIT}.tar.gz -> coucal-${COUCAL_COMMIT}.gh.tar.gz"
|
|
|
|
LICENSE="BSD GPL-3 public-domain" # BSD and public-domain is from bundled Coucal
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~arm64 ppc x86"
|
|
IUSE="static-libs"
|
|
|
|
RDEPEND=">=virtual/zlib-1.2.5.1-r1:=
|
|
>=dev-libs/openssl-1.1.0:=
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
DOCS=( AUTHORS README greetings.txt history.txt )
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-3.48.13-minizip.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
rmdir "${S}"/src/coucal || die
|
|
mv "${WORKDIR}"/coucal-${COUCAL_COMMIT} "${S}"/src/coucal || die
|
|
|
|
default
|
|
|
|
# We need to patch use of /usr/lib because it is a problem with
|
|
# linker lld with profile 17.1 on amd64 (see https://bugs.gentoo.org/732272).
|
|
# The grep sandwich acts as a regression test so that a future
|
|
# version bump cannot break patching without noticing.
|
|
if [[ "$(get_libdir)" != lib ]]; then
|
|
grep -wq '{ZLIB_HOME}/lib' m4/check_zlib.m4 || die
|
|
sed "s,{ZLIB_HOME}/lib,{ZLIB_HOME}/$(get_libdir)," -i m4/check_zlib.m4 || die
|
|
grep -w '{ZLIB_HOME}/lib' m4/check_zlib.m4 && die
|
|
fi
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf $(use_enable static-libs static)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
# Make webhttrack work despite FEATURES=nodoc cutting
|
|
# all of /usr/share/doc/ away (bug #493376)
|
|
if has nodoc ${FEATURES} ; then
|
|
dodir /usr/share/${PF}/
|
|
mv "${D}"/usr/share/{doc/,}${PF}/html || die
|
|
|
|
rm "${D}"/usr/share/${PN}/html || die
|
|
dosym ../../${PF}/html /usr/share/${PN}/html
|
|
fi
|
|
|
|
find "${D}" -name '*.la' -type f -delete || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_icon_cache_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
xdg_icon_cache_update
|
|
}
|