aboutsummaryrefslogtreecommitdiffstats
path: root/recipes
diff options
context:
space:
mode:
authorChris Larson <chris_larson@mentor.com>2011-01-07 17:19:26 -0500
committerChris Larson <chris_larson@mentor.com>2011-01-07 17:20:25 -0500
commit7af84fb26f0beb18214579fbd42fde4d34ed584c (patch)
treefc56ad31450e7df25411b5b7085d4f1b56e7f08e /recipes
parent61884ba0b9677b81c5d8e87372684a62261e1753 (diff)
downloadopenembedded-7af84fb26f0beb18214579fbd42fde4d34ed584c.tar.gz
editline: add recipe, version 20100424-3.0
This is an autotooled/libtoolized port of the NetBSD libedit. Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'recipes')
-rw-r--r--recipes/editline/editline_20100424-3.0.bb25
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/editline/editline_20100424-3.0.bb b/recipes/editline/editline_20100424-3.0.bb
new file mode 100644
index 0000000000..9f9686b9ee
--- /dev/null
+++ b/recipes/editline/editline_20100424-3.0.bb
@@ -0,0 +1,25 @@
+inherit autotools pkgconfig
+
+DESCRIPTION = "This is an autotool- and libtoolized port of the NetBSD \
+Editline library (libedit)."
+HOMEPAGE = "http://www.thrysoee.dk/editline/"
+SECTION = "libs"
+LICENSE = "BSD"
+DEPENDS += "ncurses"
+PROVIDES += "libedit"
+RPROVIDES_${PN} += "libedit"
+PR = "r0"
+
+SRC_URI = "http://www.thrysoee.dk/editline/libedit-${PV}.tar.gz"
+SRC_URI[md5sum] = "eb4482139525beff12c8ef59f1a84aae"
+SRC_URI[sha256sum] = "602b385906b6057f52922afc42cafbceadd8bae4be43c9189ea7fa870a561d86"
+S = "${WORKDIR}/libedit-${PV}"
+
+ENABLE_WIDEC ?= "true"
+ENABLE_WIDEC[type] = "boolean"
+
+EXTRA_OECONF += "\
+ --with-gnu-ld \
+ ${@oe.utils.ifelse(oe.types.value('ENABLE_WIDEC', d), \
+ '--enable-widec', '')} \
+"