Move totd to ipv6 section, more adequate
[openwrt/svn-archive/archive.git] / ipv6 / totd / 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: Makefile 5329 2006-10-28 22:43:08Z nico $
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=totd
12 PKG_VERSION:=1.5.1
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=ftp://ftp.pasta.cs.uit.no/pub/totd/
17 PKG_MD5SUM:=7edaedae9f6aca5912dd6c123582cf08
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/totd
25 SECTION:=ipv6
26 CATEGORY:=IPv6
27 DEPENDS:=+kmod-ipv6
28 TITLE:=Small DNS proxy that supports IPv6/IPv4 record translation
29 DESCRIPTION:=\
30 totd is a small DNS proxy nameserver which supports IPv6 and enable IPv6\\\
31 only sites to access IPv4 sites by using some translation mechanism such\\\
32 as NAT-PT, KAME faith, etc...
33 URL:=http://pasta.cs.uit.no/software/totd.html
34 endef
35
36 define Package/totd/conffiles
37 /etc/totd.conf
38 endef
39
40 # uses GNU configure
41
42 define Build/Compile
43 $(MAKE) -C $(PKG_BUILD_DIR) \
44 DESTDIR="$(PKG_INSTALL_DIR)" \
45 CC=$(TARGET_CC) \
46 all
47 endef
48
49 define Package/totd/install
50 $(INSTALL_DIR) $(1)/usr/sbin/
51 $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/sbin/
52 $(INSTALL_DIR) $(1)/etc/
53 $(INSTALL_CONF) ./files/totd.conf $(1)/etc/
54 $(INSTALL_DIR) $(1)/etc/init.d/
55 $(INSTALL_BIN) ./files/totd.init $(1)/etc/init.d/totd
56 endef
57
58 $(eval $(call BuildPackage,totd))