c784518927bfa616a84cd4a4b432634691a078fc
[packages.git] / ipv6 / ptrtd / Makefile
1
2 # Copyright (C) 2006-2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=ptrtd
11 PKG_VERSION:=0.5.2
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://v6web.litech.org/ptrtd/dist/
16 PKG_MD5SUM:=bfe026445fdc4fe509a9c70ec4551744
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/ptrtd
21   SECTION:=net
22   CATEGORY:=Network
23   DEPENDS:=+kmod-ipv6 +kmod-tun +ip
24   TITLE:=Portable Transport Relay Translator Daemon
25   URL:=http://v6web.litech.org/ptrtd/
26 endef
27
28 define Package/ptrtd/description
29         The Portable Transport Relay Translator Daemon (pTRTd)
30         is a method of allowing IPv6 hosts to communicate with IPv4 hosts.
31 endef
32
33 MAKE_FLAGS += \
34         CFLAGS="$(TARGET_CFLAGS)"
35
36 define Package/ptrtd/install
37         $(INSTALL_DIR) $(1)/usr/sbin/
38         $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
39         $(INSTALL_DIR) $(1)/etc/init.d/
40         $(INSTALL_BIN) ./files/ptrtd.init $(1)/etc/init.d/ptrtd
41 endef
42
43 $(eval $(call BuildPackage,ptrtd))