mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 00:59:48 +00:00
packages: Separate out most of the remaining packages into recipes
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,24 @@
|
||||
Without this it fails to link against libtermcap causing various missing symbols
|
||||
issues.
|
||||
|
||||
RP - 8/10/08
|
||||
|
||||
Index: readline-5.2/configure.in
|
||||
===================================================================
|
||||
--- readline-5.2.orig/configure.in 2008-10-08 09:58:52.000000000 +0100
|
||||
+++ readline-5.2/configure.in 2008-10-08 09:59:03.000000000 +0100
|
||||
@@ -211,10 +211,10 @@
|
||||
AC_MSG_CHECKING(configuration for building shared libraries)
|
||||
eval `TERMCAP_LIB=$TERMCAP_LIB ${CONFIG_SHELL-/bin/sh} ${srcdir}/support/shobj-conf -C "${CC}" -c ${host_cpu} -o ${host_os} -v ${host_vendor}`
|
||||
|
||||
-# case "$SHLIB_LIBS" in
|
||||
-# *curses*|*termcap*|*termlib*) ;;
|
||||
-# *) SHLIB_LIBS="$SHLIB_LIBS $TERMCAP_LIB" ;;
|
||||
-# esac
|
||||
+ case "$SHLIB_LIBS" in
|
||||
+ *curses*|*termcap*|*termlib*) ;;
|
||||
+ *) SHLIB_LIBS="$SHLIB_LIBS $TERMCAP_LIB" ;;
|
||||
+ esac
|
||||
|
||||
AC_SUBST(SHOBJ_CC)
|
||||
AC_SUBST(SHOBJ_CFLAGS)
|
||||
@@ -0,0 +1,34 @@
|
||||
DESCRIPTION = "The GNU Readline library provides a set of functions for use by applications that allow users to edit \
|
||||
command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes \
|
||||
additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those \
|
||||
lines, and perform csh-like history expansion on previous commands."
|
||||
SECTION = "libs"
|
||||
PRIORITY = "optional"
|
||||
|
||||
# GPLv2+ (< 6.0), GPLv3+ (>= 6.0)
|
||||
LICENSE = "GPLv3+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
||||
|
||||
DEPENDS += "ncurses"
|
||||
|
||||
SRC_URI = "${GNU_MIRROR}/readline/${BPN}-${PV}.tar.gz \
|
||||
file://configure-fix.patch \
|
||||
file://acinclude.m4"
|
||||
|
||||
S = "${WORKDIR}/${BPN}-${PV}"
|
||||
|
||||
inherit autotools
|
||||
|
||||
LEAD_SONAME = "libreadline.so"
|
||||
|
||||
do_configure_prepend () {
|
||||
install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/
|
||||
}
|
||||
|
||||
do_install_append () {
|
||||
# Make install doesn't properly install these
|
||||
oe_libinstall -so -C shlib libhistory ${D}${libdir}
|
||||
oe_libinstall -so -C shlib libreadline ${D}${libdir}
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
@@ -0,0 +1,35 @@
|
||||
DESCRIPTION = "The GNU Readline library provides a set of functions for use by applications that allow users to edit \
|
||||
command lines as they are typed in. Both Emacs and vi editing modes are available. The Readline library includes \
|
||||
additional functions to maintain a list of previously-entered command lines, to recall and perhaps reedit those \
|
||||
lines, and perform csh-like history expansion on previous commands."
|
||||
SECTION = "libs"
|
||||
|
||||
LICENSE = "GPLv2+"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=03b36fdd84f74b8d8189a202b980b67f"
|
||||
|
||||
DEPENDS += "ncurses"
|
||||
PRIORITY = "optional"
|
||||
|
||||
PR = "r6"
|
||||
|
||||
SRC_URI = "${GNU_MIRROR}/readline/${BPN}-${PV}.tar.gz \
|
||||
file://configure-fix.patch \
|
||||
file://acinclude.m4"
|
||||
|
||||
S = "${WORKDIR}/${BPN}-${PV}"
|
||||
|
||||
inherit autotools
|
||||
|
||||
LEAD_SONAME = "libreadline.so"
|
||||
|
||||
do_configure_prepend () {
|
||||
install -m 0644 ${WORKDIR}/acinclude.m4 ${S}/
|
||||
}
|
||||
|
||||
do_install_append () {
|
||||
# Make install doesn't properly install these
|
||||
oe_libinstall -so -C shlib libhistory ${D}${libdir}
|
||||
oe_libinstall -so -C shlib libreadline ${D}${libdir}
|
||||
}
|
||||
|
||||
BBCLASSEXTEND = "native nativesdk"
|
||||
@@ -0,0 +1,3 @@
|
||||
require readline.inc
|
||||
|
||||
PR = "r0"
|
||||
Reference in New Issue
Block a user