From b426a5cef3f0ebe3389686a1c145a834d3a1e120 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 9 Sep 2022 10:40:04 +0100 Subject: gentoo auto-resync : 09:09:2022 - 10:40:04 --- net-misc/Manifest.gz | Bin 55567 -> 55570 bytes net-misc/lksctp-tools/Manifest | 2 +- .../lksctp-tools/lksctp-tools-1.0.19-r1.ebuild | 56 ++++++++++++++++++++ net-misc/lksctp-tools/lksctp-tools-1.0.19.ebuild | 58 --------------------- 4 files changed, 57 insertions(+), 59 deletions(-) create mode 100644 net-misc/lksctp-tools/lksctp-tools-1.0.19-r1.ebuild delete mode 100644 net-misc/lksctp-tools/lksctp-tools-1.0.19.ebuild (limited to 'net-misc') diff --git a/net-misc/Manifest.gz b/net-misc/Manifest.gz index 3f848b13d030..c50e9f0157d8 100644 Binary files a/net-misc/Manifest.gz and b/net-misc/Manifest.gz differ diff --git a/net-misc/lksctp-tools/Manifest b/net-misc/lksctp-tools/Manifest index 594f4445b0cb..49e755f1f37b 100644 --- a/net-misc/lksctp-tools/Manifest +++ b/net-misc/lksctp-tools/Manifest @@ -1,3 +1,3 @@ DIST lksctp-tools-1.0.19.tar.gz 561962 BLAKE2B ae6a5b7c30413dadac736bd17dd1ac3f97bd34f74323959f4e9cb60186db735b4e79b101ad550bdb2975350951fd6ae8bb27b165c6dc86fc7c822fce30f49d05 SHA512 e56a4b00206acfb88cab1b8fc7424a1a4996f67ef925c29a97395c44c57f2cbcb3fc36ec2648f5e5a5ce29d8d61ee1f7a5e7869e6bbd68bff85590b6ec521883 -EBUILD lksctp-tools-1.0.19.ebuild 1278 BLAKE2B 2693bfb31620d06d98a2a863146451e57665540f6ed8d85f28f0f756d310c0f96b7e930ba976a518c7f034bd72f239dcfbd44686385c2406becaf581b8b12730 SHA512 7a5ff721a05fd96404ae06c90742d55aff78e0f108059f0034103cae15d4035cdf3327a2b662286560eb07829ad7dd4f2eac5be0098e22e77c0514028124bd9e +EBUILD lksctp-tools-1.0.19-r1.ebuild 1213 BLAKE2B cc9b0d7b1f22443297b2d583011a3f8f4f5e74b6af92240e74a79b234e941ebc8afe0e0d893b5b45450dcffa94a916f1fb5ede1ef09dbd396f20264cb20a2cea SHA512 4d8c77a6dde7b12c559ec044cb4e0f4b23f12f941258b01c55b5faecd2a46ffa04c9d7228d0a7bd39550f15c373d7696f37a894375f4ac367ba5b3de7482f930 MISC metadata.xml 551 BLAKE2B e48828cb01bba67af31db1f72671ce8d561fe491ccf819c4451604938868c126f695f80c9ea40f940fbf0b5b26a1e5fd28e6a8a60dc00369c8478eb927c9c335 SHA512 a2885e5b6f2f7eceb0e2f52d2efdb559beca754a1c388485c1c4100bab70eb60489ed60ae120ad79745a2b2d4be09a4990d20ceacb9da7b385c375cc0266dcd4 diff --git a/net-misc/lksctp-tools/lksctp-tools-1.0.19-r1.ebuild b/net-misc/lksctp-tools/lksctp-tools-1.0.19-r1.ebuild new file mode 100644 index 000000000000..bfe0d0720d9c --- /dev/null +++ b/net-misc/lksctp-tools/lksctp-tools-1.0.19-r1.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit flag-o-matic autotools linux-info + +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 ~riscv ~s390 sparc x86" +IUSE="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 +} + +src_configure() { + append-flags -fno-strict-aliasing + + local myeconfargs=( + --enable-shared + $(use_enable static-libs static) + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + 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.19.ebuild b/net-misc/lksctp-tools/lksctp-tools-1.0.19.ebuild deleted file mode 100644 index bfac4bc42111..000000000000 --- a/net-misc/lksctp-tools/lksctp-tools-1.0.19.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI="7" - -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 ~riscv ~s390 sparc x86" -IUSE="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=( - --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