summaryrefslogtreecommitdiffstats
path: root/rules/bind.make
blob: d2f4a48c0bf447816451c0bb15c81a5413e75665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# -*-makefile-*-
# $Id$
#
# Copyright (C) 2003 by Benedikt Spranger
#          
# See CREDITS for details about who has contributed to this project.
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

#
# We provide this package
#
ifdef PTXCONF_BIND
PACKAGES += bind
endif

#
# Paths and names
#
BIND_VERSION	= 9.3.0rc3
BIND		= bind-$(BIND_VERSION)
BIND_SUFFIX		= tar.gz
BIND_URL		= ftp://ftp.isc.org/isc/bind9/$(BIND_VERSION)/$(BIND).$(BIND_SUFFIX)
BIND_SOURCE		= $(SRCDIR)/$(BIND).$(BIND_SUFFIX)
BIND_DIR		= $(BUILDDIR)/$(BIND)

# ----------------------------------------------------------------------------
# Get
# ----------------------------------------------------------------------------

bind_get: $(STATEDIR)/bind.get

bind_get_deps = $(BIND_SOURCE)

$(STATEDIR)/bind.get: $(bind_get_deps)
	@$(call targetinfo, $@)
	touch $@

$(BIND_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, $(BIND_URL))

# ----------------------------------------------------------------------------
# Extract
# ----------------------------------------------------------------------------

bind_extract: $(STATEDIR)/bind.extract

bind_extract_deps = $(STATEDIR)/bind.get

$(STATEDIR)/bind.extract: $(bind_extract_deps)
	@$(call targetinfo, $@)
	@$(call clean, $(BIND_DIR))
	@$(call extract, $(BIND_SOURCE))
	touch $@

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

bind_prepare: $(STATEDIR)/bind.prepare

#
# dependencies
#
bind_prepare_deps = \
	$(STATEDIR)/bind.extract \
	$(STATEDIR)/virtual-xchain.install

BIND_PATH	=  PATH=$(CROSS_PATH)
BIND_ENV 	=  $(CROSS_ENV)
#BIND_ENV	+=

#
# autoconf
#
BIND_AUTOCONF = \
	--build=$(GNU_HOST) \
	--host=$(PTXCONF_GNU_TARGET) \
	--prefix=$(CROSS_LIB_DIR) \
	--with-randomdev=/dev/random

ifdef BIND_THREADS
BIND_AUTOCONF += --enable-threads
endif

ifdef BIND_CRYPTO
BIND_AUTOCONF += --with-openssl=$(OPENSSL_DIR)
bind_prepare_deps += $(STATEDIR)/openssl.install
endif

ifdef BIND_IPV6
BIND_AUTOCONF += --enable-ipv6
else
BIND_AUTOCONF += --disable-ipv6
endif

$(STATEDIR)/bind.prepare: $(bind_prepare_deps)
	@$(call targetinfo, $@)
	@$(call clean, $(BIND_DIR)/config.cache)
	cd $(BIND_DIR) && \
		$(BIND_PATH) $(BIND_ENV) \
		./configure $(BIND_AUTOCONF)
	touch $@

# ----------------------------------------------------------------------------
# Compile
# ----------------------------------------------------------------------------

bind_compile: $(STATEDIR)/bind.compile

bind_compile_deps = $(STATEDIR)/bind.prepare

$(STATEDIR)/bind.compile: $(bind_compile_deps)
	@$(call targetinfo, $@)
	$(BIND_PATH) make -C $(BIND_DIR)
	touch $@

# ----------------------------------------------------------------------------
# Install
# ----------------------------------------------------------------------------

bind_install: $(STATEDIR)/bind.install

$(STATEDIR)/bind.install: $(STATEDIR)/bind.compile
	@$(call targetinfo, $@)
	$(BIND_PATH) make -C $(BIND_DIR) install
	touch $@

# ----------------------------------------------------------------------------
# Target-Install
# ----------------------------------------------------------------------------

bind_targetinstall: $(STATEDIR)/bind.targetinstall

bind_targetinstall_deps = $(STATEDIR)/bind.compile

$(STATEDIR)/bind.targetinstall: $(bind_targetinstall_deps)
	@$(call targetinfo, $@)
	touch $@

# ----------------------------------------------------------------------------
# Clean
# ----------------------------------------------------------------------------

bind_clean:
	rm -rf $(STATEDIR)/bind.*
	rm -rf $(BIND_DIR)

# vim: syntax=make