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