Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (589e578d22e75a81309cb201cf376a5327cded53)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Ladislav Hagara <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (589e578d22e75a81309cb201cf376a5327cded53)
  • Date: Sun, 11 Jul 2010 20:45:23 -0500

GIT changes to master grimoire by Ladislav Hagara <hgr AT vabo.cz>:

net/iputils-base/HISTORY | 3 +++
net/iputils-base/INSTALL | 40 ++++++++++++++++++++--------------------
2 files changed, 23 insertions(+), 20 deletions(-)

New commits:
commit 589e578d22e75a81309cb201cf376a5327cded53
Author: Ladislav Hagara <hgr AT vabo.cz>
Commit: Ladislav Hagara <hgr AT vabo.cz>

iputils-base: INSTALL fixed
seems nobody really cast it :-(

diff --git a/net/iputils-base/HISTORY b/net/iputils-base/HISTORY
index fb5a857..204fc76 100644
--- a/net/iputils-base/HISTORY
+++ b/net/iputils-base/HISTORY
@@ -1,2 +1,5 @@
+2010-07-12 Ladislav Hagara <hgr AT vabo.cz>
+ * INSTALL: fixed
+
2010-06-17 Robin Cook <rcook AT wyrms.net>
* BUILD, DETAILS, DEPENDS, CONFIGURE, CONFLICTS, INSTALL: new spell
diff --git a/net/iputils-base/INSTALL b/net/iputils-base/INSTALL
index 098630c..5756d32 100755
--- a/net/iputils-base/INSTALL
+++ b/net/iputils-base/INSTALL
@@ -1,63 +1,63 @@
-if ("IPUTILS_PING" == "y") then
+if [ "$IPUTILS_PING" == "y" ]; then
install -m 4755 ping $INSTALL_ROOT/usr/bin
fi &&
-if ("IPUTILS_PING6" == "y") then
+if [ "$IPUTILS_PING6" == "y" ]; then
install -m 4755 arping $INSTALL_ROOT/usr/bin
fi &&
-if ("IPUTILS_ARPING" == "y") then
+if [ "$IPUTILS_ARPING" == "y" ]; then
install -m 4755 arping $INSTALL_ROOT/usr/bin
fi &&
-if ("IPUTILS_CDIFF" == "y") then
+if [ "$IPUTILS_CDIFF" == "y" ]; then
install -m 4755 clockdiff $INSTALL_ROOT/usr/bin
fi &&
-if ("IPUTILS_RARPD" == "y") then
+if [ "$IPUTILS_RARPD" == "y" ]; then
install -m 4755 rarpd $INSTALL_ROOT/usr/bin
fi &&
-if ("IPUTILS_TPATH" == "y") then
+if [ "$IPUTILS_TPATH" == "y" ]; then
install -m 4755 tracepath $INSTALL_ROOT/usr/bin
fi &&
-if ("IPUTILS_TPATH6" == "y") then
+if [ "$IPUTILS_TPATH6" == "y" ]; then
install -m 4755 tracepath6 $INSTALL_ROOT/usr/bin
fi &&
-if ("IPUTILS_TROUTE6" == "y") then
+if [ "$IPUTILS_TROUTE6" == "y" ]; then
install -m 4755 traceroute6 $INSTALL_ROOT/usr/bin
fi &&
-if ("IPUTILS_TFTPD" == "y") then
+if [ "$IPUTILS_TFTPD" == "y" ]; then
install -m 4755 tftpd $INSTALL_ROOT/usr/bin
fi &&
-if ("IPUTILS_RDISC" == "y") then
+if [ "$IPUTILS_RDISC" == "y" ]; then
install -m 4755 rdisc $INSTALL_ROOT/usr/bin
fi &&

if is_depends_enabled $SPELL opensp ; then
- if ("IPUTILS_PING" == "y") then
+ if [ "$IPUTILS_PING" == "y" ]; then
install -m 644 doc/ping.8 $INSTALL_ROOT/usr/share/man/man8/ping.8
fi &&
- if ("IPUTILS_PING6" == "y") then
+ if [ "$IPUTILS_PING6" == "y" ]; then
install -m 644 doc/ping.8 $INSTALL_ROOT/usr/share/man/man8/ping6.8
fi &&
- if ("IPUTILS_ARPING" == "y") then
+ if [ "$IPUTILS_ARPING" == "y" ]; then
install -m 644 doc/arping.8 $INSTALL_ROOT/usr/share/man/man8/arping.8
fi &&
- if ("IPUTILS_CDIFF" == "y") then
+ if [ "$IPUTILS_CDIFF" == "y" ]; then
install -m 644 doc/clockdiff.8
$INSTALL_ROOT/usr/share/man/man8/clockdiff.8
fi &&
- if ("IPUTILS_RARPD" == "y") then
+ if [ "$IPUTILS_RARPD" == "y" ]; then
install -m 644 doc/rarpd.8 $INSTALL_ROOT/usr/share/man/man8/rarpd.8
fi &&
- if ("IPUTILS_TPATH" == "y") then
+ if [ "$IPUTILS_TPATH" == "y" ]; then
install -m 644 doc/tracepath.8
$INSTALL_ROOT/usr/share/man/man8/tracepath.8
fi &&
- if ("IPUTILS_TPATH6" == "y") then
+ if [ "$IPUTILS_TPATH6" == "y" ]; then
install -m 644 doc/tracepath.8
$INSTALL_ROOT/usr/share/man/man8/tracepath6.8
fi &&
- if ("IPUTILS_TROUTE6" == "y") then
+ if [ "$IPUTILS_TROUTE6" == "y" ]; then
install -m 644 doc/traceroute6.8
$INSTALL_ROOT/usr/share/man/man8/traceroute6.8
fi &&
- if ("IPUTILS_TFTPD" == "y") then
+ if [ "$IPUTILS_TFTPD" == "y" ]; then
install -m 644 doc/tftpd.8 $INSTALL_ROOT/usr/share/man/man8/tftpd.8
fi &&
- if ("IPUTILS_RDISC" == "y") then
+ if [ "$IPUTILS_RDISC" == "y" ]; then
install -m 644 doc/rdisc.8 $INSTALL_ROOT/usr/share/man/man8/rdisc.8
fi
fi



  • [SM-Commit] GIT changes to master grimoire by Ladislav Hagara (589e578d22e75a81309cb201cf376a5327cded53), Ladislav Hagara, 07/11/2010

Archive powered by MHonArc 2.6.24.

Top of Page