From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1108315-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B4D9C138334 for <garchives@archives.gentoo.org>; Fri, 30 Aug 2019 17:29:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7772E0845; Fri, 30 Aug 2019 17:29:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AFAFDE0845 for <gentoo-commits@lists.gentoo.org>; Fri, 30 Aug 2019 17:29:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BDDEC34A6F0 for <gentoo-commits@lists.gentoo.org>; Fri, 30 Aug 2019 17:29:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 733D2471 for <gentoo-commits@lists.gentoo.org>; Fri, 30 Aug 2019 17:29:29 +0000 (UTC) From: "Jeroen Roovers" <jer@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" <jer@gentoo.org> Message-ID: <1567186168.4f9ec75b4ecdcfa44e9b242d5feab6975df42912.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libpcap/, net-libs/libpcap/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libpcap/files/libpcap-1.9.0-os.patch net-libs/libpcap/libpcap-1.9.0-r1.ebuild X-VCS-Directories: net-libs/libpcap/files/ net-libs/libpcap/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 4f9ec75b4ecdcfa44e9b242d5feab6975df42912 X-VCS-Branch: master Date: Fri, 30 Aug 2019 17:29:29 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4b7f56ad-6188-4378-91f1-4733a591de57 X-Archives-Hash: 4c91dbd6719549f60c06698524783c60 commit: 4f9ec75b4ecdcfa44e9b242d5feab6975df42912 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org> AuthorDate: Fri Aug 30 17:27:25 2019 +0000 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org> CommitDate: Fri Aug 30 17:29:28 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f9ec75b net-libs/libpcap: Fix compiling on sparc64-linux-* Package-Manager: Portage-2.3.73, Repoman-2.3.17 Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org> net-libs/libpcap/files/libpcap-1.9.0-os.patch | 33 +++++++++++++++++++++++++++ net-libs/libpcap/libpcap-1.9.0-r1.ebuild | 2 +- 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/net-libs/libpcap/files/libpcap-1.9.0-os.patch b/net-libs/libpcap/files/libpcap-1.9.0-os.patch new file mode 100644 index 00000000000..d3ec8014084 --- /dev/null +++ b/net-libs/libpcap/files/libpcap-1.9.0-os.patch @@ -0,0 +1,33 @@ +--- a/aclocal.m4 ++++ b/aclocal.m4 +@@ -415,7 +415,7 @@ + aix*) + ;; + +- freebsd*|netbsd*|openbsd*|dragonfly*|linux*|osf*) ++ freebsd*|solaris*|netbsd*|openbsd*|dragonfly*|linux*|osf*) + # + # Platforms where the linker is the GNU linker + # or accepts command-line arguments like +@@ -429,10 +429,10 @@ + PIC_OPT=-fpic + case "$host_cpu" in + +- sparc64*) ++ sparc64*|sparcv9*) + case "$host_os" in + +- freebsd*|openbsd*) ++ freebsd*|solaris*|openbsd*|linux*) + PIC_OPT=-fPIC + ;; + esac +@@ -497,7 +497,7 @@ + V_SHLIB_OPT="-G -bnoentry -bexpall" + ;; + +- freebsd*|netbsd*|openbsd*|dragonfly*|linux*) ++ freebsd*|solaris*|netbsd*|openbsd*|dragonfly*|linux*) + # + # "cc" is GCC. + # diff --git a/net-libs/libpcap/libpcap-1.9.0-r1.ebuild b/net-libs/libpcap/libpcap-1.9.0-r1.ebuild index 4d5a0121e31..38b37dbc6db 100644 --- a/net-libs/libpcap/libpcap-1.9.0-r1.ebuild +++ b/net-libs/libpcap/libpcap-1.9.0-r1.ebuild @@ -33,10 +33,10 @@ DEPEND=" S=${WORKDIR}/${PN}-${P/_} PATCHES=( - "${FILESDIR}"/${PN}-1.6.1-prefix-solaris.patch "${FILESDIR}"/${PN}-1.8.1-darwin.patch "${FILESDIR}"/${PN}-1.8.1-usbmon.patch "${FILESDIR}"/${PN}-1.9.0-pcap-config-includedir.patch + "${FILESDIR}"/${PN}-1.9.0-os.patch ) src_prepare() {