public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Jeroen Roovers" <jer@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnet/, net-libs/libnet/files/
Date: Mon, 28 Oct 2019 09:49:16 +0000 (UTC)	[thread overview]
Message-ID: <1572256155.0f97f90369c880c95a869a795a885674bca3a778.jer@gentoo> (raw)

commit:     0f97f90369c880c95a869a795a885674bca3a778
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 28 09:48:39 2019 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Mon Oct 28 09:49:15 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f97f903

net-libs/libnet: EAPI=7, fix src_test()

Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Jeroen Roovers <jer <AT> gentoo.org>

 net-libs/libnet/files/libnet-1.0.2a-test.patch | 54 ++++++++++++++++++++++
 net-libs/libnet/libnet-1.0.2a-r7.ebuild        | 63 ++++++++++++++++++++++++++
 2 files changed, 117 insertions(+)

diff --git a/net-libs/libnet/files/libnet-1.0.2a-test.patch b/net-libs/libnet/files/libnet-1.0.2a-test.patch
new file mode 100644
index 00000000000..8bbb2ac45d1
--- /dev/null
+++ b/net-libs/libnet/files/libnet-1.0.2a-test.patch
@@ -0,0 +1,54 @@
+--- a/test/Makefile.in
++++ b/test/Makefile.in
+@@ -9,31 +9,31 @@
+ all: test
+ 
+ test:
+-	if ! test -e ../lib/libnet.a; then \
+-	    cd .. &&  make; \
++	if ! test -e ../lib/libnet-1.0.a; then \
++	    cd .. &&  $(MAKE); \
+ 	fi
+-	cd Random; make all
+-	cd ICMP; make all
+-	cd UDP; make all
+-	cd TCP; make all
+-	cd Ethernet; make all
+-	cd OSPF; make all
++	cd Random; $(MAKE) all
++	cd ICMP; $(MAKE) all
++	cd UDP; $(MAKE) all
++	cd TCP; $(MAKE) all
++	cd Ethernet; $(MAKE) all
++	cd OSPF; $(MAKE) all
+ 
+ clean:
+-	cd Random; make clean
+-	cd ICMP; make clean
+-	cd UDP; make clean
+-	cd TCP; make clean
+-	cd Ethernet; make clean
+-	cd OSPF; make clean
++	cd Random; $(MAKE) clean
++	cd ICMP; $(MAKE) clean
++	cd UDP; $(MAKE) clean
++	cd TCP; $(MAKE) clean
++	cd Ethernet; $(MAKE) clean
++	cd OSPF; $(MAKE) clean
+ 
+ distclean: clean
+-	cd TCP; make distclean
+-	cd UDP; make distclean
+-	cd ICMP; make distclean
+-	cd Random; make distclean
+-	cd Ethernet; make distclean
+-	cd OSPF; make distclean
++	cd TCP; $(MAKE) distclean
++	cd UDP; $(MAKE) distclean
++	cd ICMP; $(MAKE) distclean
++	cd Random; $(MAKE) distclean
++	cd Ethernet; $(MAKE) distclean
++	cd OSPF; $(MAKE) distclean
+ 	rm -f Makefile
+ 
+ # EOF

diff --git a/net-libs/libnet/libnet-1.0.2a-r7.ebuild b/net-libs/libnet/libnet-1.0.2a-r7.ebuild
new file mode 100644
index 00000000000..5419190c2e1
--- /dev/null
+++ b/net-libs/libnet/libnet-1.0.2a-r7.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2019 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"
+
+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
+
+)
+S=${WORKDIR}/Libnet-${PV}
+
+src_prepare() {
+	default
+
+	cd "${S}"
+	mv libnet-config.in libnet-${SLOT}-config.in || die "moving libnet-config"
+
+	cd "${S}"/include
+	ln -s libnet.h libnet-${SLOT}.h
+
+	cd libnet
+	for f in *.h ; do
+		ln -s ${f} ${f/-/-${SLOT}-} || die
+	done
+
+	cd "${S}"/doc
+	ln -s libnet.3 libnet-${SLOT}.3 || die
+
+	cd "${S}"
+
+	eautoconf
+
+	tc-export AR RANLIB
+}
+
+src_test() {
+	emake -C test
+}
+
+src_install() {
+	default
+	doman "${D}"/usr/man/man3/libnet-1.0.3
+	rm -r "${D}"/usr/man
+
+	dodoc VERSION doc/{README,TODO*,CHANGELOG*}
+	newdoc README README.1st
+	docinto example ; dodoc example/libnet*
+	docinto Ancillary ; dodoc doc/Ancillary/*
+}


             reply	other threads:[~2019-10-28  9:49 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-28  9:49 Jeroen Roovers [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-03-15 21:09 [gentoo-commits] repo/gentoo:master commit in: net-libs/libnet/, net-libs/libnet/files/ Sam James
2020-01-27  0:54 Jeroen Roovers
2017-12-02 12:00 Jeroen Roovers
2016-08-08 13:10 Jeroen Roovers

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1572256155.0f97f90369c880c95a869a795a885674bca3a778.jer@gentoo \
    --to=jer@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox