summaryrefslogtreecommitdiffstats
path: root/rules/dialog.make
blob: f4fb05fcba2a383660612fd7180620ce78b6602c (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
# -*-makefile-*-
# $Id: template 2078 2004-12-01 15:28:17Z rsc $
#
# Copyright (C) 2004 by Robert Schwebel
#          
# 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
#
PACKAGES-$(PTXCONF_DIALOG) += dialog

#
# Paths and names
#
DIALOG_VERSION		= 1.0-20041118
DIALOG			= dialog-$(DIALOG_VERSION)
DIALOG_SUFFIX		= tgz
DIALOG_URL		= http://invisible-island.net/dialog/$(DIALOG).$(DIALOG_SUFFIX)
DIALOG_SOURCE		= $(SRCDIR)/$(DIALOG).$(DIALOG_SUFFIX)
DIALOG_DIR		= $(BUILDDIR)/$(DIALOG)

-include $(call package_depfile)

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

dialog_get: $(STATEDIR)/dialog.get

dialog_get_deps = $(DIALOG_SOURCE)

$(STATEDIR)/dialog.get: $(dialog_get_deps)
	@$(call targetinfo, $@)
	@$(call get_patches, $(DIALOG))
	@$(call touch, $@)

$(DIALOG_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, $(DIALOG_URL))

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

dialog_extract: $(STATEDIR)/dialog.extract

dialog_extract_deps = $(STATEDIR)/dialog.get

$(STATEDIR)/dialog.extract: $(dialog_extract_deps)
	@$(call targetinfo, $@)
	@$(call clean, $(DIALOG_DIR))
	@$(call extract, $(DIALOG_SOURCE))
	@$(call patchin, $(DIALOG))
	@$(call touch, $@)

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

dialog_prepare: $(STATEDIR)/dialog.prepare

#
# dependencies
#
dialog_prepare_deps = \
	$(STATEDIR)/dialog.extract \
	$(STATEDIR)/virtual-xchain.install

DIALOG_PATH	=  PATH=$(CROSS_PATH)
DIALOG_ENV 	=  $(CROSS_ENV)

#
# autoconf
#
DIALOG_AUTOCONF =  $(CROSS_AUTOCONF_USR)

$(STATEDIR)/dialog.prepare: $(dialog_prepare_deps)
	@$(call targetinfo, $@)
	@$(call clean, $(DIALOG_DIR)/config.cache)
	cd $(DIALOG_DIR) && \
		$(DIALOG_PATH) $(DIALOG_ENV) \
		./configure $(DIALOG_AUTOCONF)
	@$(call touch, $@)

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

dialog_compile: $(STATEDIR)/dialog.compile

dialog_compile_deps = $(STATEDIR)/dialog.prepare

$(STATEDIR)/dialog.compile: $(dialog_compile_deps)
	@$(call targetinfo, $@)
	cd $(DIALOG_DIR) && $(DIALOG_ENV) $(DIALOG_PATH) make
	@$(call touch, $@)

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

dialog_install: $(STATEDIR)/dialog.install

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

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

dialog_targetinstall: $(STATEDIR)/dialog.targetinstall

dialog_targetinstall_deps = $(STATEDIR)/dialog.compile

$(STATEDIR)/dialog.targetinstall: $(dialog_targetinstall_deps)
	@$(call targetinfo, $@)
	# FIXME: RSC: nothing to do on targetinstall? 
	@$(call touch, $@)

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

dialog_clean:
	rm -rf $(STATEDIR)/dialog.*
	rm -rf $(DIALOG_DIR)

# vim: syntax=make