net/usbip: add some upstream patches (sync to svn #152, may deal with issues of ...
[openwrt/svn-archive/archive.git] / net / ekg / Makefile
1 #
2 # Copyright (C) 2009-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=ekg
10 PKG_VERSION:=1.7
11 PKG_RELEASE:=2
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14 PKG_SOURCE_URL:=http://ekg.chmurka.net/
15 PKG_MD5SUM:=2aa92b56517fdf09d75519a105772b74
16
17 PKG_INSTALL:=1
18
19 include $(INCLUDE_DIR)/package.mk
20
21 define Package/ekg
22 SECTION:=net
23 CATEGORY:=Network
24 TITLE:=Eksperymentalny Klient Gadu-Gadu (Polish IM)
25 URL:=http://ekg.chmurka.net
26 DEPENDS:=+zlib +libncurses
27 endef
28
29 CONFIGURE_ARGS+= \
30 --without-c99-vsnprintf \
31 --without-bind \
32 --without-libgsm \
33 --without-libjpeg \
34 --without-libungif \
35 --without-openssl \
36 --disable-libgadu-openssl \
37 --enable-ui-ncurses \
38 --disable-ui-readline \
39
40 CONFIGURE_VARS+= \
41 CFLAGS="$$$$CFLAGS $(TARGET_CPPFLAGS)" \
42 CFLAGS_LIBGADU="$$$$CFLAGS $(TARGET_CPPFLAGS)" \
43
44 define Package/ekg/install
45 $(INSTALL_DIR) $(1)/usr/bin
46 $(CP) $(PKG_INSTALL_DIR)/usr/bin/ekg $(1)/usr/bin/
47 endef
48
49 $(eval $(call BuildPackage,ekg))