diff options
author | David Seifert <soap@gentoo.org> | 2021-08-01 21:28:55 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-08-01 21:28:55 +0200 |
commit | 5ef54149a7b0cd8ce43fbb549b3c340b749f0aa9 (patch) | |
tree | 1a5395a7b13d8de5038ccf6dbd3171d2116c35bb /net-libs | |
parent | net-analyzer/tracebox: Fix build with GCC 11 (diff) | |
download | gentoo-5ef54149a7b0cd8ce43fbb549b3c340b749f0aa9.tar.gz gentoo-5ef54149a7b0cd8ce43fbb549b3c340b749f0aa9.tar.bz2 gentoo-5ef54149a7b0cd8ce43fbb549b3c340b749f0aa9.zip |
net-libs/libcrafter: update EAPI 7 -> 8
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libcrafter/libcrafter-1.0-r1.ebuild (renamed from net-libs/libcrafter/libcrafter-1.0.ebuild) | 28 | ||||
-rw-r--r-- | net-libs/libcrafter/libcrafter-9999.ebuild | 30 |
2 files changed, 21 insertions, 37 deletions
diff --git a/net-libs/libcrafter/libcrafter-1.0.ebuild b/net-libs/libcrafter/libcrafter-1.0-r1.ebuild index 7b919920ad00..9eb5e0583a60 100644 --- a/net-libs/libcrafter/libcrafter-1.0.ebuild +++ b/net-libs/libcrafter/libcrafter-1.0-r1.ebuild @@ -1,38 +1,30 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + inherit autotools DESCRIPTION="A high level C++ network packet sniffing and crafting library" HOMEPAGE="https://github.com/pellegre/libcrafter" SRC_URI="https://github.com/pellegre/${PN}/archive/version-${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-version-${PV}/${PN}" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="static-libs" - -RDEPEND=" - net-libs/libpcap -" -DEPEND=" - ${RDEPEND} -" -PATCHES=( - "${FILESDIR}"/${PN}-0.3_p20171019-libpcap.patch -) -S=${WORKDIR}/${PN}-version-${PV}/${PN} + +RDEPEND="net-libs/libpcap" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${PN}-0.3_p20171019-libpcap.patch ) src_prepare() { default eautoreconf } -src_configure() { - econf $(use_enable static-libs static) -} - src_install() { default diff --git a/net-libs/libcrafter/libcrafter-9999.ebuild b/net-libs/libcrafter/libcrafter-9999.ebuild index 16291e489096..609119bb53ca 100644 --- a/net-libs/libcrafter/libcrafter-9999.ebuild +++ b/net-libs/libcrafter/libcrafter-9999.ebuild @@ -1,38 +1,30 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 + inherit autotools git-r3 DESCRIPTION="A high level C++ network packet sniffing and crafting library" HOMEPAGE="https://github.com/pellegre/libcrafter" EGIT_REPO_URI="https://github.com/pellegre/${PN}" +S="${WORKDIR}/${P}/${PN}" LICENSE="BSD" SLOT="0" -KEYWORDS="" -IUSE="static-libs" - -RDEPEND=" - net-libs/libpcap -" -DEPEND=" - ${RDEPEND} -" -PATCHES=( - "${FILESDIR}"/${PN}-0.3_p20171019-libpcap.patch -) -S=${WORKDIR}/${P}/${PN} +KEYWORDS="~amd64 ~x86" + +RDEPEND="net-libs/libpcap" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( "${FILESDIR}"/${PN}-0.3_p20171019-libpcap.patch ) src_prepare() { default eautoreconf } -src_configure() { - econf $(use_enable static-libs static) -} - src_install() { default |