diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2017-05-07 00:31:30 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2017-05-07 00:32:07 +0200 |
commit | 56cb960da35d2e8a0177dfce8083dc993b48f70d (patch) | |
tree | 1293a5f493f50b02997b38ab2df98c7de15b6c93 /net-analyzer/ifstatus | |
parent | dev-vcs/git: Bump to version 2.13.0_rc2 (diff) | |
download | gentoo-56cb960da35d2e8a0177dfce8083dc993b48f70d.tar.gz gentoo-56cb960da35d2e8a0177dfce8083dc993b48f70d.tar.bz2 gentoo-56cb960da35d2e8a0177dfce8083dc993b48f70d.zip |
net-analyzer/ifstatus: Fixed compilation with gcc-6 (bug #594510).
Thanks to Peter Levine for providing the patch.
Also bumped ebuild to EAPI-6.
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'net-analyzer/ifstatus')
-rw-r--r-- | net-analyzer/ifstatus/files/ifstatus-1.1.0-gcc6.patch | 12 | ||||
-rw-r--r-- | net-analyzer/ifstatus/ifstatus-1.1.0-r1.ebuild | 15 |
2 files changed, 22 insertions, 5 deletions
diff --git a/net-analyzer/ifstatus/files/ifstatus-1.1.0-gcc6.patch b/net-analyzer/ifstatus/files/ifstatus-1.1.0-gcc6.patch new file mode 100644 index 000000000000..8acfe9adcecb --- /dev/null +++ b/net-analyzer/ifstatus/files/ifstatus-1.1.0-gcc6.patch @@ -0,0 +1,12 @@ +--- ifstatus/Interface.h.old 2016-09-27 03:52:02.063811332 -0400 ++++ ifstatus/Interface.h 2016-09-27 03:53:33.305880857 -0400 +@@ -57,7 +57,8 @@ + + InterfaceData & operator=(InterfaceData & rInterfaceData); + InterfaceData operator-(InterfaceData & rInterfaceData); +- ++ InterfaceData & operator=(InterfaceData && rInterfaceData) = default; ++ InterfaceData(const InterfaceData&) = default; + private: + + unsigned long long m_ullReceived[eTotalTypes]; diff --git a/net-analyzer/ifstatus/ifstatus-1.1.0-r1.ebuild b/net-analyzer/ifstatus/ifstatus-1.1.0-r1.ebuild index 7fb2edc345f8..10f512067d0b 100644 --- a/net-analyzer/ifstatus/ifstatus-1.1.0-r1.ebuild +++ b/net-analyzer/ifstatus/ifstatus-1.1.0-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 inherit eutils toolchain-funcs KEYWORDS="amd64 arm ~ppc x86" @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${PN}-v${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" -RDEPEND=">=sys-libs/ncurses-4.2" +RDEPEND=">=sys-libs/ncurses-4.2:0=" DEPEND=" ${RDEPEND} virtual/pkgconfig @@ -20,9 +20,14 @@ DEPEND=" S="${WORKDIR}/${PN}" +PATCHES=( + "${FILESDIR}/${P}-gcc43.patch" + "${FILESDIR}/${P}-tinfo.patch" + "${FILESDIR}/${P}-gcc6.patch" +) + src_prepare() { - epatch "${FILESDIR}/${P}-gcc43.patch" - epatch "${FILESDIR}/${P}-tinfo.patch" + default tc-export CXX PKG_CONFIG } |