summaryrefslogtreecommitdiffstats
path: root/meta/packages/readline/readline_4.3.bb
diff options
context:
space:
mode:
authorSamuel Ortiz <sameo@openedhand.com>2008-10-07 22:34:01 +0000
committerSamuel Ortiz <sameo@openedhand.com>2008-10-07 22:34:01 +0000
commit95857f6cadeff0471d4f877a97612a58a95b5bf2 (patch)
treee0281a390b88f17452c8b0b39a175c23e36af4fd /meta/packages/readline/readline_4.3.bb
parentc16dee4ff920ae0cf2004f94270b7906f180a570 (diff)
downloadpoky-95857f6cadeff0471d4f877a97612a58a95b5bf2.tar.gz
readline: bump to the latest 5.2
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@5438 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/readline/readline_4.3.bb')
-rw-r--r--meta/packages/readline/readline_4.3.bb34
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/packages/readline/readline_4.3.bb b/meta/packages/readline/readline_4.3.bb
deleted file mode 100644
index 6dfce726fe..0000000000
--- a/meta/packages/readline/readline_4.3.bb
+++ /dev/null
@@ -1,34 +0,0 @@
1DESCRIPTION = "The GNU Readline library provides a set of functions for use by applications that allow users to edit \
2command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes \
3additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those \
4lines, and perform csh-like history expansion on previous commands."
5SECTION = "libs"
6PRIORITY = "optional"
7LICENSE = "GPLv2"
8DEPENDS += "ncurses"
9RPROVIDES_${PN} += "readline"
10LEAD_SONAME = "libreadline.so"
11PR = "r3"
12
13SRC_URI = "ftp://ftp.cwru.edu/pub/bash/readline-${PV}.tar.gz \
14 file://shlink-termcap.patch;patch=1 \
15 file://acinclude.m4"
16S = "${WORKDIR}/readline-${PV}"
17
18inherit autotools
19
20do_configure () {
21 install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/
22 autotools_do_configure
23}
24
25do_stage() {
26 autotools_stage_all
27}
28
29do_install () {
30 autotools_do_install
31 # Make install doesn't properly install these
32 oe_libinstall -so -C shlib libhistory ${D}${libdir}
33 oe_libinstall -so -C shlib libreadline ${D}${libdir}
34}