X-Git-Url: http://gitweb/?a=blobdiff_plain;f=diffutils%2FPkgfile;h=b45620aaebc05d6652ace085f16a8914550ef713;hb=f93ac89b7406a1ebc5d097dd357fbec8af833234;hp=c11634328250211485c7e3b5a0bb82eefd732fac;hpb=54ce0900a3359ed995a360d908dc256efab5391c;p=crossrootfs.git

diff --git a/diffutils/Pkgfile b/diffutils/Pkgfile
index c116343..b45620a 100644
--- a/diffutils/Pkgfile
+++ b/diffutils/Pkgfile
@@ -1,22 +1,28 @@
 # Description: Package with the GNU diff, diff3, sdiff, and cmp utilities
 # URL: http://www.gnu.org/software/diffutils/
 # Maintainer: CRUX System Team, core-ports at crux dot nu
-# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
 # Depends on:
 
 name=diffutils
-version=2.9
-release=1
+version=3.2
+release=2
 source=(http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz)
 
 build() {
   cd $name-$version
+
+  # fix for glibc 'gets' removal
+  sed -i -e '/gets is a/d' lib/stdio.in.h
+
   ./configure --build=$CHOST \
               --host=$CTARGET \
               --prefix=/usr \
               --mandir=$PKG/usr/man \
               --disable-nls
+
   make
   make prefix=$PKG/usr install
+
   rm -rf $PKG/usr/share
 }