aboutsummaryrefslogtreecommitdiff
path: root/network/mtr
diff options
context:
space:
mode:
Diffstat (limited to 'network/mtr')
-rw-r--r--network/mtr/mtr-0.84-desktop.patch.xzbin0 -> 3616 bytes
-rw-r--r--network/mtr/mtr-0.84-notermcap.patch.xzbin0 -> 340 bytes
-rwxr-xr-xnetwork/mtr/mtr.build63
3 files changed, 63 insertions, 0 deletions
diff --git a/network/mtr/mtr-0.84-desktop.patch.xz b/network/mtr/mtr-0.84-desktop.patch.xz
new file mode 100644
index 0000000..7a90057
--- /dev/null
+++ b/network/mtr/mtr-0.84-desktop.patch.xz
Binary files differ
diff --git a/network/mtr/mtr-0.84-notermcap.patch.xz b/network/mtr/mtr-0.84-notermcap.patch.xz
new file mode 100644
index 0000000..0a5a7e0
--- /dev/null
+++ b/network/mtr/mtr-0.84-notermcap.patch.xz
Binary files differ
diff --git a/network/mtr/mtr.build b/network/mtr/mtr.build
new file mode 100755
index 0000000..f90a2eb
--- /dev/null
+++ b/network/mtr/mtr.build
@@ -0,0 +1,63 @@
+#!/bin/bash
+#
+# Maintainer: Deposite Pirate <ofni.sknuplatem@etaripd>
+
+source /usr/src/ports/Build/build.sh
+
+NAME=mtr
+VERSION=0.84
+BUILD=1
+DEPENDS=('gtk+ >= 2.24.14-1')
+
+# Description
+
+cat > ${PKG}/install/slack-desc <<EOF
+# HOW TO EDIT THIS FILE:
+# The "handy ruler" below makes it easier to edit a package description. Line
+# up the first '|' above the ':' following the base package name, and the '|'
+# on the right side marks the last column you can put a character in. You must
+# make exactly 11 lines for the formatting to be correct. It's also
+# customary to leave one space after the ':'.
+
+$(padd)|-----handy-ruler------------------------------------------------------|
+${NAME}: mtr
+${NAME}:
+${NAME}: Mtr combines the functionality of the 'traceroute' and 'ping'
+${NAME}: programs in a single X Windows-based network diagnostic tool. As mtr
+${NAME}: starts, it investigates the network connection between the host mtr
+${NAME}: runs on and a user-specified destination host. After it determines
+${NAME}: the address of each network hop between machines, it sends a
+${NAME}: sequence ICMP ECHO requests to each one to determine the quality of
+${NAME}: the link to each machine.
+${NAME}:
+${NAME}: Homepage: http://www.bitwizard.nl/mtr
+EOF
+
+# Sources
+
+SRCNAME[0]=${NAME}
+SRCVERS[0]=${VERSION}
+SRCPACK[0]=ftp://ftp.bitwizard.nl/${SRCNAME[0]}/${SRCNAME[0]}-${SRCVERS[0]}.tar.gz
+SRCCOPY[0]="GPL2"
+
+build0()
+{
+LDFLAGS="-Wl,--as-needed" \
+CFLAGS="${FLAGS}" CXXFLAGS="${FLAGS}" \
+./configure \
+ --build="${ARCH}-slackware-linux" \
+ --disable-dependency-tracking \
+ --prefix="${SYS_DIR[usr]}" \
+ --mandir="${SYS_DIR[man]}" \
+ --sysconfdir="${SYS_DIR[etc]}" \
+ --libdir="${SYS_DIR[lib]}" \
+ --localstatedir="${SYS_DIR[var]}" \
+ --sbindir="${SYS_DIR[bin]}"
+make ${JOBS}
+make install DESTDIR="${PKG}"
+doc AUTHORS
+changelog NEWS
+install.dir ${PKG}${SYS_DIR[share]}/{applications,icons/hicolor/48x48/apps}
+install.dat mtr.desktop ${PKG}${SYS_DIR[share]}/applications
+install.dat mtr.png ${PKG}${SYS_DIR[share]}/icons/hicolor/48x48/apps
+}