Author: sten Date: 2006-02-25 23:25:48 +0100 (Sat, 25 Feb 2006) New Revision: 840 Modified: crux-2.2/ports/opt/lsof/.footprint crux-2.2/ports/opt/lsof/Pkgfile Log: lsof: fix footprint; cosmetic Pkgfile fixes Modified: crux-2.2/ports/opt/lsof/.footprint =================================================================== --- crux-2.2/ports/opt/lsof/.footprint 2006-02-25 22:23:15 UTC (rev 839) +++ crux-2.2/ports/opt/lsof/.footprint 2006-02-25 22:25:48 UTC (rev 840) @@ -1,6 +1,6 @@ drwxr-xr-x root/root usr/ drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/man8/ --rwxr-xr-x root/root usr/man/man8/lsof.8.gz +-rw-r--r-- root/root usr/man/man8/lsof.8.gz drwxr-xr-x root/root usr/sbin/ -rwxr-xr-x root/root usr/sbin/lsof Modified: crux-2.2/ports/opt/lsof/Pkgfile =================================================================== --- crux-2.2/ports/opt/lsof/Pkgfile 2006-02-25 22:23:15 UTC (rev 839) +++ crux-2.2/ports/opt/lsof/Pkgfile 2006-02-25 22:25:48 UTC (rev 840) @@ -1,20 +1,20 @@ # Description: list open files # URL: http://freshmeat.net/projects/lsof/ -# Maintainer: -# Packager: Martin Opel, mo at obbl-net dot de +# Maintainer: sten, nick dot steeves at shaw dot ca +# Packager: name=lsof version=4.76 -release=1 +release=2 source=(http://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/lsof_$version.tar....) build() { - cd ${name}_${version} - tar xf ${name}_${version}_src.tar - cd ${name}_${version}_src + cd lsof_${version} + tar -xf lsof_${version}_src.tar + cd lsof_${version}_src yes "" | ./Configure linux sed -i -e "s/-DLINUXV/${CFLAGS} -DLINUXV/" Makefile make - install -D lsof $PKG/usr/sbin/lsof - install -D lsof.8 $PKG/usr/man/man8/lsof.8 + install -D -m 755 lsof $PKG/usr/sbin/lsof + install -D -m 644 lsof.8 $PKG/usr/man/man8/lsof.8 }