From ab36c5dacec3cd210440834fe2de5766ee32e8cf Mon Sep 17 00:00:00 2001 From: Thomas Deutschmann Date: Wed, 10 Oct 2018 15:13:48 +0200 Subject: net-misc/lksctp-tools: fix installation of /usr/include/netinet/sctp.h Closes: https://bugs.gentoo.org/667512 Package-Manager: Portage-2.3.50, Repoman-2.3.11 Signed-off-by: Thomas Deutschmann --- .../files/lksctp-tools-1.0.18-install-sctp.h.patch | 11 ++++ .../lksctp-tools/lksctp-tools-1.0.18-r1.ebuild | 60 ++++++++++++++++++++++ net-misc/lksctp-tools/lksctp-tools-1.0.18.ebuild | 58 --------------------- 3 files changed, 71 insertions(+), 58 deletions(-) create mode 100644 net-misc/lksctp-tools/files/lksctp-tools-1.0.18-install-sctp.h.patch create mode 100644 net-misc/lksctp-tools/lksctp-tools-1.0.18-r1.ebuild delete mode 100644 net-misc/lksctp-tools/lksctp-tools-1.0.18.ebuild (limited to 'net-misc/lksctp-tools') diff --git a/net-misc/lksctp-tools/files/lksctp-tools-1.0.18-install-sctp.h.patch b/net-misc/lksctp-tools/files/lksctp-tools-1.0.18-install-sctp.h.patch new file mode 100644 index 000000000000..f831e6c30b3b --- /dev/null +++ b/net-misc/lksctp-tools/files/lksctp-tools-1.0.18-install-sctp.h.patch @@ -0,0 +1,11 @@ +https://github.com/sctp/lksctp-tools/commit/378560050a8f93786c590cc99a55461666205b61 + +--- a/src/include/netinet/Makefile.am ++++ b/src/include/netinet/Makefile.am +@@ -11,5 +11,4 @@ libcnetinetdir = $(includedir)/netinet + # API. + include_HEADERS = + +-libcnetinet_HEADERS = sctp.h.in +-BUILT_SOURCES = sctp.h ++libcnetinet_HEADERS = sctp.h diff --git a/net-misc/lksctp-tools/lksctp-tools-1.0.18-r1.ebuild b/net-misc/lksctp-tools/lksctp-tools-1.0.18-r1.ebuild new file mode 100644 index 000000000000..8dff226ebe28 --- /dev/null +++ b/net-misc/lksctp-tools/lksctp-tools-1.0.18-r1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="6" + +inherit flag-o-matic autotools linux-info multilib-minimal + +DESCRIPTION="Tools for Linux Kernel Stream Control Transmission Protocol implementation" +HOMEPAGE="http://lksctp.sourceforge.net/" +SRC_URI="https://github.com/sctp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="|| ( GPL-2+ LGPL-2.1 )" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="kernel_linux static-libs" + +# This is only supposed to work with Linux to begin with. +DEPEND=">=sys-kernel/linux-headers-2.6" +RDEPEND="" + +REQUIRED_USE="kernel_linux" + +CONFIG_CHECK="~IP_SCTP" +WARNING_IP_SCTP="CONFIG_IP_SCTP:\tis not set when it should be." + +DOCS=( AUTHORS ChangeLog INSTALL NEWS README ROADMAP ) + +PATCHES=( "${FILESDIR}"/${P}-install-sctp.h.patch ) + +src_prepare() { + default + + eautoreconf + + multilib_copy_sources +} + +multilib_src_configure() { + append-flags -fno-strict-aliasing + + local myeconfargs=( + --docdir="${EPREFIX%/}"/usr/share/doc/${PF} + --enable-shared + $(use_enable static-libs static) + ) + + econf "${myeconfargs[@]}" +} + +multilib_src_install_all() { + default + + dodoc doc/*txt + newdoc src/withsctp/README README.withsctp + + find "${ED}" -name '*.la' -delete || die + if ! use static-libs ; then + find "${ED}" -name "*.a" -delete || die + fi +} diff --git a/net-misc/lksctp-tools/lksctp-tools-1.0.18.ebuild b/net-misc/lksctp-tools/lksctp-tools-1.0.18.ebuild deleted file mode 100644 index 3f6e48874618..000000000000 --- a/net-misc/lksctp-tools/lksctp-tools-1.0.18.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit flag-o-matic autotools linux-info multilib-minimal - -DESCRIPTION="Tools for Linux Kernel Stream Control Transmission Protocol implementation" -HOMEPAGE="http://lksctp.sourceforge.net/" -SRC_URI="https://github.com/sctp/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( GPL-2+ LGPL-2.1 )" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="kernel_linux static-libs" - -# This is only supposed to work with Linux to begin with. -DEPEND=">=sys-kernel/linux-headers-2.6" -RDEPEND="" - -REQUIRED_USE="kernel_linux" - -CONFIG_CHECK="~IP_SCTP" -WARNING_IP_SCTP="CONFIG_IP_SCTP:\tis not set when it should be." - -DOCS=( AUTHORS ChangeLog INSTALL NEWS README ROADMAP ) - -src_prepare() { - default - - eautoreconf - - multilib_copy_sources -} - -multilib_src_configure() { - append-flags -fno-strict-aliasing - - local myeconfargs=( - --docdir="${EPREFIX%/}"/usr/share/doc/${PF} - --enable-shared - $(use_enable static-libs static) - ) - - econf "${myeconfargs[@]}" -} - -multilib_src_install_all() { - default - - dodoc doc/*txt - newdoc src/withsctp/README README.withsctp - - find "${ED}" -name '*.la' -delete || die - if ! use static-libs ; then - find "${ED}" -name "*.a" -delete || die - fi -} -- cgit v1.2.3-65-gdbad