mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-20 02:44:59 +02:00
Add readline
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1169 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
2080f29355
commit
08b2fe4d4f
@ -105,6 +105,7 @@ source "package/libpng/Config.in"
|
|||||||
source "package/popt/Config.in" # libpopt
|
source "package/popt/Config.in" # libpopt
|
||||||
source "package/postgresql/Config.in" # libpq
|
source "package/postgresql/Config.in" # libpq
|
||||||
source "package/libpthread/Config.in"
|
source "package/libpthread/Config.in"
|
||||||
|
source "package/readline/Config.in" # libreadline
|
||||||
source "package/cyrus-sasl/Config.in" # libsasl2
|
source "package/cyrus-sasl/Config.in" # libsasl2
|
||||||
source "package/speex/Config.in" # libspeex
|
source "package/speex/Config.in" # libspeex
|
||||||
source "package/libusb/Config.in"
|
source "package/libusb/Config.in"
|
||||||
|
@ -80,6 +80,7 @@ package-$(BR2_PACKAGE_PPTP) += pptp
|
|||||||
package-$(BR2_PACKAGE_PPTPD) += pptpd
|
package-$(BR2_PACKAGE_PPTPD) += pptpd
|
||||||
package-$(BR2_PACKAGE_QUAGGA) += quagga
|
package-$(BR2_PACKAGE_QUAGGA) += quagga
|
||||||
package-$(BR2_PACKAGE_RADVD) += radvd
|
package-$(BR2_PACKAGE_RADVD) += radvd
|
||||||
|
package-$(BR2_PACKAGE_READLINE) += readline
|
||||||
package-$(BR2_PACKAGE_ROBOCFG) += robocfg
|
package-$(BR2_PACKAGE_ROBOCFG) += robocfg
|
||||||
package-$(BR2_PACKAGE_SABLEVM) += sablevm
|
package-$(BR2_PACKAGE_SABLEVM) += sablevm
|
||||||
package-$(BR2_PACKAGE_SABLEVM_CLASSPATH) += sablevm-classpath
|
package-$(BR2_PACKAGE_SABLEVM_CLASSPATH) += sablevm-classpath
|
||||||
|
20
package/readline/Config.in
Normal file
20
package/readline/Config.in
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
config BR2_PACKAGE_READLINE
|
||||||
|
bool
|
||||||
|
default n
|
||||||
|
depends BR2_PACKAGE_LIBREADLINE
|
||||||
|
|
||||||
|
config BR2_PACKAGE_LIBREADLINE
|
||||||
|
tristate "libreadline - Command lines edition library"
|
||||||
|
# default m if CONFIG_DEVEL
|
||||||
|
default n
|
||||||
|
select BR2_PACKAGE_READLINE
|
||||||
|
help
|
||||||
|
The 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.
|
||||||
|
|
||||||
|
http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
|
||||||
|
|
82
package/readline/Makefile
Normal file
82
package/readline/Makefile
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
# $Id$
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=readline
|
||||||
|
PKG_VERSION:=5.0
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_MD5SUM:=
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=@GNU/readline
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||||
|
|
||||||
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
|
$(eval $(call PKG_template,LIBREADLINE,libreadline,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.configured:
|
||||||
|
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(strip $(TARGET_CFLAGS))" \
|
||||||
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include" \
|
||||||
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
|
||||||
|
./configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--program-prefix="" \
|
||||||
|
--program-suffix="" \
|
||||||
|
--prefix=/usr \
|
||||||
|
--exec-prefix=/usr \
|
||||||
|
--bindir=/usr/bin \
|
||||||
|
--datadir=/usr/share \
|
||||||
|
--includedir=/usr/include \
|
||||||
|
--infodir=/usr/share/info \
|
||||||
|
--libdir=/usr/lib \
|
||||||
|
--libexecdir=/usr/lib \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--sbindir=/usr/sbin \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
$(DISABLE_LARGEFILE) \
|
||||||
|
$(DISABLE_NLS) \
|
||||||
|
--enable-shared \
|
||||||
|
--enable-static \
|
||||||
|
--with-curses \
|
||||||
|
);
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.built:
|
||||||
|
rm -rf $(PKG_INSTALL_DIR)
|
||||||
|
mkdir -p $(PKG_INSTALL_DIR)
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
|
all install
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(IPKG_LIBREADLINE):
|
||||||
|
install -m0755 -d $(IDIR_LIBREADLINE)/usr/lib
|
||||||
|
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/lib{history,readline}.so.* $(IDIR_LIBREADLINE)/usr/lib/
|
||||||
|
$(RSTRIP) $(IDIR_LIBREADLINE)
|
||||||
|
$(IPKG_BUILD) $(IDIR_LIBREADLINE) $(PACKAGE_DIR)
|
||||||
|
|
||||||
|
$(STAGING_DIR)/usr/lib/libreadline.so: $(PKG_BUILD_DIR)/.built
|
||||||
|
mkdir -p $(STAGING_DIR)/usr/include
|
||||||
|
cp -fpR $(PKG_INSTALL_DIR)/usr/include/readline $(STAGING_DIR)/usr/include/
|
||||||
|
mkdir -p $(STAGING_DIR)/usr/lib
|
||||||
|
cp -fpR $(PKG_INSTALL_DIR)/usr/lib/lib{history,readline}.{a,so*} $(STAGING_DIR)/usr/lib/
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
install-dev: $(STAGING_DIR)/usr/lib/libreadline.so
|
||||||
|
|
||||||
|
uninstall-dev:
|
||||||
|
rm -rf \
|
||||||
|
$(STAGING_DIR)/usr/include/readline \
|
||||||
|
$(STAGING_DIR)/usr/lib/lib{history,readline}.{a,so*} \
|
||||||
|
|
||||||
|
compile: install-dev
|
||||||
|
clean: uninstall-dev
|
8
package/readline/ipkg/libreadline.control
Normal file
8
package/readline/ipkg/libreadline.control
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
Package: libreadline
|
||||||
|
Priority: optional
|
||||||
|
Section: libs
|
||||||
|
Version: [TBDL]
|
||||||
|
Architecture: [TBDL]
|
||||||
|
Maintainer: Nico <nthill@free.fr>
|
||||||
|
Source: http://openwrt.org/cgi-bin/viewcvs.cgi/openwrt/package/readline/
|
||||||
|
Description: Command lines edition library
|
Loading…
Reference in New Issue
Block a user