summaryrefslogtreecommitdiff
path: root/package/mISDNuser
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-02-28 10:11:11 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2015-02-28 10:14:39 +0100
commit3b7e950a2a226d1344e78da8fb10e3cdb92f37a0 (patch)
tree2bda2f5203b3833e77529fe96884d56e69c8fca3 /package/mISDNuser
parent23cfddf360edbac12473a5c6f9e2d85b12992bb3 (diff)
cleanup phil's submissions
- use () instead of {} in make variables for now - use PKG_HASH instead of PKG_MD5SUM - update to latest upstream versions - use a newline between PKG_* variables and DISTFILES - use <pkgname>-install instead of post-install - use lowercase description texts only - fix some missing PKG_BUILDDEP - elfutils needs argp, which is not available in uClibc-ng, yet - PKG_HASH is not required for git sources
Diffstat (limited to 'package/mISDNuser')
-rw-r--r--package/mISDNuser/Makefile19
1 files changed, 11 insertions, 8 deletions
diff --git a/package/mISDNuser/Makefile b/package/mISDNuser/Makefile
index e4f2748ff..d840e2f24 100644
--- a/package/mISDNuser/Makefile
+++ b/package/mISDNuser/Makefile
@@ -7,26 +7,29 @@ PKG_NAME:= mISDNuser
PKG_VERSION:= 1_1_9
PKG_RELEASE:= 1
PKG_MD5SUM:= e174a60e7040c88d1184364714e55c1b
-PKG_DESCR:= mISDN (modular ISDN) kernel link library and includes, this is the out-of-tree 1.X version
+PKG_DESCR:= misdn kernel link library and includes, this is the out-of-tree version
PKG_SECTION:= net/voip
-PKG_DEPENDS:= mISDN
+PKG_DEPENDS:= misdn
PKG_BUILDDEP:= mISDN
PKG_URL:= http://www.misdn.org
PKG_SITES:= http://www.misdn.org/downloads/releases/
PKG_NOPARALLEL:= 1
+PKG_CFLINE_MISDNUSER:= depends on ADK_BROKEN
+
include $(ADK_TOPDIR)/mk/package.mk
-$(eval $(call PKG_template,MISDNUSER,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(eval $(call PKG_template,MISDNUSER,misdnuser,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION)))
CONFIG_STYLE:= manual
-XAKE_FLAGS+= MISDNDIR=${STAGING_TARGET_DIR}/usr INSTALL_PREFIX=${WRKINST}
+XAKE_FLAGS+= MISDNDIR=$(STAGING_TARGET_DIR)/usr INSTALL_PREFIX=$(WRKINST)
-post-install:
+misdnuser-install:
$(INSTALL_DIR) $(IDIR_MISDNUSER)/usr/{bin,lib}
$(INSTALL_BIN) $(WRKINST)/usr/bin/{loadfirm,mISDNdebugtool,misdnportinfo} \
- ${WRKINST}/usr/bin/{sendhwctrl,testcon*,testlayer*} \
$(IDIR_MISDNUSER)/usr/bin/
- ${INSTALL_DATA} ${WRKINST}/usr/lib/*.so ${IDIR_MISDNUSER}/usr/lib/
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/{sendhwctrl,testcon*,testlayer*} \
+ $(IDIR_MISDNUSER)/usr/bin/
+ $(CP) $(WRKINST)/usr/lib/*.so* $(IDIR_MISDNUSER)/usr/lib/
-include ${ADK_TOPDIR}/mk/pkg-bottom.mk
+include $(ADK_TOPDIR)/mk/pkg-bottom.mk