Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (62f1c134f4777ed449c36f12019ae4bcd9081315)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (62f1c134f4777ed449c36f12019ae4bcd9081315)
  • Date: Tue, 10 Jan 2017 18:12:19 +0000

GIT changes to master grimoire by Florian Franzmann
<siflfran AT hawo.stw.uni-erlangen.de>:

net/iputils-ping/DEPENDS | 4 +++-
net/iputils-ping/HISTORY | 2 ++
net/iputils-ping/PRE_BUILD | 8 +++++++-
3 files changed, 12 insertions(+), 2 deletions(-)

New commits:
commit 62f1c134f4777ed449c36f12019ae4bcd9081315
Author: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
Commit: Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>

net/iputils-ping: optionally depend on libidn and nettle

diff --git a/net/iputils-ping/DEPENDS b/net/iputils-ping/DEPENDS
index a7e4f0e..0734a38 100755
--- a/net/iputils-ping/DEPENDS
+++ b/net/iputils-ping/DEPENDS
@@ -2,4 +2,6 @@ optional_depends libcap '' '' 'Linux Capability support' &&
optional_depends gnutls '' '' 'GnuTLS support in ping6' &&
optional_depends opensp '' '' 'for docs and manpages' &&
optional_depends sgmlspm '' '' 'for docs and manpages' &&
-optional_depends docbook-sgml-dtd '' '' 'for docs and manpages'
+optional_depends docbook-sgml-dtd '' '' 'for docs and manpages' &&
+optional_depends libidn '' '' 'for IDN support'
+optional_depends nettle '' '' 'for nettle support'
diff --git a/net/iputils-ping/HISTORY b/net/iputils-ping/HISTORY
index ede8654..2956b67 100644
--- a/net/iputils-ping/HISTORY
+++ b/net/iputils-ping/HISTORY
@@ -1,6 +1,8 @@
2017-01-10 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS, 0001-build-ping.patch, BUILD, INSTALL, PRE_BUILD:
version 20161105
+ * DEPENDS, PRE_BUILD: optionally depend on libidn and nettle
+ * PRE_BUILD: fix typo preventing libcap from ever being used

2015-08-08 Florian Franzmann <siflfran AT hawo.stw.uni-erlangen.de>
* DETAILS: use make_single when building documentation
diff --git a/net/iputils-ping/PRE_BUILD b/net/iputils-ping/PRE_BUILD
index 8796c62..b3d7fb7 100755
--- a/net/iputils-ping/PRE_BUILD
+++ b/net/iputils-ping/PRE_BUILD
@@ -3,9 +3,15 @@ cd "$SOURCE_DIRECTORY" &&

patch -p1 < "$SPELL_DIRECTORY/0001-build-ping.patch" &&

-if ! is_depends_enabled $SPELL licap; then
+if ! is_depends_enabled $SPELL libcap; then
sed -i -e 's/USE_CAP=yes/USE_CAP=no/' Makefile
fi &&
+if ! is_depends_enabled $SPELL libidn; then
+ sed -i -e 's/USE_IDN=yes/USE_IDN=no/' Makefile
+fi &&
+if ! is_depends_enabled $SPELL nettle; then
+ sed -i -e 's/USE_NETTLE=yes/USE_NETTLE=no/' Makefile
+fi &&
if ! is_depends_enabled $SPELL gnutls; then
sed -i -e 's/USE_GNUTLS=yes/USE_GNUTLS=no/' Makefile
fi



  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (62f1c134f4777ed449c36f12019ae4bcd9081315), Florian Franzmann, 01/10/2017

Archive powered by MHonArc 2.6.24.

Top of Page