Changeset 382b81d in freewrt


Ignore:
Timestamp:
May 22, 2007, 10:37:24 AM (19 years ago)
Author:
Waldemar Brodkorb <wbx@…>
Children:
533854e
Parents:
02fbe9d
Message:

add ruby and activate binutils, ruby is not useful on all systems, but useful f.e. on routerboard with 64 MB flash. reorder programming stuff in its own submenu

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

Location:
package
Files:
6 added
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • package/Config.in

    r02fbe9d r382b81d  
    4747menu "Applications"
    4848source "package/autossh/Config.in"
    49 #source "package/binutils/Config.in"
     49source "package/binutils/Config.in"
    5050source "package/bitchx/Config.in"
    5151source "package/bogofilter/Config.in"
     
    6363source "package/haserl/Config.in"
    6464source "package/irssi/Config.in"
    65 source "package/jamvm/Config.in"
    6665source "package/joe/Config.in"
    6766source "package/lcd4linux/Config.in"
    6867source "package/less/Config.in"
    6968source "package/logrotate/Config.in"
    70 source "package/lua/Config.in"
    7169source "package/mc/Config.in"
    72 source "package/microperl/Config.in"
    7370source "package/monit/Config.in"
    7471source "package/motion/Config.in"
     
    7875source "package/nano/Config.in"
    7976source "package/osiris/Config.in"
    80 source "package/php4/Config.in"
    81 source "package/php5/Config.in"
    8277source "package/procmail/Config.in"
    8378source "package/psybnc/Config.in"
    8479source "package/rrdtool/Config.in"
    8580source "package/rrdcollect/Config.in"
    86 #menu "sablevm........................... A Java Virtual Machine (JVM) implementation"
    87 source "package/sablevm/Config.in"
    88 source "package/sablevm-classpath/Config.in"
    89 source "package/libffi-sable/Config.in"
    90 #endmenu
    9181source "package/sane-backends/Config.in"
    9282source "package/screen/Config.in"
     
    251241endmenu
    252242
     243menu "Programming"
     244source "package/jamvm/Config.in"
     245source "package/lua/Config.in"
     246source "package/microperl/Config.in"
     247source "package/php4/Config.in"
     248source "package/php5/Config.in"
     249source "package/ruby/Config.in"
     250source "package/sablevm/Config.in"
     251source "package/sablevm-classpath/Config.in"
     252source "package/libffi-sable/Config.in"
     253endmenu
     254
    253255menu "Crypto"
    254256source "package/cryptsetup-luks/Config.in"
  • package/Makefile

    r02fbe9d r382b81d  
    1919package-$(FWRT_COMPILE_BC) += bc
    2020package-$(FWRT_COMPILE_BIND) += bind
    21 #package-$(FWRT_PACKAGE_BINUTILS) += binutils
     21package-$(FWRT_PACKAGE_BINUTILS) += binutils
    2222package-$(FWRT_PACKAGE_BITCHX) += bitchx
    2323package-$(FWRT_PACKAGE_BITLBEE) += bitlbee
     
    251251package-$(FWRT_PACKAGE_RRDCOLLECT) += rrdcollect
    252252package-$(FWRT_COMPILE_RRDTOOL) += rrdtool
     253package-$(FWRT_PACKAGE_RUBY) += ruby
    253254package-$(FWRT_COMPILE_RRS) += rrs
    254255package-$(FWRT_PACKAGE_RSYNC) += rsync
  • package/binutils/Config.in

    r02fbe9d r382b81d  
    11config FWRT_PACKAGE_BINUTILS
    2         prompt "binutils.............................. binary utilities (assembler,strip,nm,..)"
     2        prompt "binutils.......................... binary utilities (assembler,strip,nm,..)"
    33        tristate
    44        default n
  • package/binutils/Makefile

    r02fbe9d r382b81d  
    66
    77include ${TOPDIR}/rules.mk
    8 include ${TOPDIR}/toolchain/binutils/Makefile.inc
    98
    109PKG_NAME:=              binutils
    11 PKG_VERSION:=           ${BINUTILS_VERSION}
    12 PKG_RELEASE:=           ${BINUTILS_PATCHLEVEL}
    13 PKG_MD5SUM:=            ${BINUTILS_MD5SUM}
     10PKG_VERSION:=           2.16.1
     11PKG_RELEASE:=           2
     12PKG_MD5SUM:=            6a9d529efb285071dad10e1f3d2b2967
    1413PKG_SOURCE:=            ${PKG_NAME}-${PKG_VERSION}.tar.bz2
    15 PKG_SOURCE_URL:=        ${BINUTILS_SITE}
     14PKG_SOURCE_URL:=        http://ftp.gnu.org/gnu/binutils
    1615
    1716include ${TOPDIR}/mk/package.mk
     
    2019
    2120CONFIGURE_STYLE=        gnu
    22 CONFIGURE_ARGS+=        ${BINUTILS_CONFIGURE}
     21CONFIGURE_ARGS+=        --disable-werror
    2322BUILD_STYLE=            auto
    2423INSTALL_STYLE=          auto
     
    2928
    3029post-install:
     30        ${INSTALL_DIR} ${IDIR_BINUTILS}/usr/lib
     31        $(CP) ${WRKINST}/usr/lib/*.so ${IDIR_BINUTILS}/usr/lib
    3132        ${INSTALL_DIR} ${IDIR_BINUTILS}/usr/bin
    3233        ${INSTALL_BIN} ${WRKINST}/usr/bin/nm ${IDIR_BINUTILS}/usr/bin/
Note: See TracChangeset for help on using the changeset viewer.