Changeset 1577
- Timestamp:
- 01/13/07 16:50:41 (2 years ago)
- Files:
-
- trunk/freewrt/mk/pkg-depend.mk (modified) (1 diff)
- trunk/freewrt/package/Config.in (modified) (1 diff)
- trunk/freewrt/package/asterisk/Config.in (modified) (2 diffs)
- trunk/freewrt/package/asterisk/Makefile (modified) (1 diff)
- trunk/freewrt/package/zaptel/Config.in (added)
- trunk/freewrt/package/zaptel/Config.in.kernel (copied) (copied from trunk/freewrt/package/zaptel/Config.in)
- trunk/freewrt/package/zaptel/Makefile (modified) (4 diffs)
- trunk/freewrt/package/zaptel/ipkg/zaptel.control (added)
- trunk/freewrt/target/linux/Config.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/mk/pkg-depend.mk
r1398 r1577 127 127 xsupplicant-compile: openssl-compile 128 128 129 asterisk-compile: ncurses-compile openssl-compile z lib-compile129 asterisk-compile: ncurses-compile openssl-compile zaptel-compile zlib-compile 130 130 131 131 ifneq ($(FWRT_PACKAGE_ASTERISK_CHAN_BLUETOOTH),) trunk/freewrt/package/Config.in
r1413 r1577 304 304 source "package/uclibc++/Config.in" 305 305 source "package/ustl/Config.in" 306 source "package/zaptel/Config.in" 306 307 source "package/zlib/Config.in" 307 308 endmenu trunk/freewrt/package/asterisk/Config.in
r1527 r1577 1 #menu "asterisk.......................... Complete open source PBX"1 menu "asterisk.......................... Complete open source PBX" 2 2 3 3 config FWRT_PACKAGE_ASTERISK 4 4 prompt "asterisk.......................... Complete open source PBX" 5 5 tristate 6 select FWRT_PACKAGE_ZAPTEL 6 7 default n 7 8 help … … 129 130 help 130 131 Voicemail related modules for Asterisk 131 132 config FWRT_PACKAGE_ASTERISK_MINI 133 prompt "asterisk-mini..................... Minimal open source PBX" 134 tristate 135 default n 136 help 137 Asterisk is a complete PBX in software. It provides all of the features 138 you would expect from a PBX and more. Asterisk does voice over IP in three 139 protocols, and can interoperate with almost all standards-based telephony 140 equipment using relatively inexpensive hardware. 141 142 http://www.asterisk.org/ 143 144 This package contains only the following modules: 145 - chan_iax2 146 - chan_local 147 - chan_sip 148 - codec_gsm 149 - codec_ulaw 150 - format_gsm 151 - format_pcm 152 - format_wav 153 - format_wav_gsm 154 - pbx_config 155 - res_features 156 - res_musiconhold 157 158 #endmenu 132 endmenu trunk/freewrt/package/asterisk/Makefile
r1564 r1577 89 89 CONFIGURE_ARGS+= --with-curl=${STAGING_DIR}/usr 90 90 endif 91 #ifneq (${FWRT_PACKAGE_KMOD_ZAPTEL},)92 #CONFIGURE_ARGS+= --with-zaptel=${TOPDIR}/build-mipsel/w-zaptel-1.4.0/zaptel-1.4.0/ 93 #else91 ifneq (${FWRT_PACKAGE_ZAPTEL},) 92 CONFIGURE_ARGS+= --with-zaptel=${STAGING_DIR}/usr 93 else 94 94 CONFIGURE_ARGS+= --without-zaptel 95 #endif95 endif 96 96 97 97 $(WRKBUILD)/.configured: trunk/freewrt/package/zaptel/Makefile
r1563 r1577 17 17 include $(TOPDIR)/mk/package.mk 18 18 19 $(eval $(call PKG_template,ZAPTEL,zaptel,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) 19 20 $(eval $(call PKG_template,KMOD_ZAPTEL,kmod-zaptel,$(KERNEL_VERSION)-$(BOARD)-$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) 20 21 $(eval $(call PKG_template,KMOD_ZTDUMMY,kmod-ztdummy,$(KERNEL_VERSION)-$(BOARD)-$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) … … 62 63 CC="$(TARGET_CC)" \ 63 64 LD="$(TARGET_CROSS)ld" \ 64 CFLAGS="$(KFLAGS) -fno-common" \65 CFLAGS="$(KFLAGS)" \ 65 66 BUILD_XPP=no \ 66 67 KSRC="$(LINUX_DIR)" \ … … 69 70 MODULES="zaptel ztdummy" \ 70 71 linux26 V=1 72 $(MAKE) -C $(WRKBUILD) \ 73 PATH="$(TARGET_PATH)" \ 74 CC="$(TARGET_CC)" \ 75 KSRC="$(LINUX_DIR)" \ 76 INSTALL_PREFIX="$(WRKINST)" \ 77 install-include install-libs 71 78 touch $@ 79 80 $(IPKG_ZAPTEL): 81 $(INSTALL_DIR) $(IDIR_ZAPTEL)/usr/lib 82 $(CP) $(WRKINST)/usr/lib/libtonezone.so.* $(IDIR_ZAPTEL)/usr/lib 83 $(IPKG_BUILD) $(IDIR_ZAPTEL) $(PACKAGE_DIR) 72 84 73 85 $(IPKG_KMOD_ZAPTEL): … … 82 94 $(IDIR_KMOD_ZTDUMMY)/lib/modules/$(KERNEL_VERSION)/ 83 95 $(IPKG_BUILD) $(IDIR_KMOD_ZTDUMMY) $(PACKAGE_DIR) 96 97 $(STAGING_DIR)/usr/lib/libtonezone.so: $(WRKBUILD)/.built 98 $(INSTALL_DIR) $(STAGING_DIR)/usr/lib 99 $(INSTALL_DIR) $(STAGING_DIR)/usr/include 100 $(CP) $(WRKINST)/usr/lib/libtonezone.so.* $(STAGING_DIR)/usr/lib/ 101 $(CP) $(WRKINST)/usr/include/zaptel $(STAGING_DIR)/usr/include/ 102 103 compile-targets: install-dev 104 clean-targets: uninstall-dev 105 106 install-dev: $(STAGING_DIR)/usr/lib/libtonezone.so trunk/freewrt/target/linux/Config.in
r1561 r1577 1145 1145 source package/switch/Config.in 1146 1146 source package/wlcompat/Config.in 1147 source package/zaptel/Config.in 1147 source package/zaptel/Config.in.kernel 1148 1148 1149 1149 endmenu


