summaryrefslogtreecommitdiffstats
path: root/package/tmsnc
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-11-30 11:20:47 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-11-30 11:20:47 +0000
commit74f4dbbe5ee39d00c828d31bd2eee37ef8d42fcb (patch)
tree1073adf3e4fff1cb7ae31836c8b8110812699890 /package/tmsnc
parentf0fbd29b199d4c6cd2c7f0406e7b6f9fe6bfa089 (diff)
Added elhttp and tmsnc
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2571 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/tmsnc')
-rw-r--r--package/tmsnc/Config.in6
-rw-r--r--package/tmsnc/Makefile60
-rw-r--r--package/tmsnc/ipkg/tmsnc.control9
3 files changed, 75 insertions, 0 deletions
diff --git a/package/tmsnc/Config.in b/package/tmsnc/Config.in
new file mode 100644
index 000000000..1485ff9b8
--- /dev/null
+++ b/package/tmsnc/Config.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
diff --git a/package/tmsnc/Makefile b/package/tmsnc/Makefile
new file mode 100644
index 000000000..72360ba88
--- /dev/null
+++ b/package/tmsnc/Makefile
@@ -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)
diff --git a/package/tmsnc/ipkg/tmsnc.control b/package/tmsnc/ipkg/tmsnc.control
new file mode 100644
index 000000000..065ed43f8
--- /dev/null
+++ b/package/tmsnc/ipkg/tmsnc.control
@@ -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