summaryrefslogtreecommitdiffstats
path: root/rules/zebra.make
blob: e03304b0a233a12f0fc7d867dbb1c8cef96708bd (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
# -*-makefile-*-
# $Id$
#
# Copyright (C) 2003 Jochen Striepe, Pengutronix e.K. <info@pengutronix.de>, Germany
# Copyright (C) 2003 Robert Schwebel, Pengutronix e.K. <info@pengutronix.de>, Germany
#          
# 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.
#

# FIXME: ipkgize

#
# We provide this package
#
PACKAGES-$(PTXCONF_ZEBRA) += zebra

#
# Paths and names 
#
ZEBRA_VERSION		= 0.93b
ZEBRA			= zebra-$(ZEBRA_VERSION)
ZEBRA_SUFFIX		= tar.gz
ZEBRA_URL 		= ftp://ftp.sunet.se/pub/network/zebra/$(ZEBRA).$(ZEBRA_SUFFIX)
ZEBRA_SOURCE		= $(SRCDIR)/$(ZEBRA).tar.gz
ZEBRA_DIR 		= $(BUILDDIR)/$(ZEBRA)

-include $(call package_depfile)

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

zebra_get: $(STATEDIR)/zebra.get

zebra_get_deps	= $(ZEBRA_SOURCE)

$(STATEDIR)/zebra.get: $(zebra_get_deps)
	@$(call targetinfo, $@)
	@$(call touch, $@)

$(ZEBRA_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, $(ZEBRA_URL))

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

zebra_extract: $(STATEDIR)/zebra.extract

zebra_extract_deps	= $(STATEDIR)/zebra.get

$(STATEDIR)/zebra.extract: $(zebra_extract_deps)
	@$(call targetinfo, $@)
	@$(call clean, $(ZEBRA_DIR))
	@$(call extract, $(ZEBRA_SOURCE))
	@$(call patchin, $(ZEBRA))
	@$(call touch, $@)

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

zebra_prepare: $(STATEDIR)/zebra.prepare

zebra_prepare_deps = \
	$(STATEDIR)/virtual-xchain.install \
	$(STATEDIR)/zebra.extract

ZEBRA_AUTOCONF =  $(CROSS_AUTOCONF_USR)
ZEBRA_AUTOCONF += \
	--with-cflags="$(TARGET_CFLAGS)" \
	--exec-prefix=/usr \
	--sysconfdir=/etc/zebra \
	--localstatedir=/var

ZEBRA_ENV = \
	$(CROSS_ENV) \
	ac_cv_func_getpgrp_void=yes \
	ac_cv_func_setpgrp_void=yes \
	ac_cv_sizeof_long_long=8 \
	ac_cv_func_memcmp_clean=yes \
	ac_cv_func_getrlimit=yes

ZEBRA_PATH	=  PATH=$(CROSS_PATH)


$(STATEDIR)/zebra.prepare: $(zebra_prepare_deps)
	@$(call targetinfo, $@)
	cd $(ZEBRA_DIR) && \
		$(ZEBRA_PATH) $(ZEBRA_ENV) \
		./configure $(ZEBRA_AUTOCONF)
	@$(call touch, $@)

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

zebra_compile: $(STATEDIR)/zebra.compile

$(STATEDIR)/zebra.compile: $(STATEDIR)/zebra.prepare 
	@$(call targetinfo, $@)
	$(ZEBRA_PATH) make -C $(ZEBRA_DIR)
	@$(call touch, $@)

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

zebra_install: $(STATEDIR)/zebra.install

$(STATEDIR)/zebra.install: $(STATEDIR)/zebra.compile
	@$(call targetinfo, $@)
	@$(call touch, $@)

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

zebra_targetinstall: $(STATEDIR)/zebra.targetinstall

$(STATEDIR)/zebra.targetinstall: $(STATEDIR)/zebra.install
	@$(call targetinfo, $@)
	$(ZEBRA_PATH) make -C $(ZEBRA_DIR) DESTDIR=$(ROOTDIR)
	@$(call touch, $@)
# ----------------------------------------------------------------------------
# Clean
# ----------------------------------------------------------------------------

zebra_clean: 
	rm -rf $(STATEDIR)/zebra.* 
	rm -rf $(IMAGEDIR)/zebra_* 
	rm -rf $(ZEBRA_DIR)

# vim: syntax=make