mt-st: New port.

This commit is contained in:
Jose V Beneyto 2008-01-02 16:40:28 +01:00
parent b543c2a03c
commit d355d3f7f9
3 changed files with 30 additions and 0 deletions

9
mt-st/.footprint Normal file
View File

@ -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

1
mt-st/.md5sum Normal file
View File

@ -0,0 +1 @@
c80e992a8d16def7af7421549b26ce77 mt-st-0.9b.tar.gz

20
mt-st/Pkgfile Normal file
View File

@ -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/
}