a9a6dcb51c
git-svn-id: svn://svn.openwrt.org/openwrt/packages@22750 3c298f89-4303-0410-b956-a3cf2f4a3e73
66 lines
1.5 KiB
Makefile
66 lines
1.5 KiB
Makefile
#
|
|
# Copyright (C) 2009-2010 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:=znc
|
|
PKG_VERSION:=0.078
|
|
PKG_RELEASE:=2
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=@SF/znc
|
|
PKG_MD5SUM:=b1379bd6609353ebbc8df7ec19bd004f
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/znc
|
|
SUBMENU:=Instant Messaging
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libopenssl +uclibcxx
|
|
TITLE:=ZNC
|
|
URL:=http://en.znc.in/
|
|
endef
|
|
|
|
define Package/znc/description
|
|
ZNC is an IRC bouncer with many advanced features like detaching,
|
|
multiple users, per channel playback buffer, SSL, IPv6, transparent DCC
|
|
bouncing, and c++ module support to name a few.
|
|
endef
|
|
|
|
CONFIGURE_VARS += \
|
|
CXX="$(TARGET_CROSS)-g++-uc"
|
|
CXXFLAGS="$(TARGET_CFLAGS) -fno-builtin -fno-rtti -nostdinc++" \
|
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
|
LDFLAGS="-nodefaultlibs -L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
|
LIBS="-luClibc++ -lm -lssl $(LIBGCC_S) -lc"
|
|
|
|
CONFIGURE_ARGS += \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
--disable-c-ares \
|
|
--disable-modules \
|
|
--disable-perl
|
|
|
|
MAKE_FLAGS += \
|
|
CXX="g++-uc"
|
|
|
|
define Build/Configure
|
|
$(call Build/Configure/Default,)
|
|
$(call libtool_disable_rpath)
|
|
endef
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/Default,)
|
|
endef
|
|
|
|
define Package/znc/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/znc $(1)/usr/bin/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,znc))
|