From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B6240158094 for ; Mon, 3 Oct 2022 16:25:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F09C3E08CA; Mon, 3 Oct 2022 16:25:05 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2CA1E08CA for ; Mon, 3 Oct 2022 16:25:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 076F733BDE5 for ; Mon, 3 Oct 2022 16:25:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 765BA599 for ; Mon, 3 Oct 2022 16:25:03 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1664814291.c1268d96402603673670f6b515d373e5d3204a24.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/subversion/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-vcs/subversion/subversion-1.14.2-r1.ebuild X-VCS-Directories: dev-vcs/subversion/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: c1268d96402603673670f6b515d373e5d3204a24 X-VCS-Branch: master Date: Mon, 3 Oct 2022 16:25:03 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 40b5085a-afe6-4fc7-afab-bf9ee9d6bc71 X-Archives-Hash: 69052cf0ec5199f2d4f26663c0456399 commit: c1268d96402603673670f6b515d373e5d3204a24 Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Oct 3 16:24:18 2022 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Oct 3 16:24:51 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1268d96 dev-vcs/subversion: Add prefix improvements from Benda Xu Closes: https://bugs.gentoo.org/762244 Signed-off-by: Andreas K. Hüttel gentoo.org> dev-vcs/subversion/subversion-1.14.2-r1.ebuild | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/dev-vcs/subversion/subversion-1.14.2-r1.ebuild b/dev-vcs/subversion/subversion-1.14.2-r1.ebuild index 7dd9287c1616..e48010a67437 100644 --- a/dev-vcs/subversion/subversion-1.14.2-r1.ebuild +++ b/dev-vcs/subversion/subversion-1.14.2-r1.ebuild @@ -8,7 +8,7 @@ GENTOO_DEPEND_ON_PERL="no" PYTHON_COMPAT=( python3_{8..11} ) USE_RUBY="ruby27 ruby26" -inherit autotools bash-completion-r1 db-use depend.apache flag-o-matic java-pkg-opt-2 libtool multilib perl-module python-any-r1 ruby-single xdg-utils +inherit autotools bash-completion-r1 db-use depend.apache flag-o-matic java-pkg-opt-2 libtool multilib perl-module prefix python-any-r1 ruby-single xdg-utils MY_P="${P/_/-}" DESCRIPTION="Advanced version control system" @@ -162,6 +162,8 @@ src_prepare() { sed -i -e '1c\#!/usr/bin/env sh' build/transform_libtool_scripts.sh || \ die "/bin/sh is not POSIX shell!" + hprefixify build/ac-macros/svn-macros.m4 + eautoconf elibtoolize @@ -207,27 +209,12 @@ src_configure() { fi case ${CHOST} in - *-aix*) - # avoid recording immediate path to sharedlibs into executables - append-ldflags -Wl,-bnoipath - ;; - *-cygwin*) - # no LD_PRELOAD support, no undefined symbols - myconf+=( --disable-local-library-preloading LT_LDFLAGS=-no-undefined ) - ;; - *-interix*) - # loader crashes on the LD_PRELOADs... - myconf+=( --disable-local-library-preloading ) - ;; *-solaris*) # need -lintl to link use nls && append-libs intl # this breaks installation, on x64 echo replacement is 32-bits myconf+=( --disable-local-library-preloading ) ;; - *-mint*) - myconf+=( --enable-all-static --disable-local-library-preloading ) - ;; *) # inject LD_PRELOAD entries for easy in-tree development myconf+=( --enable-local-library-preloading )