2010-02-18 13:10:21 +00:00
|
|
|
#
|
|
|
|
# Copyright (C) 2009-2010 OpenWrt.org
|
2009-09-24 20:39:20 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ekg
|
|
|
|
PKG_VERSION:=1.7
|
2010-02-18 13:10:21 +00:00
|
|
|
PKG_RELEASE:=2
|
2009-09-24 20:39:20 +00:00
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://ekg.chmurka.net/
|
|
|
|
PKG_MD5SUM:=2aa92b56517fdf09d75519a105772b74
|
|
|
|
|
2010-02-18 13:10:21 +00:00
|
|
|
PKG_INSTALL:=1
|
2010-11-02 16:06:08 +00:00
|
|
|
PKG_BUILD_PARALLEL:=1
|
2010-02-18 13:10:21 +00:00
|
|
|
|
2009-09-24 20:39:20 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/ekg
|
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Network
|
|
|
|
TITLE:=Eksperymentalny Klient Gadu-Gadu (Polish IM)
|
|
|
|
URL:=http://ekg.chmurka.net
|
|
|
|
DEPENDS:=+zlib +libncurses
|
|
|
|
endef
|
|
|
|
|
2009-10-06 15:14:00 +00:00
|
|
|
CONFIGURE_ARGS+= \
|
2009-09-24 20:39:20 +00:00
|
|
|
--without-c99-vsnprintf \
|
2009-10-06 15:14:00 +00:00
|
|
|
--without-bind \
|
|
|
|
--without-libgsm \
|
2009-09-24 20:39:20 +00:00
|
|
|
--without-libjpeg \
|
2009-10-06 15:14:00 +00:00
|
|
|
--without-libungif \
|
2009-09-24 20:39:20 +00:00
|
|
|
--without-openssl \
|
|
|
|
--disable-libgadu-openssl \
|
|
|
|
--enable-ui-ncurses \
|
|
|
|
--disable-ui-readline \
|
2009-10-06 15:14:00 +00:00
|
|
|
|
|
|
|
CONFIGURE_VARS+= \
|
|
|
|
CFLAGS="$$$$CFLAGS $(TARGET_CPPFLAGS)" \
|
|
|
|
CFLAGS_LIBGADU="$$$$CFLAGS $(TARGET_CPPFLAGS)" \
|
|
|
|
|
2009-09-24 20:39:20 +00:00
|
|
|
define Package/ekg/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2009-10-06 15:14:00 +00:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/ekg $(1)/usr/bin/
|
2009-09-24 20:39:20 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ekg))
|