diff options
author | Jose V Beneyto <joberui@ei.upv.es> | 2008-01-02 16:40:28 +0100 |
---|---|---|
committer | Jose V Beneyto <joberui@ei.upv.es> | 2008-01-02 16:40:28 +0100 |
commit | d355d3f7f90ccdef3668ec08bde44092481bce1e (patch) | |
tree | ded77579372c3083bcba9dbf5792bdd9fa56865f /mt-st | |
parent | b543c2a03c97b1badd0725b403095e4fd99fc35a (diff) | |
download | contrib-d355d3f7f90ccdef3668ec08bde44092481bce1e.tar.gz contrib-d355d3f7f90ccdef3668ec08bde44092481bce1e.tar.xz |
mt-st: New port.
Diffstat (limited to 'mt-st')
-rw-r--r-- | mt-st/.footprint | 9 | ||||
-rw-r--r-- | mt-st/.md5sum | 1 | ||||
-rw-r--r-- | mt-st/Pkgfile | 20 |
3 files changed, 30 insertions, 0 deletions
diff --git a/mt-st/.footprint b/mt-st/.footprint new file mode 100644 index 000000000..68972b48a --- /dev/null +++ b/mt-st/.footprint @@ -0,0 +1,9 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/mt +-rwxr-xr-x root/root usr/bin/stinit +drwxr-xr-x root/root usr/man/ +drwxr-xr-x root/root usr/man/man1/ +-rw-r--r-- root/root usr/man/man1/mt.1.gz +drwxr-xr-x root/root usr/man/man8/ +-rw-r--r-- root/root usr/man/man8/stinit.8.gz diff --git a/mt-st/.md5sum b/mt-st/.md5sum new file mode 100644 index 000000000..19a511384 --- /dev/null +++ b/mt-st/.md5sum @@ -0,0 +1 @@ +c80e992a8d16def7af7421549b26ce77 mt-st-0.9b.tar.gz diff --git a/mt-st/Pkgfile b/mt-st/Pkgfile new file mode 100644 index 000000000..f6cd4fb82 --- /dev/null +++ b/mt-st/Pkgfile @@ -0,0 +1,20 @@ +# Description: controls magnetic tape drive operation (SCSI & QIC-02) +# URL: ftp://ftp.ibiblio.org/pub/linux/system/backup/ +# Maintainer: Jose V Beneyto, sepen at users dot sourceforge dot net +# Packager: Manuel Ruiz, manuel dot tienza at gmail dot com +# Depends on: + +name=mt-st +version=0.9b +release=2 +source=(http://www.ibiblio.org/pub/Linux/system/backup/$name-$version.tar.gz) + +build() { + cd $name-$version + sed -e 's|<linux/qic117.h>|"qic117.h"|g' -i mtio.h + make CFLAGS="$CFLAGS" CC=gcc + mkdir -p $PKG/usr/{bin,man/man1,man/man8} + cp mt stinit $PKG/usr/bin/ + cp mt.1 $PKG/usr/man/man1/ + cp stinit.8 $PKG/usr/man/man8/ +} |