mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
dev-libs/apr: add 1.7.2
Bug: https://bugs.gentoo.org/870004 Bug: https://bugs.gentoo.org/875167 Bug: https://bugs.gentoo.org/893406 Closes: https://bugs.gentoo.org/811765 Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST apr-1.7.0.tar.bz2 872238 BLAKE2B a8750c45ca6495073a7120f3ae9b858905aecb24b6af5966c3900b06ac1f6d6b55346b17a39a9604cf1b595882335adedf8c8cf4db10e322501bfff4ad7adfe7 SHA512 3dc42d5caf17aab16f5c154080f020d5aed761e22db4c5f6506917f6bfd2bf8becfb40af919042bd4ce1077d5de74aa666f5edfba7f275efba78e8893c115148
|
||||
DIST apr-1.7.2.tar.bz2 890218 BLAKE2B a17ee4311a33acee0bdeb9e5225a198f9dec1b2e0267a742080c77d5342e5052392a5a2100a0ba85f5a192b8679838a7002d4c9a12aa5bdd7921eff025b75d15 SHA512 0a3a27ccc97bbe4865c1bc0b803012e3da6d5b1f17d4fb0da6f5f58eec01f6d2ae1f25e52896ea5f9c5ac04c5fddcfd1ac606b301c322cf40d5c4d4ce0a1b76e
|
||||
|
||||
167
dev-libs/apr/apr-1.7.2.ebuild
Normal file
167
dev-libs/apr/apr-1.7.2.ebuild
Normal file
@@ -0,0 +1,167 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit autotools toolchain-funcs
|
||||
|
||||
DESCRIPTION="Apache Portable Runtime Library"
|
||||
HOMEPAGE="https://apr.apache.org/"
|
||||
SRC_URI="mirror://apache/apr/${P}.tar.bz2"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="1/${PV%.*}"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
|
||||
IUSE="doc old-kernel selinux static-libs +urandom"
|
||||
|
||||
# See bug #815265 for libcrypt dependency
|
||||
DEPEND="
|
||||
virtual/libcrypt:=
|
||||
elibc_glibc? ( >=sys-apps/util-linux-2.16 )
|
||||
"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
selinux? ( sec-policy/selinux-base-policy )
|
||||
"
|
||||
BDEPEND="
|
||||
>=sys-devel/libtool-2.4.2
|
||||
doc? ( app-doc/doxygen )
|
||||
"
|
||||
|
||||
DOCS=( CHANGES NOTICE README )
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-1.5.0-mint.patch
|
||||
"${FILESDIR}"/${PN}-1.6.3-skip-known-failing-tests.patch
|
||||
"${FILESDIR}"/${PN}-1.7.2-libtool.patch
|
||||
"${FILESDIR}"/${PN}-1.7.2-sysroot.patch # bug #385775
|
||||
"${FILESDIR}"/${PN}-1.7.2-fix-pkgconfig-libs.patch
|
||||
"${FILESDIR}"/${PN}-1.7.2-respect-flags.patch
|
||||
"${FILESDIR}"/config.layout.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
mv configure.in configure.ac || die
|
||||
AT_M4DIR="build" eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local myconf=(
|
||||
--enable-layout=gentoo
|
||||
--enable-nonportable-atomics
|
||||
--enable-posix-shm
|
||||
--enable-threads
|
||||
$(use_enable static-libs static)
|
||||
--with-installbuilddir="${EPREFIX}"/usr/share/${PN}/build
|
||||
)
|
||||
|
||||
tc-is-static-only && myconf+=( --disable-dso )
|
||||
|
||||
if use old-kernel; then
|
||||
local apr_cv_accept4 apr_cv_dup3 apr_cv_epoll_create1 apr_cv_sock_cloexec
|
||||
export apr_cv_accept4="no"
|
||||
export apr_cv_dup3="no"
|
||||
export apr_cv_epoll_create1="no"
|
||||
export apr_cv_sock_cloexec="no"
|
||||
fi
|
||||
|
||||
if tc-is-cross-compiler; then
|
||||
# The apache project relies heavily on AC_TRY_RUN and doesn't
|
||||
# have any sane cross-compiling fallback logic.
|
||||
export \
|
||||
ac_cv_file__dev_zero="yes" \
|
||||
ac_cv_func_sem_open="yes" \
|
||||
ac_cv_mmap__dev_zero="yes" \
|
||||
ac_cv_negative_eai="yes" \
|
||||
ac_cv_o_nonblock_inherited="no" \
|
||||
ac_cv_struct_rlimit="yes" \
|
||||
ap_cv_atomic_builtins="yes" \
|
||||
apr_cv_accept4="yes" \
|
||||
apr_cv_dup3="yes" \
|
||||
apr_cv_epoll="yes" \
|
||||
apr_cv_epoll_create1="yes" \
|
||||
apr_cv_gai_addrconfig="yes" \
|
||||
apr_cv_mutex_recursive="yes" \
|
||||
apr_cv_mutex_robust_shared="yes" \
|
||||
apr_cv_process_shared_works="yes" \
|
||||
apr_cv_pthreads_lib="-pthread" \
|
||||
apr_cv_sock_cloexec="yes" \
|
||||
apr_cv_tcp_nodelay_with_cork="yes"
|
||||
fi
|
||||
|
||||
if use urandom; then
|
||||
myconf+=( --with-devrandom=/dev/urandom )
|
||||
elif (( ${CHOST#*-hpux11.} <= 11 )); then
|
||||
: # no /dev/*random on hpux11.11 and before, apr detects this.
|
||||
else
|
||||
myconf+=( --with-devrandom=/dev/random )
|
||||
fi
|
||||
|
||||
# shl_load does not search runpath, but hpux11 supports dlopen
|
||||
if [[ ${CHOST} == *-hpux11* ]]; then
|
||||
myconf+=( --enable-dso=dlfcn )
|
||||
elif [[ ${CHOST} == *-solaris2.10 ]]; then
|
||||
local atomic_contents=$(<$([[ ${CHOST} != ${CBUILD} ]] && echo "${EPREFIX}/usr/${CHOST}")/usr/include/atomic.h)
|
||||
|
||||
case "${atomic_contents}" in
|
||||
*atomic_cas_ptr*)
|
||||
;;
|
||||
*)
|
||||
local patch_id=$([[ ${CHOST} == sparc* ]] && echo 118884 || echo 118885)
|
||||
|
||||
elog "You do not have Solaris Patch ID ${patch_id} (Problem 4954703) installed on your host ($(hostname)),"
|
||||
elog "using generic atomic operations instead."
|
||||
|
||||
myconf+=( --disable-nonportable-atomics )
|
||||
;;
|
||||
esac
|
||||
else
|
||||
if use ppc || use sparc || use mips; then
|
||||
# Avoid libapr containing undefined references (underlinked)
|
||||
# undefined reference to `__sync_val_compare_and_swap_8'
|
||||
# (May be possible to fix via libatomic linkage in future?)
|
||||
# bug #740464
|
||||
myconf+=( --disable-nonportable-atomics )
|
||||
fi
|
||||
fi
|
||||
|
||||
econf "${myconf[@]}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
if tc-is-cross-compiler; then
|
||||
# This header is the same across targets, so use the build compiler.
|
||||
emake tools/gen_test_char
|
||||
|
||||
tc-export_build_env BUILD_CC
|
||||
${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_CPPFLAGS} ${BUILD_LDFLAGS} \
|
||||
tools/gen_test_char.c -o tools/gen_test_char || die
|
||||
fi
|
||||
|
||||
emake all $(usev doc dox)
|
||||
}
|
||||
|
||||
src_test() {
|
||||
# Building tests in parallel is broken
|
||||
emake -j1 check
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
if ! use static-libs; then
|
||||
find "${ED}" -name '*.la' -delete || die
|
||||
fi
|
||||
|
||||
if use doc; then
|
||||
docinto html
|
||||
dodoc -r docs/dox/html/*
|
||||
fi
|
||||
|
||||
# This file is only used on AIX systems, which Gentoo is not,
|
||||
# and causes collisions between the SLOTs, so remove it.
|
||||
# Even in Prefix, we don't need this on AIX.
|
||||
rm "${ED}/usr/$(get_libdir)/apr.exp" || die
|
||||
}
|
||||
35
dev-libs/apr/files/apr-1.7.2-fix-pkgconfig-libs.patch
Normal file
35
dev-libs/apr/files/apr-1.7.2-fix-pkgconfig-libs.patch
Normal file
@@ -0,0 +1,35 @@
|
||||
Don't pollute Libs with internal bits like libcrypt.
|
||||
|
||||
https://bugs.gentoo.org/811765
|
||||
https://sources.debian.org/patches/apr/1.7.2-2/fix-apr.pc.patch/
|
||||
https://sources.debian.org/patches/apr/1.7.2-2/omit_extra_libs.patch/
|
||||
|
||||
From: <tfheen@debian.org>
|
||||
Subject: No description.
|
||||
|
||||
--- a/apr.pc.in
|
||||
+++ b/apr.pc.in
|
||||
@@ -7,5 +7,6 @@
|
||||
Name: APR
|
||||
Description: The Apache Portable Runtime library
|
||||
Version: @APR_DOTTED_VERSION@
|
||||
-Libs: -L${libdir} -l@APR_LIBNAME@ @EXTRA_LIBS@
|
||||
-Cflags: @EXTRA_CPPFLAGS@ @EXTRA_CFLAGS@ -I${includedir}
|
||||
+Libs: -L${libdir} -l@APR_LIBNAME@
|
||||
+Libs.private: @EXTRA_LIBS@
|
||||
+Cflags: @EXTRA_CPPFLAGS@ -I${includedir}
|
||||
|
||||
From: Stefan Fritsch <sf@debian.org>
|
||||
Subject: #463399
|
||||
|
||||
--- a/apr-config.in
|
||||
+++ b/apr-config.in
|
||||
@@ -36,7 +36,7 @@ SHELL="@SHELL@"
|
||||
CPPFLAGS="@EXTRA_CPPFLAGS@"
|
||||
CFLAGS="@EXTRA_CFLAGS@"
|
||||
LDFLAGS="@EXTRA_LDFLAGS@"
|
||||
-LIBS="@EXTRA_LIBS@"
|
||||
+LIBS=""
|
||||
EXTRA_INCLUDES="@EXTRA_INCLUDES@"
|
||||
SHLIBPATH_VAR="@shlibpath_var@"
|
||||
APR_SOURCE_DIR="@apr_srcdir@"
|
||||
16
dev-libs/apr/files/apr-1.7.2-libtool.patch
Normal file
16
dev-libs/apr/files/apr-1.7.2-libtool.patch
Normal file
@@ -0,0 +1,16 @@
|
||||
generate a local copy of libtool for use in compiling
|
||||
|
||||
https://bugs.gentoo.org/374355
|
||||
--- a/configure.in
|
||||
+++ b/configure.in
|
||||
@@ -268,9 +268,7 @@ case $host in
|
||||
fi
|
||||
else
|
||||
dnl libtoolize requires that the following not be indented
|
||||
- dnl should become LT_INIT(win32-dll)
|
||||
-AC_LIBTOOL_WIN32_DLL
|
||||
-AC_PROG_LIBTOOL
|
||||
+LT_INIT(win32-dll)
|
||||
# get libtool's setting of shlibpath_var
|
||||
if test "x$shlibpath_var" = "x"; then
|
||||
eval `grep "^shlibpath_var=[[A-Z_]]*$" $apr_builddir/libtool`
|
||||
22
dev-libs/apr/files/apr-1.7.2-respect-flags.patch
Normal file
22
dev-libs/apr/files/apr-1.7.2-respect-flags.patch
Normal file
@@ -0,0 +1,22 @@
|
||||
https://sources.debian.org/patches/apr/1.7.2-2/dont_override_external_buildflags/
|
||||
|
||||
# Don't force apr-using projects to use the compile flags used during
|
||||
# apr's compilation.
|
||||
--- a/build/apr_rules.mk.in
|
||||
+++ b/build/apr_rules.mk.in
|
||||
@@ -42,10 +42,10 @@ LIBTOOL=@LIBTOOL@
|
||||
# compilation and linking flags that are supposed to be set only by the user.
|
||||
# configure adds to them for tests, but we restore them at the end.
|
||||
#
|
||||
-CFLAGS=@CFLAGS@
|
||||
-CPPFLAGS=@CPPFLAGS@
|
||||
-LDFLAGS=@LDFLAGS@
|
||||
-LIBS=@LIBS@
|
||||
+CFLAGS?=@CFLAGS@
|
||||
+CPPFLAGS?=@CPPFLAGS@
|
||||
+LDFLAGS?=@LDFLAGS@
|
||||
+LIBS?=@LIBS@
|
||||
DEFS=@DEFS@
|
||||
|
||||
# anything added to the standard flags by configure is moved to EXTRA_*
|
||||
|
||||
37
dev-libs/apr/files/apr-1.7.2-sysroot.patch
Normal file
37
dev-libs/apr/files/apr-1.7.2-sysroot.patch
Normal file
@@ -0,0 +1,37 @@
|
||||
https://bugs.gentoo.org/385775
|
||||
|
||||
utilize $SYSROOT to find the right includedir tree
|
||||
|
||||
drop the -L/-R paths since we know our libdir is the standard path which
|
||||
the compiler already knows how to locate
|
||||
--- a/apr-config.in
|
||||
+++ b/apr-config.in
|
||||
@@ -27,8 +27,8 @@ bindir="@bindir@"
|
||||
libdir="@libdir@"
|
||||
datarootdir="@datadir@"
|
||||
datadir="@datadir@"
|
||||
-installbuilddir="@installbuilddir@"
|
||||
-includedir="@includedir@"
|
||||
+installbuilddir="${SYSROOT}@installbuilddir@"
|
||||
+includedir="${SYSROOT}@includedir@"
|
||||
|
||||
CC="@CC@"
|
||||
CPP="@CPP@"
|
||||
@@ -199,7 +199,7 @@ while test $# -gt 0; do
|
||||
--link-ld)
|
||||
if test "$location" = "installed"; then
|
||||
### avoid using -L if libdir is a "standard" location like /usr/lib
|
||||
- flags="$flags -L$libdir -l${APR_LIBNAME}"
|
||||
+ flags="$flags -l${APR_LIBNAME}"
|
||||
elif test "$location" = "crosscompile"; then
|
||||
flags="$flags -L$APR_TARGET_DIR/$libdir -l${APR_LIBNAME}"
|
||||
else
|
||||
@@ -218,7 +218,7 @@ while test $# -gt 0; do
|
||||
### avoid using -L if libdir is a "standard" location like /usr/lib
|
||||
# Since the user is specifying they are linking with libtool, we
|
||||
# *know* that -R will be recognized by libtool.
|
||||
- flags="$flags -L$libdir -R$libdir -l${APR_LIBNAME}"
|
||||
+ flags="$flags -l${APR_LIBNAME}"
|
||||
elif test "$location" = "crosscompile"; then
|
||||
flags="$flags -L${APR_TARGET_DIR}/$libdir -l${APR_LIBNAME}"
|
||||
else
|
||||
@@ -6,6 +6,7 @@
|
||||
<name>Apache project</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="old-kernel">Enable compatibility with older kernels</flag>
|
||||
<flag name="older-kernels-compatibility">Enable binary compatibility with older kernels</flag>
|
||||
<flag name="urandom">Use /dev/urandom instead of /dev/random</flag>
|
||||
</use>
|
||||
|
||||
Reference in New Issue
Block a user