1
0
forked from ports/contrib

mtr: initial commit

This commit is contained in:
Mikhail Kolesnik 2008-11-11 15:43:34 +02:00
parent c986ac0408
commit 0726842cc6
3 changed files with 26 additions and 0 deletions

6
mtr/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwsr-xr-x root/root usr/bin/mtr
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man8/
-rw-r--r-- root/root usr/man/man8/mtr.8.gz

1
mtr/.md5sum Normal file
View File

@ -0,0 +1 @@
23baca52d0922c2ecba7eba05317868c mtr-0.75.tar.gz

19
mtr/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Matt's traceroute - network diagnostic tool
# URL: http://www.bitwizard.nl/mtr/
# Maintainer: Mikhail Kolesnik, mike at openbunker dot org
# Depends on:
name=mtr
version=0.75
release=1
source=(ftp://ftp.bitwizard.nl/mtr/$name-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/man \
--sbindir=/usr/bin \
--without-gtk
make
make DESTDIR=$PKG install
}