various ccache fixes (closes: #1599), thanks to Bartman007
[packages.git] / ipv6 / ptrtd / 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:=ptrtd
12 PKG_VERSION:=0.5.2
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://v6web.litech.org/ptrtd/dist/
17 PKG_MD5SUM:=bfe026445fdc4fe509a9c70ec4551744
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/ptrtd
25   SECTION:=ipv6
26   CATEGORY:=IPv6
27   DEPENDS:=+kmod-ipv6 +kmod-tun +ip
28   TITLE:=Portable Transport Relay Translator Daemon
29   DESCRIPTION:=\
30         The Portable Transport Relay Translator Daemon (pTRTd)\\\
31         is a method of allowing IPv6 hosts to communicate with IPv4 hosts.
32   URL:=http://v6web.litech.org/ptrtd/
33 endef
34
35 define Build/Compile
36         $(MAKE) -C $(PKG_BUILD_DIR) \
37                 DESTDIR="$(PKG_INSTALL_DIR)" \
38                 CC="$(TARGET_CC)" \
39                 all
40 endef
41
42 define Package/ptrtd/install
43         $(INSTALL_DIR) $(1)/usr/sbin/
44         $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
45         $(INSTALL_DIR) $(1)/etc/init.d/
46         $(INSTALL_BIN) ./files/ptrtd.init $(1)/etc/init.d/ptrtd
47 endef
48
49 $(eval $(call BuildPackage,ptrtd))