summaryrefslogtreecommitdiffstats
path: root/base/readline
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:39:28 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 13:39:28 +0200
commita2a2b89094dc3305e25f48517bbbc1857c71e666 (patch)
tree5c5a5dd35cb59c84091d9c7c7f5af04e90292f3b /base/readline
parent3e6ab7733b1d8f099addc62aaf6c3518272a7711 (diff)
downloadnutyx-pakxe-a2a2b89094dc3305e25f48517bbbc1857c71e666.tar.gz
nutyx-pakxe-a2a2b89094dc3305e25f48517bbbc1857c71e666.tar.bz2
nutyx-pakxe-a2a2b89094dc3305e25f48517bbbc1857c71e666.tar.xz
nutyx-pakxe-a2a2b89094dc3305e25f48517bbbc1857c71e666.zip
Ajout de readline#6.0-1
Diffstat (limited to 'base/readline')
-rw-r--r--base/readline/.footprint42
-rw-r--r--base/readline/.md5sum2
-rwxr-xr-xbase/readline/Pkgfile33
3 files changed, 77 insertions, 0 deletions
diff --git a/base/readline/.footprint b/base/readline/.footprint
new file mode 100644
index 000000000..d1f663f27
--- /dev/null
+++ b/base/readline/.footprint
@@ -0,0 +1,42 @@
+drwxr-xr-x root/root lib/
+lrwxrwxrwx root/root lib/libhistory.so.6 -> libhistory.so.6.0
+-r-xr-xr-x root/root lib/libhistory.so.6.0
+lrwxrwxrwx root/root lib/libreadline.so.6 -> libreadline.so.6.0
+-r-xr-xr-x root/root lib/libreadline.so.6.0
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/include/readline/
+-rw-r--r-- root/root usr/include/readline/chardefs.h
+-rw-r--r-- root/root usr/include/readline/history.h
+-rw-r--r-- root/root usr/include/readline/keymaps.h
+-rw-r--r-- root/root usr/include/readline/readline.h
+-rw-r--r-- root/root usr/include/readline/rlconf.h
+-rw-r--r-- root/root usr/include/readline/rlstdc.h
+-rw-r--r-- root/root usr/include/readline/rltypedefs.h
+-rw-r--r-- root/root usr/include/readline/tilde.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libhistory.a
+lrwxrwxrwx root/root usr/lib/libhistory.so -> ../../lib/libhistory.so.6
+-rw-r--r-- root/root usr/lib/libreadline.a
+lrwxrwxrwx root/root usr/lib/libreadline.so -> ../../lib/libreadline.so.6
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/info/
+-rw-r--r-- root/root usr/share/info/history.info.gz
+-rw-r--r-- root/root usr/share/info/readline.info.gz
+-rw-r--r-- root/root usr/share/info/rluserman.info.gz
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man3/
+-rw-r--r-- root/root usr/share/man/man3/history.3.gz
+-rw-r--r-- root/root usr/share/man/man3/readline.3.gz
+drwxr-xr-x root/root usr/share/readline/
+-rw-r--r-- root/root usr/share/readline/excallback.c
+-rw-r--r-- root/root usr/share/readline/fileman.c
+-rw-r--r-- root/root usr/share/readline/histexamp.c
+-rw-r--r-- root/root usr/share/readline/manexamp.c
+-rw-r--r-- root/root usr/share/readline/rl-fgets.c
+-rw-r--r-- root/root usr/share/readline/rl.c
+-rw-r--r-- root/root usr/share/readline/rlcat.c
+-rw-r--r-- root/root usr/share/readline/rlevent.c
+-rw-r--r-- root/root usr/share/readline/rlptytest.c
+-rw-r--r-- root/root usr/share/readline/rltest.c
+-rw-r--r-- root/root usr/share/readline/rlversion.c
diff --git a/base/readline/.md5sum b/base/readline/.md5sum
new file mode 100644
index 000000000..3237c1275
--- /dev/null
+++ b/base/readline/.md5sum
@@ -0,0 +1,2 @@
+aada5f5c582a769735286e7ed1a80af7 readline-6.0-fixes-1.patch
+b7f65a48add447693be6e86f04a63019 readline-6.0.tar.gz
diff --git a/base/readline/Pkgfile b/base/readline/Pkgfile
new file mode 100755
index 000000000..3079d2c16
--- /dev/null
+++ b/base/readline/Pkgfile
@@ -0,0 +1,33 @@
+# Description: Jeux de librairies permetant l'historique des commande en ligne
+# URL: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on: grep
+
+name=readline
+version=6.0
+release=1
+source=( http://ftp.gnu.org/gnu/$name/$name-$version.tar.gz\
+ http://www.linuxfromscratch.org/patches/lfs/development/readline-$version-fixes-1.patch)
+build() {
+cd $name-$version
+sed -i '/MV.*old/d' Makefile.in
+sed -i '/{OLDSUFF}/c:' support/shlib-install
+patch -Np1 -i ../readline-$version-fixes-1.patch
+
+./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info \
+ --libdir=/lib
+make SHLIBS=-lncurses
+make DESTDIR=$PKG install
+
+mkdir -p $PKG/usr/lib
+mv -v $PKG/lib/lib{readline,history}.a $PKG/usr/lib
+rm -v $PKG/lib/lib{readline,history}.so
+ln -sfv ../../lib/libreadline.so.6 $PKG/usr/lib/libreadline.so
+ln -sfv ../../lib/libhistory.so.6 $PKG/usr/lib/libhistory.so
+if [ -f $PKG/usr/share/info/dir ]; then
+ rm $PKG/usr/share/info/dir
+fi
+}