mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
Added elhttp and tmsnc
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2571 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
config BR2_PACKAGE_TMSNC
|
||||
tristate "text-based MSN client"
|
||||
default m if CONFIG_DEVEL
|
||||
TMSNC is a textbased (console) MSN client written in C.
|
||||
|
||||
http://tmsnc.sourceforge.net
|
||||
@@ -0,0 +1,60 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=tmsnc
|
||||
PKG_VERSION:=0.3.0
|
||||
PKG_RELEASE:=2
|
||||
PKG_MD5SUM:=cc1791dc5be267d272c9b2927c585f6e
|
||||
PKG_SOURCE_URL:=@SF/tmsnc
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_CAT:=zcat
|
||||
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
|
||||
|
||||
include $(TOPDIR)/package/rules.mk
|
||||
|
||||
$(eval $(call PKG_template,TMSNC,tmsnc,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured:
|
||||
(cd $(PKG_BUILD_DIR); rm -rf config.{cache,status} ; \
|
||||
ac_cv_func_malloc_0_nonnull=yes \
|
||||
ac_cv_func_realloc_0_nonnull=yes \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(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) \
|
||||
--prefix=/usr \
|
||||
--exec-prefix=/usr \
|
||||
--bindir=/usr/bin \
|
||||
--sbindir=/usr/sbin \
|
||||
--libexecdir=/usr/lib \
|
||||
--sysconfdir=/etc \
|
||||
--datadir=/usr/share \
|
||||
--localstatedir=/var \
|
||||
--mandir=/usr/man \
|
||||
--infodir=/usr/info \
|
||||
$(DISABLE_NLS) \
|
||||
--with-libiconv-prefix=$(STAGING_DIR)/usr \
|
||||
--with-openssl=$(STAGING_DIR)/usr \
|
||||
--with-ncurses=$(STAGING_DIR) \
|
||||
--with-gnu-ld \
|
||||
)
|
||||
touch $@
|
||||
|
||||
$(PKG_BUILD_DIR)/.built:
|
||||
mkdir -p $(PKG_INSTALL_DIR)
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||
install
|
||||
rm -rf $(PKG_INSTALL_DIR)/usr/man
|
||||
touch $@
|
||||
|
||||
$(IPKG_TMSNC):
|
||||
mkdir -p $(IDIR_TMSNC)
|
||||
cp -fpR $(PKG_INSTALL_DIR)/* $(IDIR_TMSNC)/
|
||||
$(RSTRIP) $(IDIR_TMSNC)
|
||||
$(IPKG_BUILD) $(IDIR_TMSNC) $(PACKAGE_DIR)
|
||||
@@ -0,0 +1,9 @@
|
||||
Package: tmsnc
|
||||
Priority: optional
|
||||
Section: net
|
||||
Maintainer: Florian Fainelli <florian@alphacore.net>
|
||||
Source: http://tmsnc.sourceforge.net
|
||||
Priority: optional
|
||||
Section: net
|
||||
Description: TMSNC is a textbased (console) MSN client written in C. TMSNC should work on most Unix (Linux, BSD, MacOS) compatible operating systems. The goal of this project is to create a client like MSN Messenger (with sound, webcam and file transfer support), but without any graphical features.
|
||||
Depends: libncurses, libopenssl
|
||||
Reference in New Issue
Block a user