libdnet: Update to version 1.14

- Update from 1.11 (2005) to 1.14 (2020)
- Update of rootfile
- find-dependencies run and no problems flagged
- Package was originally provided by Dug Song in source forge and with a github repository
  No response was received from Dug Song to requests for updates and fixes so Oliver Falk
  forked the repository and has been working on it and now the Dug Song repository is no
  longer present and the old repoistory url redirects to the new ofalk repository
  https://github.com/ofalk/libdnet
- Issues raised in this new repository are being actively responded to
- Changelog comment is
   Finally release 1.14 with latest fixes included.

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
Adolf Belka
2022-02-28 22:10:29 +01:00
committed by Michael Tremer
parent 1a32c93bcf
commit 309726a454
2 changed files with 10 additions and 8 deletions

View File

@@ -13,14 +13,14 @@ usr/bin/dnet-config
#usr/include/dnet/os.h
#usr/include/dnet/rand.h
#usr/include/dnet/route.h
#usr/include/dnet/sctp.h
#usr/include/dnet/tcp.h
#usr/include/dnet/tun.h
#usr/include/dnet/udp.h
usr/lib/libdnet
usr/lib/libdnet.1
usr/lib/libdnet.1.0.1
usr/lib/libdnet.a
usr/lib/libdnet.la
#usr/lib/libdnet.so
usr/lib/libdnet.so.1
usr/lib/libdnet.so.1.0.1
#usr/man/man3/dnet.3
#usr/man/man8/dnet.8
usr/sbin/dnet

View File

@@ -24,9 +24,9 @@
include Config
VER = 1.11
VER = 1.14
THISAPP = libdnet-$(VER)
THISAPP = libdnet-libdnet-$(VER)
DL_FILE = $(THISAPP).tar.gz
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
@@ -40,7 +40,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_MD5 = 04c394ed8e1e7fc455456e79e908916d
$(DL_FILE)_MD5 = 704126bfcf9f81c631455b28d2773103
install : $(TARGET)
@@ -71,7 +71,9 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
cd $(DIR_APP) && ./configure --prefix=/usr
cd $(DIR_APP) && ./configure \
--prefix=/usr \
--disable-static
cd $(DIR_APP) && make
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)