From: Jose V Beneyto Date: Mon, 14 Dec 2009 16:32:26 +0000 (+0100) Subject: procps: updated to 3.2.8 and fixed arch maintainer's email X-Git-Url: http://gitweb/?a=commitdiff_plain;h=2b65c71bf20237dea3ddd7a99e12d0300c6f4e72;hp=a7e94ed1c41826cd51145058ee6b9c3e64c89fd5;p=crossrootfs.git procps: updated to 3.2.8 and fixed arch maintainer's email --- diff --git a/nasm/.footprint b/nasm/.footprint deleted file mode 100644 index 569b320..0000000 --- a/nasm/.footprint +++ /dev/null @@ -1,8 +0,0 @@ -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/nasm --rwxr-xr-x root/root usr/bin/ndisasm -drwxr-xr-x root/root usr/man/ -drwxr-xr-x root/root usr/man/man1/ --rw-r--r-- root/root usr/man/man1/nasm.1.gz --rw-r--r-- root/root usr/man/man1/ndisasm.1.gz diff --git a/nasm/.md5sum b/nasm/.md5sum deleted file mode 100644 index 225cf66..0000000 --- a/nasm/.md5sum +++ /dev/null @@ -1 +0,0 @@ -d8934231e81874c29374ddef1fbdb1ed nasm-2.07.tar.bz2 diff --git a/nasm/Pkgfile b/nasm/Pkgfile deleted file mode 100644 index e064411..0000000 --- a/nasm/Pkgfile +++ /dev/null @@ -1,19 +0,0 @@ -# Description: 80x86 assembler -# URL: http://www.nasm.us/ -# Maintainer: CRUX System Team, core-ports at crux dot nu -# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org - -name=nasm -version=2.07 -release=1 -source=(http://www.nasm.us/pub/nasm/releasebuilds/$version/$name-$version.tar.bz2) - -build() { - cd $name-$version - ./configure --build=$CHOST \ - --host=$CTARGET \ - --prefix=/usr \ - --mandir=/usr/man - make - make INSTALLROOT=$PKG install -} diff --git a/procps/.footprint b/procps/.footprint index cfa201c..8468836 100644 --- a/procps/.footprint +++ b/procps/.footprint @@ -3,7 +3,7 @@ drwxr-xr-x root/root bin/ drwxr-xr-x root/root etc/ -rw-r--r-- root/root etc/sysctl.conf drwxr-xr-x root/root lib/ --rwxr-xr-x root/root lib/libproc-3.2.7.so +-rwxr-xr-x root/root lib/libproc-3.2.8.so drwxr-xr-x root/root sbin/ -rwxr-xr-x root/root sbin/sysctl drwxr-xr-x root/root usr/ diff --git a/procps/.md5sum b/procps/.md5sum index 8a69a34..01364b3 100644 --- a/procps/.md5sum +++ b/procps/.md5sum @@ -1,2 +1,2 @@ -f490bca772b16472962c7b9f23b1e97d procps-3.2.7.tar.gz +9532714b6846013ca9898984ba4cd7e0 procps-3.2.8.tar.gz 9875c218e1b14bee8f9f5800403a8a24 sysctl.conf diff --git a/procps/Pkgfile b/procps/Pkgfile index 174e2b8..4055085 100644 --- a/procps/Pkgfile +++ b/procps/Pkgfile @@ -1,28 +1,29 @@ # Description: The /proc file system utilities # URL: http://procps.sourceforge.net/ # Maintainer: CRUX System Team, core-ports at crux dot nu -# Arch Maintainer: CRUX ARM System Team +# Arch Maintainer: CRUX ARM System Team, crux-arm at mikeux dot dyndns dot org # Depends on: ncurses name=procps -version=3.2.7 +version=3.2.8 release=1 source=(http://procps.sourceforge.net/$name-$version.tar.gz \ sysctl.conf) build() { - cd $name-$version - make - make DESTDIR=$PKG \ - ldconfig=true \ - man1=$PKG/usr/man/man1/ \ - man5=$PKG/usr/man/man5/ \ - man8=$PKG/usr/man/man8/ \ - install - install -D -m644 ../sysctl.conf $PKG/etc/sysctl.conf - rm -f $PKG/bin/kill \ - $PKG/usr/man/man1/kill.1 - ln -sf pgrep $PKG/usr/bin/pkill - ln -sf skill $PKG/usr/bin/snice - chmod +w -R $PKG + cd $name-$version + + make + make DESTDIR=$PKG \ + ldconfig=true \ + man1=$PKG/usr/man/man1/ \ + man5=$PKG/usr/man/man5/ \ + man8=$PKG/usr/man/man8/ \ + install + install -D -m644 ../sysctl.conf $PKG/etc/sysctl.conf + + rm -f $PKG/bin/kill $PKG/usr/man/man1/kill.1 + ln -sf pgrep $PKG/usr/bin/pkill + ln -sf skill $PKG/usr/bin/snice + chmod +w -R $PKG }