Changeset 3a6fa5d in freewrt for package/nano


Ignore:
Timestamp:
Apr 11, 2007, 12:55:15 PM (19 years ago)
Author:
Ralph Paßgang <tha@…>
Children:
677c6ee
Parents:
fc604e1
Message:
  • now nano can be compiled to be as tiny as possible or to have some advanced features like line-wrapping, justify, tab-completion. -- Thx to Clemens Helfmeier for providing a patch --
  • updated nano to 2.0.4 (latest stable release)

git-svn-id: svn://www.freewrt.org/trunk/freewrt@2352 afb5a338-a214-0410-bd46-81f09a774fd1

Location:
package/nano
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • package/nano/Config.in

    rfc604e1 r3a6fa5d  
    99          http://www.nano-editor.org/
    1010
     11config FWRT_PACKAGE_NANO_TINY
     12        prompt "   only compile a minimal nano (using --enable-tiny)"
     13        bool
     14        default y
     15        depends FWRT_PACKAGE_NANO
     16        help
     17          If not selected, nano will support justify, line wrapping, tab completion and multiple open file buffers.
     18
  • package/nano/Makefile

    rfc604e1 r3a6fa5d  
    88
    99PKG_NAME:=              nano
    10 PKG_VERSION:=           2.0.3
     10PKG_VERSION:=           2.0.4
    1111PKG_RELEASE:=           1
    12 PKG_MD5SUM:=            b8e2c1450b36d21f9a82509da3e4d9b1
     12PKG_MD5SUM:=            8118d8521e121a37d05f5647d2784fa8
    1313PKG_SOURCE_URL:=        http://www.nano-editor.org/dist/v2.0
    1414
     
    1919CONFIGURE_STYLE:=       gnu
    2020CONFIGURE_ENV+=         ac_cv_header_regex_h=no
    21 CONFIGURE_ARGS+=        --enable-tiny \
    22                         --enable-nanorc \
     21CONFIGURE_ARGS+=        --enable-nanorc \
    2322                        --disable-glibtest \
    2423                        --disable-utf8 \
    2524                        --without-slang
     25ifeq (${FWRT_PACKAGE_NANO_TINY},y)
     26CONFIGURE_ARGS+=        --enable-tiny
     27else
     28CONFIGURE_ARGS+=        --disable-browser --disable-help --disable-mouse --disable-nls --disable-speller --disable-operatingdir --enable-multibuffer
     29endif
     30
    2631BUILD_STYLE:=           auto
    2732INSTALL_STYLE:=         auto
Note: See TracChangeset for help on using the changeset viewer.