diff options
author | Jakov Smolić <jsmolic@gentoo.org> | 2022-12-20 14:57:17 +0100 |
---|---|---|
committer | Jakov Smolić <jsmolic@gentoo.org> | 2022-12-20 15:25:32 +0100 |
commit | ca3ef71f82c992d0aa264299d95211e649ea3c6f (patch) | |
tree | 9b6b7e99ffbd3e8f3a442dfa02959238d830fc45 /net-libs/libnet | |
parent | net-analyzer/angst: treeclean (diff) | |
download | gentoo-ca3ef71f82c992d0aa264299d95211e649ea3c6f.tar.gz gentoo-ca3ef71f82c992d0aa264299d95211e649ea3c6f.tar.bz2 gentoo-ca3ef71f82c992d0aa264299d95211e649ea3c6f.zip |
net-libs/libnet: drop 1.0.2a-r7
Closes: https://bugs.gentoo.org/881677
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'net-libs/libnet')
-rw-r--r-- | net-libs/libnet/Manifest | 1 | ||||
-rw-r--r-- | net-libs/libnet/libnet-1.0.2a-r7.ebuild | 67 |
2 files changed, 0 insertions, 68 deletions
diff --git a/net-libs/libnet/Manifest b/net-libs/libnet/Manifest index b64b987126b2..a0cec350a696 100644 --- a/net-libs/libnet/Manifest +++ b/net-libs/libnet/Manifest @@ -1,2 +1 @@ -DIST libnet-1.0.2a.tar.gz 140191 BLAKE2B 4107cb714b7be901250759ce5288a86922bd7cc20081a9d2c93758150d74c55844db98c43874befdfb593ec25e128d6ae2389eff7c46da79dcbb9681f649e059 SHA512 2e9a73bd767e1f46eea92e18ddd83cc3179144c8cc5b1a22b4dba50fee16173c951be4dd647a247bd7067c33b9e33489a6efb313ce1ea0c61c4a06009c3c4d95 DIST libnet-1.2.tar.gz 649191 BLAKE2B bc463c7869e0327ec2f7663c2e66a27302e368f9846235f6774f36aed66263655badaf980e7e7fb08cc2f9a7f2620129c193bbdd49bbee58401f229a69c50c2a SHA512 84430f24e000eb7728b1fbb5e620716d13d193e8b9e024cf56a08fbeeeaaf56c9122caaf7647f01e6b38b73212e592fa5cc4e8ff56b1d5f5a73aea462e84edd6 diff --git a/net-libs/libnet/libnet-1.0.2a-r7.ebuild b/net-libs/libnet/libnet-1.0.2a-r7.ebuild deleted file mode 100644 index c07ef94b90a0..000000000000 --- a/net-libs/libnet/libnet-1.0.2a-r7.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools toolchain-funcs - -DESCRIPTION="library providing an API for commonly used low-level network functions" -HOMEPAGE="http://www.packetfactory.net/libnet/" -SRC_URI="http://www.packetfactory.net/libnet/dist/deprecated/${P}.tar.gz" -S="${WORKDIR}"/Libnet-${PV} - -LICENSE="BSD BSD-2 HPND" -SLOT="1.0" -KEYWORDS="~alpha amd64 arm ~hppa ppc ppc64 sparc x86" - -PATCHES=( - "${FILESDIR}"/${PN}-1.0.2a-gcc33-fix.patch - "${FILESDIR}"/${PN}-1.0.2a-slot.patch - "${FILESDIR}"/${PN}-1.0.2a-endian.patch - "${FILESDIR}"/${PN}-1.0.2a-_SOURCE.patch - "${FILESDIR}"/${PN}-1.0.2a-funroll.patch - "${FILESDIR}"/${PN}-1.0.2a-test.patch - -) - -src_prepare() { - default - - cd "${S}" || die - mv libnet-config.in libnet-${SLOT}-config.in || die "moving libnet-config" - - cd "${S}"/include || die - ln -s libnet.h libnet-${SLOT}.h || die - - cd libnet || die - for f in *.h ; do - ln -s ${f} ${f/-/-${SLOT}-} || die - done - - cd "${S}"/doc || die - ln -s libnet.3 libnet-${SLOT}.3 || die - - cd "${S}" || die - - eautoreconf - tc-export AR RANLIB -} - -src_test() { - emake -C test -} - -src_install() { - default - doman "${ED}"/usr/man/man3/libnet-1.0.3 - rm -r "${ED}"/usr/man || die - - dodoc VERSION doc/{README,TODO*,CHANGELOG*} - newdoc README README.1st - - docinto example - dodoc example/libnet* - - docinto Ancillary - dodoc doc/Ancillary/* -} |