di: initial commit (version 4.9)

This commit is contained in:
Jose V Beneyto 2007-01-11 01:31:37 +01:00
parent 423f8b1c5d
commit b7a3e23213
3 changed files with 31 additions and 0 deletions

8
di/.footprint Normal file
View File

@ -0,0 +1,8 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/di
lrwxrwxrwx root/root usr/bin/mi -> di
drwxr-xr-x root/root usr/man/
drwxr-xr-x root/root usr/man/man1/
-rw-r--r-- root/root usr/man/man1/di.1.gz
lrwxrwxrwx root/root usr/man/man1/mi.1.gz -> di.1.gz

1
di/.md5sum Normal file
View File

@ -0,0 +1 @@
d71682678fc950b64f9ffff8a7587505 di-4.9.tar.gz

22
di/Pkgfile Normal file
View File

@ -0,0 +1,22 @@
# $Id: $
# Description: disk information utility, displaying everything (and more) that your 'df' command does.
# URL: http://www.gentoo.com/di/
# Maintainer: Jose V Beneyto, joberui at ei dot upv dot es
# Packager: Jose V Beneyto, joberui at ei dot upv dot es
# Depends on:
name=di
version=4.9
release=1
source=(http://www.gentoo.com/$name/$name-$version.tar.gz)
build() {
cd $name-$version
make
install -d $PKG/usr/bin
install -m 755 $name $PKG/usr/bin
ln -s $name $PKG/usr/bin/mi
install -d $PKG/usr/man/man1/
install -m 644 $name.1 $PKG/usr/man/man1
ln -s $name.1 $PKG/usr/man/man1/mi.1
}