Changeset 2408
- Timestamp:
- 04/22/07 14:29:02 (2 years ago)
- Files:
-
- trunk/freewrt/mk/pkg-depend.mk (modified) (1 diff)
- trunk/freewrt/package/Config.in (modified) (1 diff)
- trunk/freewrt/package/Makefile (modified) (1 diff)
- trunk/freewrt/package/bluez-libs/Config.in (modified) (1 diff)
- trunk/freewrt/package/bluez-libs/Makefile (modified) (2 diffs)
- trunk/freewrt/package/bluez-utils/Makefile (modified) (4 diffs)
- trunk/freewrt/package/bluez-utils/ipkg/bluez-utils.conffiles (modified) (1 diff)
- trunk/freewrt/package/dbus (added)
- trunk/freewrt/package/dbus/Config.in (added)
- trunk/freewrt/package/dbus/Makefile (added)
- trunk/freewrt/package/dbus/files (added)
- trunk/freewrt/package/dbus/files/dbus.init (added)
- trunk/freewrt/package/dbus/ipkg (added)
- trunk/freewrt/package/dbus/ipkg/dbus.control (added)
- trunk/freewrt/package/dbus/ipkg/dbus.postinst (added)
- trunk/freewrt/package/obexftp/Config.in (modified) (1 diff)
- trunk/freewrt/package/openobex/Config.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/mk/pkg-depend.mk
r2393 r2408 17 17 bitchx-compile: ncurses-compile 18 18 bitlbee-compile: libiconv-compile openssl-compile glib-compile 19 bluez-utils-compile: bluez-libs-compile libusb-compile 19 bluez-utils-compile: bluez-libs-compile libusb-compile dbus-compile 20 20 bogofilter-compile: libiconv-compile libdb-compile 21 21 cbtt-compile: mysql-compile zlib-compile uclibc++-compile trunk/freewrt/package/Config.in
r2393 r2408 44 44 source "package/ctorrent/Config.in" 45 45 source "package/cxxtools/Config.in" 46 source "package/dbus/Config.in" 46 47 source "package/deco/Config.in" 47 48 source "package/digitemp/Config.in" trunk/freewrt/package/Makefile
r2393 r2408 46 46 package-$(FWRT_COMPILE_CYRUS_SASL) += cyrus-sasl 47 47 package-$(FWRT_PACKAGE_CXXTOOLS) += cxxtools 48 package-$(FWRT_PACKAGE_DBUS) += dbus 48 49 package-$(FWRT_PACKAGE_DECO) += deco 49 50 package-$(FWRT_COMPILE_DHCP) += dhcp trunk/freewrt/package/bluez-libs/Config.in
r600 r2408 3 3 tristate 4 4 default n 5 select FWRT_PACKAGE_KMOD_BLUETOOTH 5 6 help 6 7 Bluez libs. trunk/freewrt/package/bluez-libs/Makefile
r1686 r2408 8 8 9 9 PKG_NAME:= bluez-libs 10 PKG_VERSION:= 2.2411 PKG_RELEASE:= 212 PKG_MD5SUM:= d0ba50e251ae1e7f2c09024facde8e4010 PKG_VERSION:= 3.9 11 PKG_RELEASE:= 1 12 PKG_MD5SUM:= 53275e1824886368f11f586899707e08 13 13 PKG_SOURCE_URL:= http://bluez.sourceforge.net/download 14 14 … … 18 18 19 19 CONFIGURE_STYLE:= gnu 20 BUILD_STYLE:= auto 20 21 INSTALL_STYLE:= auto 21 22 trunk/freewrt/package/bluez-utils/Makefile
r1686 r2408 8 8 9 9 PKG_NAME:= bluez-utils 10 PKG_VERSION:= 2.2411 PKG_RELEASE:= 412 PKG_MD5SUM:= 5f5488ff3d31bdb9cd36b7991fe6840810 PKG_VERSION:= 3.9 11 PKG_RELEASE:= 1 12 PKG_MD5SUM:= 023a5e6a436f86a28baeec91e4c62736 13 13 PKG_INIT:= 90 14 14 PKG_SOURCE_URL:= http://bluez.sourceforge.net/download … … 18 18 $(eval $(call PKG_template,BLUEZ_UTILS,bluez-utils,${PKG_VERSION}-${PKG_RELEASE},${ARCH})) 19 19 20 TCPPFLAGS+= -I$(STAGING_DIR)/usr/include/dbus-1.0 20 21 CONFIGURE_STYLE= gnu 21 CONFIGURE_ARGS+= --disable-dbus \ 22 --disable-fuse \ 22 CONFIGURE_ARGS+= --disable-fuse \ 23 23 --disable-obex \ 24 24 --disable-alsa \ … … 38 38 39 39 post-install: 40 ${INSTALL_DIR} $(IDIR_BLUEZ_UTILS)/etc/dbus-1/system.d 40 41 ${INSTALL_DIR} ${IDIR_BLUEZ_UTILS}/usr/bin 41 42 ${CP} ${WRKINST}/usr/bin/* ${IDIR_BLUEZ_UTILS}/usr/bin/ … … 45 46 ${CP} ${WRKINST}/etc/bluetooth/{hcid,rfcomm}.conf \ 46 47 ${IDIR_BLUEZ_UTILS}/etc/bluetooth/ 47 install -m0700 ./files/givepin ${IDIR_BLUEZ_UTILS}/etc/bluetooth/48 ${INSTALL_DIR} ${IDIR_BLUEZ_UTILS}/etc/hotplug.d/usb48 $(INSTALL_DATA) $(WRKINST)/etc/dbus-1/system.d/bluetooth.conf \ 49 $(IDIR_BLUEZ_UTILS)/etc/dbus-1/system.d 49 50 ${INSTALL_DIR} ${IDIR_BLUEZ_UTILS}/etc/init.d 50 51 ${INSTALL_BIN} ./files/bluez.init \ 51 52 ${IDIR_BLUEZ_UTILS}/etc/init.d/S${PKG_INIT}bluez 52 ${INSTALL_BIN} ./files/bcm203x \53 ${IDIR_BLUEZ_UTILS}/etc/hotplug.d/usb/02-bcm203x54 ${CP} ${WRKINST}/etc/hotplug/usb/bcm203x \55 ${IDIR_BLUEZ_UTILS}/usr/sbin56 53 57 54 include ${TOPDIR}/mk/pkg-bottom.mk trunk/freewrt/package/bluez-utils/ipkg/bluez-utils.conffiles
r1 r2408 1 /etc/bluetooth/givepin2 1 /etc/bluetooth/hcid.conf 3 2 /etc/bluetooth/rfcomm.conf trunk/freewrt/package/obexftp/Config.in
r1973 r2408 4 4 default n 5 5 select FWRT_PACKAGE_LIBICONV 6 select FWRT_PACKAGE_OPENOBEX 6 7 help 7 8 http://openobex.triq.net/ trunk/freewrt/package/openobex/Config.in
r1160 r2408 3 3 tristate 4 4 default n 5 select FWRT_PACKAGE_BLUEZ_LIBS 5 6 help 6 7 Free open source implementation of the Object Exchange (OBEX) protocol.


