summaryrefslogtreecommitdiffstats
path: root/base/diffutils
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:45:33 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:45:33 +0200
commit5429242e5fef7089548b0656c0fde7a5fb4d86c7 (patch)
treef2a5cd7a87da04e644dd04331a0ca1a2b740d315 /base/diffutils
parent33455a718762dfd898a9faf373ecd7ccfbff89dc (diff)
downloadnutyx-pakxe-5429242e5fef7089548b0656c0fde7a5fb4d86c7.tar.gz
nutyx-pakxe-5429242e5fef7089548b0656c0fde7a5fb4d86c7.tar.bz2
nutyx-pakxe-5429242e5fef7089548b0656c0fde7a5fb4d86c7.tar.xz
nutyx-pakxe-5429242e5fef7089548b0656c0fde7a5fb4d86c7.zip
Ajout de diffutils#2.8.1-1
Diffstat (limited to 'base/diffutils')
-rw-r--r--base/diffutils/.footprint19
-rw-r--r--base/diffutils/.md5sum2
-rwxr-xr-xbase/diffutils/Pkgfile25
3 files changed, 46 insertions, 0 deletions
diff --git a/base/diffutils/.footprint b/base/diffutils/.footprint
new file mode 100644
index 000000000..dfb868405
--- /dev/null
+++ b/base/diffutils/.footprint
@@ -0,0 +1,19 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/cmp
+-rwxr-xr-x root/root usr/bin/diff
+-rwxr-xr-x root/root usr/bin/diff3
+-rwxr-xr-x root/root usr/bin/sdiff
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/info/
+-rw-r--r-- root/root usr/share/info/diff.info.gz
+drwxr-xr-x root/root usr/share/locale/
+drwxr-xr-x root/root usr/share/locale/fr/
+drwxr-xr-x root/root usr/share/locale/fr/LC_MESSAGES/
+-rw-r--r-- root/root usr/share/locale/fr/LC_MESSAGES/diffutils.mo
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/cmp.1.gz
+-rw-r--r-- root/root usr/share/man/man1/diff.1.gz
+-rw-r--r-- root/root usr/share/man/man1/diff3.1.gz
+-rw-r--r-- root/root usr/share/man/man1/sdiff.1.gz
diff --git a/base/diffutils/.md5sum b/base/diffutils/.md5sum
new file mode 100644
index 000000000..fca2fad8b
--- /dev/null
+++ b/base/diffutils/.md5sum
@@ -0,0 +1,2 @@
+c8d481223db274a33b121fb8c25af9f7 diffutils-2.8.1-i18n-1.patch
+71f9c5ae19b60608f6c7f162da86a428 diffutils-2.8.1.tar.gz
diff --git a/base/diffutils/Pkgfile b/base/diffutils/Pkgfile
new file mode 100755
index 000000000..1550b7ef5
--- /dev/null
+++ b/base/diffutils/Pkgfile
@@ -0,0 +1,25 @@
+# Description: Programmes permettant de montrer la différence entre fichiers ou répertoires
+# URL: http://www.gnu.org/software/diffutils/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=diffutils
+version=2.8.1
+release=1
+source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz\
+ http://www.linuxfromscratch.org/patches/lfs/development/diffutils-$version-i18n-1.patch)
+
+build() {
+cd $name-$version
+patch -Np1 -i ../diffutils-$version-i18n-1.patch
+touch man/diff.1
+./configure --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man
+make
+make DESTDIR=$PKG install
+if [ -f $PKG/usr/share/info/dir ]; then
+ rm $PKG/usr/share/info/dir
+fi
+}