mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-10 15:47:11 +02:00
Added wx200d, thanks Geoffrey Kruse, corrected typo in tmsnc/Config.in
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@2849 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
e25ae8b66a
commit
ac9d55c30d
@ -155,6 +155,7 @@ source "package/wondershaper/Config.in"
|
|||||||
source "package/wpa_supplicant/Config.in"
|
source "package/wpa_supplicant/Config.in"
|
||||||
source "package/wput/Config.in"
|
source "package/wput/Config.in"
|
||||||
source "package/wrt-radauth/Config.in"
|
source "package/wrt-radauth/Config.in"
|
||||||
|
source "package/wx200d/Config.in"
|
||||||
source "package/xinetd/Config.in"
|
source "package/xinetd/Config.in"
|
||||||
source "package/xsupplicant/Config.in"
|
source "package/xsupplicant/Config.in"
|
||||||
|
|
||||||
|
@ -238,6 +238,7 @@ package-$(BR2_PACKAGE_WONDERSHAPER) += wondershaper
|
|||||||
package-$(BR2_PACKAGE_WPA_SUPPLICANT) += wpa_supplicant
|
package-$(BR2_PACKAGE_WPA_SUPPLICANT) += wpa_supplicant
|
||||||
package-$(BR2_PACKAGE_WPUT) += wput
|
package-$(BR2_PACKAGE_WPUT) += wput
|
||||||
package-$(BR2_PACKAGE_WRT_RADAUTH) += wrt-radauth
|
package-$(BR2_PACKAGE_WRT_RADAUTH) += wrt-radauth
|
||||||
|
package-$(BR2_PAKCAGE_WX200D) += wx200d
|
||||||
package-$(BR2_PACKAGE_XINETD) += xinetd
|
package-$(BR2_PACKAGE_XINETD) += xinetd
|
||||||
package-$(BR2_PACKAGE_XSUPPLICANT) += xsupplicant
|
package-$(BR2_PACKAGE_XSUPPLICANT) += xsupplicant
|
||||||
package-$(BR2_PACKAGE_ZLIB) += zlib
|
package-$(BR2_PACKAGE_ZLIB) += zlib
|
||||||
@ -348,6 +349,7 @@ vtun-compile: zlib-compile openssl-compile liblzo-compile
|
|||||||
wificonf-compile: wireless-tools-compile nvram-compile
|
wificonf-compile: wireless-tools-compile nvram-compile
|
||||||
wknock-compile: libpcap-compile
|
wknock-compile: libpcap-compile
|
||||||
wpa_supplicant-compile: openssl-compile
|
wpa_supplicant-compile: openssl-compile
|
||||||
|
wx200d-compile: postgresql-compile
|
||||||
xsupplicant-compile: openssl-compile
|
xsupplicant-compile: openssl-compile
|
||||||
|
|
||||||
asterisk-compile: bluez-libs-compile ncurses-compile openssl-compile
|
asterisk-compile: bluez-libs-compile ncurses-compile openssl-compile
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
config BR2_PACKAGE_TMSNC
|
config BR2_PACKAGE_TMSNC
|
||||||
tristate "tmsnc .................................. text-based MSN client"
|
tristate "tmsnc............................. text-based MSN client"
|
||||||
default m if CONFIG_DEVEL
|
default m if CONFIG_DEVEL
|
||||||
help
|
help
|
||||||
TMSNC is a textbased (console) MSN client written in C.
|
TMSNC is a textbased (console) MSN client written in C.
|
||||||
|
10
openwrt/package/wx200d/Config.in
Normal file
10
openwrt/package/wx200d/Config.in
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
config BR2_PACKAGE_WX200D
|
||||||
|
prompt "wx200d............................ weather station data collector"
|
||||||
|
tristate
|
||||||
|
default m if CONFIG_DEVEL
|
||||||
|
help
|
||||||
|
wx200d is a weather station data collector and server daemon
|
||||||
|
for the WX200, WM918, WMR918 and WMR968 weather station
|
||||||
|
hardware.
|
||||||
|
|
||||||
|
http://wx200d.sourceforge.net/
|
51
openwrt/package/wx200d/Makefile
Normal file
51
openwrt/package/wx200d/Makefile
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
# $Id$
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=wx200d
|
||||||
|
PKG_VERSION:=1.3
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
PKG_MD5SUM:=0f90c099dddcdd46ac568d707822ec4c
|
||||||
|
PKG_SOURCE_URL:=@SF/wx200d
|
||||||
|
PKG_SOURCE:=wx200d-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
PKG_CAT:=zcat
|
||||||
|
|
||||||
|
include $(TOPDIR)/package/rules.mk
|
||||||
|
|
||||||
|
$(eval $(call PKG_template,WX200D,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
|
||||||
|
(cd $(PKG_BUILD_DIR); \
|
||||||
|
$(TARGET_CONFIGURE_OPTS) \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS)" \
|
||||||
|
CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include" \
|
||||||
|
LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
|
||||||
|
./configure \
|
||||||
|
--target=$(GNU_TARGET_NAME) \
|
||||||
|
--host=$(GNU_TARGET_NAME) \
|
||||||
|
--build=$(GNU_HOST_NAME) \
|
||||||
|
--prefix=/usr \
|
||||||
|
--without-libiconv-prefix \
|
||||||
|
--without-libintl-prefix \
|
||||||
|
--disable-nls \
|
||||||
|
);
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(PKG_BUILD_DIR)/.built:
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
CC=$(TARGET_CC) LD=$(TARGET_CROSS)ld \
|
||||||
|
CFLAGS="$(TARGET_CFLAGS) -I$(PKG_BUILD_DIR) -DSYSV -DPOSIX -DHAS_ITIMER -DLINUX -DHASSELECT -DHASTZ"
|
||||||
|
touch $@
|
||||||
|
|
||||||
|
$(IPKG_WX200D):
|
||||||
|
install -d -m0755 $(IDIR_WX200D)/usr/bin
|
||||||
|
install -m0644 $(PKG_BUILD_DIR)/wx200 \
|
||||||
|
$(PKG_BUILD_DIR)/wxstdout \
|
||||||
|
$(PKG_BUILD_DIR)/wxfilter \
|
||||||
|
$(PKG_BUILD_DIR)/wxdebug $(IDIR_WX200D)/usr/bin/
|
||||||
|
mkdir -p $(IDIR_WX200D)/usr/sbin/
|
||||||
|
install -m0644 $(PKG_BUILD_DIR)/wx200d \
|
||||||
|
$(PKG_BUILD_DIR)/wxread $(IDIR_WX200D)/usr/sbin/
|
||||||
|
$(RSTRIP) $(IDIR_WX200D)
|
||||||
|
$(IPKG_BUILD) $(IDIR_WX200D) $(PACKAGE_DIR)
|
7
openwrt/package/wx200d/ipkg/wx200d.control
Normal file
7
openwrt/package/wx200d/ipkg/wx200d.control
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
Package: wx200d
|
||||||
|
Priority: optional
|
||||||
|
Section: misc
|
||||||
|
Maintainer: Name <gkruse@gmail.com>
|
||||||
|
Source: http://
|
||||||
|
Description:Utils for Oregon Scientific wx* and related weather stations
|
||||||
|
Depends: libpq
|
Loading…
Reference in New Issue
Block a user