mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
net-libs/serf: add 1.3.10
Closes: https://bugs.gentoo.org/923561 Closes: https://bugs.gentoo.org/929710 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST serf-1.3.10.tar.bz2 147744 BLAKE2B fed9ef4d5b16a5f1276a4a6f72ab938db18d4bd51c2a58311d2918f52f891bdb636f947cdc612b12a8978f75d27715b7695f21730d1b8a0545746281535369fc SHA512 19165274d35c694935cda33f99ef92a7663a5d9c540fb7fd6792aa0efe39941b2fa87ff8b61afd060c6676baec634fd33dc2e9d34ecbee45ed99dfaed077802c
|
||||
DIST serf-1.3.9.tar.bz2 145132 BLAKE2B 59776f85b409b2eaea81f3e07b0301515e20cbd2aa0ef05c1c38aa8152a6d5627e526e4bc160abb1fd438e9fa46f97096c639860729d2ea8e0b2fcfcf8222002 SHA512 9f5418d991840a08d293d1ecba70cd9534a207696d002f22dbe62354e7b005955112a0d144a76c89c7f7ad3b4c882e54974441fafa0c09c4aa25c49c021ca75d
|
||||
|
||||
73
net-libs/serf/serf-1.3.10.ebuild
Normal file
73
net-libs/serf/serf-1.3.10.ebuild
Normal file
@@ -0,0 +1,73 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit flag-o-matic python-any-r1 scons-utils toolchain-funcs
|
||||
|
||||
DESCRIPTION="HTTP client library"
|
||||
HOMEPAGE="https://serf.apache.org/"
|
||||
SRC_URI="mirror://apache/${PN}/${P}.tar.bz2"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="1"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
|
||||
IUSE="kerberos"
|
||||
# Many test failures.
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
dev-libs/apr:1=
|
||||
dev-libs/apr-util:1=
|
||||
dev-libs/openssl:0=
|
||||
sys-libs/zlib:0=
|
||||
kerberos? ( virtual/krb5 )"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND=">=dev-build/scons-2.3.0"
|
||||
|
||||
PATCHES=( "${FILESDIR}"/${PN}-1.3.8-static-lib.patch )
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# https://code.google.com/p/serf/issues/detail?id=133
|
||||
sed -e "/env.Append(CCFLAGS=\['-O2'\])/d" -i SConstruct || die
|
||||
|
||||
# need limits.h for PATH_MAX (only when EXTENSIONS is enabled)
|
||||
[[ ${CHOST} == *-solaris* ]] && append-cppflags -D__EXTENSIONS__
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
myesconsargs=(
|
||||
BUILD_STATIC=no
|
||||
PREFIX="${EPREFIX}/usr"
|
||||
LIBDIR="${EPREFIX}/usr/$(get_libdir)"
|
||||
# These config scripts are sent through a shell with an empty env
|
||||
# which breaks the SYSROOT usage in them. Set the vars inline to
|
||||
# avoid that.
|
||||
APR="SYSROOT='${SYSROOT}' ${SYSROOT}${EPREFIX}/usr/bin/apr-1-config"
|
||||
APU="SYSROOT='${SYSROOT}' ${SYSROOT}${EPREFIX}/usr/bin/apu-1-config"
|
||||
AR="$(tc-getAR)"
|
||||
RANLIB="$(tc-getRANLIB)"
|
||||
CC="$(tc-getCC)"
|
||||
CPPFLAGS="${CPPFLAGS}"
|
||||
CFLAGS="${CFLAGS}"
|
||||
LINKFLAGS="${LDFLAGS}"
|
||||
)
|
||||
|
||||
if use kerberos; then
|
||||
myesconsargs+=( GSSAPI="${SYSROOT}${EPREFIX}/usr/bin/krb5-config" )
|
||||
fi
|
||||
|
||||
escons "${myesconsargs[@]}"
|
||||
}
|
||||
|
||||
src_test() {
|
||||
escons check
|
||||
}
|
||||
|
||||
src_install() {
|
||||
escons install --install-sandbox="${D}"
|
||||
}
|
||||
Reference in New Issue
Block a user