[Packages] net/wifidog:
[openwrt/svn-archive/archive.git] / net / udp-broadcast-relay / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=udp-broadcast-relay
12 PKG_VERSION:=0.3
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.joachim-breitner.de/udp-broadcast-relay/files/
17 PKG_MD5SUM:=a32f983b7063d6ac670e6b22be9b9d24
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/udp-broadcast-relay
24 SECTION:=net
25 CATEGORY:=Network
26 TITLE:=listens for packets on a specified UDP broadcast port
27 URL:=http://www.joachim-breitner.de/udp-broadcast-relay/
28 endef
29
30 define Package/udp-broadcast-relay/description
31 This program listens for packets on a specified UDP broadcast port.
32 When a packet is received, it sends that packet to all specified interfaces but
33 the one it came from as though it originated from the original sender.
34 The primary purpose of this is to allow games on machines on separated
35 local networks (Ethernet, WLAN) that use udp broadcasts to find each other to do so.
36 It also works on ppp links, so you can log in from windows boxes (e.g. using pptp)
37 and play LAN-based games together. Currently, you have to care about upcoming or
38 downgoing interfaces yourself.
39 endef
40
41 define Build/Compile
42 $(TARGET_CC) $(PKG_BUILD_DIR)/main.c -o $(PKG_BUILD_DIR)/$(PKG_NAME)
43 endef
44
45 define Package/udp-broadcast-relay/install
46 $(INSTALL_DIR) $(1)/usr/sbin
47 $(CP) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
48 endef
49
50 $(eval $(call BuildPackage,udp-broadcast-relay))