summaryrefslogtreecommitdiff
path: root/package/weechat/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2009-05-24 22:14:13 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2009-05-24 22:14:13 +0200
commit8e09105ecbddd319a54dccaaf1e9f277bc44dfb4 (patch)
tree29c3788258b6bbd953d36dbf1386fb06ec58f7e8 /package/weechat/Makefile
parentbad63eb735b13e1f009a19af1dd810f7279c2ba1 (diff)
more gcc 4.4 issues on mips
- disable runit in busybox - update gmp to latest upstream - PKG_DEPEND -> PKG_DEPENDS
Diffstat (limited to 'package/weechat/Makefile')
-rw-r--r--package/weechat/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/package/weechat/Makefile b/package/weechat/Makefile
index 96a820fcf..be239b5b7 100644
--- a/package/weechat/Makefile
+++ b/package/weechat/Makefile
@@ -9,16 +9,15 @@ PKG_NAME:= weechat
PKG_VERSION:= 0.1.8
PKG_RELEASE:= 2
PKG_MD5SUM:= 73d6bc211ac32c597f0d278506480a20
-
MASTER_SITES:= http://weechat.flashtux.org/download/
include ${TOPDIR}/mk/package.mk
-PKG_DEPEND:= libncurses libiconv
+PKG_DEPENDS:= libncurses libiconv
ifeq (${ADK_COMPILE_WEECHAT_WITH_TLS},y)
ENABLE_TLS:= --with-libgnutls-prefix=${STAGING_DIR}/usr
-PKG_DEPEND+= gnutls
+PKG_DEPENDS+= gnutls
else
ENABLE_TLS:= --disable-gnutls
endif
@@ -26,10 +25,10 @@ endif
ifneq (${ADK_COMPILE_WEECHAT_WITH_LUA},y)
DISABLE_LUA:= --disable-lua
else
-PKG_DEPEND+= liblua
+PKG_DEPENDS+= liblua
endif
-$(eval $(call PKG_template,WEECHAT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPEND}))
+$(eval $(call PKG_template,WEECHAT,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS}))
CONFIGURE_STYLE:= gnu
CONFIGURE_ARGS+= ${ENABLE_TLS} \