2009-10-05 01:55:51 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2008 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=tntnet
|
2011-03-08 18:41:01 +02:00
|
|
|
PKG_VERSION:=2.0
|
2009-10-05 01:55:51 +03:00
|
|
|
PKG_RELEASE:=1
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://www.tntnet.org/download
|
2011-03-08 18:41:01 +02:00
|
|
|
PKG_MD5SUM:=8f7185eeed23e7ae6a9be314e2fc0d36
|
2009-10-05 01:55:51 +03:00
|
|
|
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
|
2009-10-05 16:32:24 +03:00
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
2009-10-05 01:55:51 +03:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-06 21:40:15 +02:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2009-10-05 01:55:51 +03:00
|
|
|
|
2010-01-31 15:36:30 +02:00
|
|
|
PKG_BUILD_DEPENDS:=cxxtools/host
|
|
|
|
|
2009-10-05 01:55:51 +03:00
|
|
|
TARGET_LDFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib
|
|
|
|
|
|
|
|
define Package/tntnet
|
|
|
|
TITLE:=tntnet
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
2010-01-21 13:07:03 +02:00
|
|
|
DEPENDS:=+zlib +cxxtools
|
2009-10-05 01:55:51 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
$(call Build/Configure/Default, \
|
|
|
|
--with-epoll=no \
|
|
|
|
--with-ssl=no \
|
|
|
|
--with-cgi=no \
|
|
|
|
--with-demos=no \
|
|
|
|
--with-server=no \
|
|
|
|
--with-sdk=no \
|
2010-01-21 13:07:03 +02:00
|
|
|
--disable-unittest \
|
2009-10-05 01:55:51 +03:00
|
|
|
)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/tnt $(1)/usr/include/
|
|
|
|
#$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtntnet.{a,so*,la} $(1)/usr/lib/ # no static library is created (bug?)
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtntnet.{so*,la} $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/tntnet/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libtntnet.so* $(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
2009-10-05 16:32:24 +03:00
|
|
|
$(eval $(call HostBuild))
|
2009-10-05 01:55:51 +03:00
|
|
|
$(eval $(call BuildPackage,tntnet))
|