OpenWrt – Diff between revs 2 and 3

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 2 Rev 3
Line 6... Line 6...
6 # 6 #
Line 7... Line 7...
7   7  
Line 8... Line 8...
8 include $(TOPDIR)/rules.mk 8 include $(TOPDIR)/rules.mk
9   9  
10 PKG_NAME:=readline 10 PKG_NAME:=readline
Line 11... Line 11...
11 PKG_VERSION:=8.0 11 PKG_VERSION:=7.0
12 PKG_RELEASE:=1 12 PKG_RELEASE:=1
13   13  
Line 14... Line 14...
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz 14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=@GNU/readline 15 PKG_SOURCE_URL:=@GNU/readline
16 PKG_HASH:=e339f51971478d369f8a053a330a190781acb9864cf4c541060f12078948e461 16 PKG_HASH:=750d437185286f40a369e1e4f4764eda932b9459b5ec9a731628393dd3d32334
Line 17... Line 17...
17   17  
-   18 PKG_LICENSE:=GPL-3.0
18 PKG_LICENSE:=GPL-3.0 19 PKG_LICENSE_FILES:=COPYING
Line 19... Line 20...
19 PKG_LICENSE_FILES:=COPYING 20 PKG_CPE_ID:=cpe:/a:gnu:readline
20 PKG_CPE_ID:=cpe:/a:gnu:readline 21  
Line 21... Line 22...
21   22 PKG_BUILD_PARALLEL:=1
22 PKG_BUILD_PARALLEL:=1 23 PKG_FIXUP:=autoreconf
23 PKG_INSTALL:=1 24 PKG_INSTALL:=1
24   25  
25 include $(INCLUDE_DIR)/package.mk -  
26 include $(INCLUDE_DIR)/host-build.mk 26 include $(INCLUDE_DIR)/package.mk
27   27 include $(INCLUDE_DIR)/host-build.mk
28 define Package/libreadline 28  
Line 29... Line 29...
29 SECTION:=libs 29 define Package/libreadline
30 CATEGORY:=Libraries 30 SECTION:=libs
31 TITLE:=Command lines edition library 31 CATEGORY:=Libraries
32 DEPENDS:=+libncursesw 32 TITLE:=Command lines edition library
33 URL:=http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html 33 URL:=http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html
34 ABI_VERSION:=8 34 ABI_VERSION:=$(PKG_VERSION)
35 endef 35 endef
36   36  
Line 37... Line 37...
37 define Package/libreadline/description 37 define Package/libreadline/description
-   38 The Readline library provides a set of functions for use by applications
-   39 that allow users to edit command lines as they are typed in. Both Emacs
-   40 and vi editing modes are available. The Readline library includes
-   41 additional functions to maintain a list of previously-entered command
-   42 lines, to recall and perhaps reedit those lines, and perform csh-like
-   43 history expansion on previous commands.
Line 38... Line 44...
38 The Readline library provides a set of functions for use by applications 44 endef
39 that allow users to edit command lines as they are typed in. Both Emacs 45  
40 and vi editing modes are available. The Readline library includes 46 # prevent "autoreconf" from removing "aclocal.m4"
Line -... Line 47...
-   47 PKG_REMOVE_FILES:=
-   48  
41 additional functions to maintain a list of previously-entered command 49 CONFIGURE_ARGS += \
Line 42... Line 50...
42 lines, to recall and perhaps reedit those lines, and perform csh-like 50 --enable-shared \
43 history expansion on previous commands. 51 --enable-static \
44 endef 52 --with-curses \
45   53  
46 CONFIGURE_ARGS += --with-curses --disable-install-examples 54 CONFIGURE_VARS += \
47   -  
48 CONFIGURE_VARS += \ 55 bash_cv_wcwidth_broken=no \
Line 49... Line 56...
49 bash_cv_wcwidth_broken=no \ 56 bash_cv_func_sigsetjmp=yes \
50 bash_cv_func_sigsetjmp=yes \ 57  
51   58 TARGET_CPPFLAGS:=-I. -I.. $(TARGET_CPPFLAGS)
52 TARGET_CFLAGS += $(FPIC) 59  
Line 53... Line 60...
53   60 TARGET_CFLAGS += $(FPIC)
54 define Build/InstallDev 61