Changeset 3641

Show
Ignore:
Timestamp:
10/26/07 01:53:10 (1 year ago)
Author:
austriancoder
Message:

* update irssi to 0.8.12
* remove not needed patch
* irssi now depends on glib2 and !depends glib1
* remove CONFIGURE_ENV, as it workes without it
* remove wrong PKG_DEPENDS:= libpthread

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/Depends.mk

    r3603 r3641  
    6161iptables-snmp-compile: net-snmp-compile 
    6262iptraf-compile: ncurses-compile 
    63 irssi-compile: glib-compile ncurses-compile 
     63irssi-compile: glib2-compile ncurses-compile 
    6464jamvm-compile: libffi-sable-compile zlib-compile sablevm-classpath-compile 
    6565joe-compile: ncurses-compile 
  • trunk/freewrt/package/irssi/Config.in

    r2170 r3641  
    33        tristate 
    44        default n 
    5         select FWRT_PACKAGE_GLIB1 
     5        select FWRT_PACKAGE_GLIB2 
    66        select FWRT_PACKAGE_LIBNCURSES 
    77        help 
    88          IRC client for the text console 
    9            
     9         
    1010          http://irssi.org 
    1111 
  • trunk/freewrt/package/irssi/Makefile

    r2678 r3641  
    88 
    99PKG_NAME:=              irssi 
    10 PKG_VERSION:=           0.8.10 
     10PKG_VERSION:=           0.8.12 
    1111PKG_RELEASE:=           1 
    12 PKG_MD5SUM:=            38e616bccb6a34ff6d91690317c2fa19 
    13 DISTFILES:=             ${PKG_NAME}-${PKG_VERSION}a.tar.bz2 
     12PKG_MD5SUM:=            e407b557b3cfc7c91ce4de2571dd79cb 
     13DISTFILES:=             ${PKG_NAME}-${PKG_VERSION}.tar.bz2 
    1414MASTER_SITES:=          http://irssi.org/files/ 
    15 PKG_DEPENDS:=           glib1, libpthread, libncurses 
     15PKG_DEPENDS:=           glib2, libncurses 
    1616 
    1717include ${TOPDIR}/mk/package.mk 
     
    2020 
    2121CONFIGURE_STYLE=        gnu 
    22 CONFIGURE_ENV+=         ac_cv_c_bigendian=no \ 
    23                         ac_cv_sizeof_off_t=8 
    2422CONFIGURE_ARGS+=        --with-perl=no \ 
    25                         --with-glib1 \ 
    2623                        --with-gnu-ld \ 
    2724                        --with-textui \ 
    28                         --without-terminfo \ 
     25                        --with-terminfo \ 
    2926                        --without-bot \ 
    30                         --without-file-offset-size \ 
    31                         --disable-proxy \ 
    32                         --enable-static \ 
    33                         --with-glib-prefix='${STAGING_DIR}/usr' 
     27                        --without-proxy \ 
     28                        --enable-static 
    3429BUILD_STYLE=            auto 
    3530 
    3631ifeq (${FWRT_PACKAGE_IRSSI_SSL},y) 
    37 CONFIGURE_ARGS+=        --with-ssl='${STAGING_DIR}/usr' 
     32CONFIGURE_ARGS+=        --enable-ssl 
    3833PKG_DEPENDS:=           ${PKG_DEPENDS}, openssl 
    3934else 
    40 CONFIGURE_ARGS+=        --without-ssl 
     35CONFIGURE_ARGS+=        --disable-ssl 
    4136endif 
    4237