summaryrefslogtreecommitdiffstats
path: root/rules/host-lxdialog.make
blob: ab0f5b1311b3256209bc04bd405d507790cec1e0 (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
# -*-makefile-*-
# $Id$
#
# Copyright (C) 2005 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
#
HOST_PACKAGES-$(PTXCONF_HOST_LXDIALOG) += host-lxdialog

#
# Paths and names
#
HOST_LXDIALOG_VERSION	= 2.5.something# FIXME: should be updated
HOST_LXDIALOG		= lxdialog-$(HOST_LXDIALOG_VERSION)
HOST_LXDIALOG_DIR	= $(PTXDIST_WORKSPACE)/scripts/lxdialog

-include $(call package_depfile)

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

host-lxdialog_get: $(STATEDIR)/host-lxdialog.get

$(STATEDIR)/host-lxdialog.get:
	@$(call targetinfo, $@)
	@$(call touch, $@)

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

host-lxdialog_extract: $(STATEDIR)/host-lxdialog.extract

host-lxdialog_extract_deps = $(STATEDIR)/host-lxdialog.get

$(STATEDIR)/host-lxdialog.extract: $(host-lxdialog_extract_deps)
	@$(call targetinfo, $@)

	# we may be in an out-of-tree workspace...
	if [ ! -d "$(HOST_LXDIALOG_DIR)" ]; then \
		mkdir -p $(PTXDIST_WORKSPACE)/scripts; \
		cp -a $(PTXDIST_TOPDIR)/scripts/lxdialog $(HOST_LXDIALOG_DIR); \
		touch $(HOST_LXDIALOG_DIR)/.ptxdistoutoftree; \
	fi
	rm -f $(HOST_LXDIALOG_DIR)/Makefile
	cp -a \
		$(PTXDIST_TOPDIR)/scripts/ptx-modifications/Makefile.lxdialog.ptx \
		$(HOST_LXDIALOG_DIR)/Makefile

	@$(call touch, $@)

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

host-lxdialog_prepare: $(STATEDIR)/host-lxdialog.prepare

#
# dependencies
#
host-lxdialog_prepare_deps = $(STATEDIR)/host-lxdialog.extract

HOST_LXDIALOG_PATH	=  PATH=$(HOST_PATH)
HOST_LXDIALOG_ENV 	=  $(HOSTCC_ENV)

$(STATEDIR)/host-lxdialog.prepare: $(host-lxdialog_prepare_deps)
	@$(call targetinfo, $@, n)
	@$(call touch, $@)

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

host-lxdialog_compile: $(STATEDIR)/host-lxdialog.compile

host-lxdialog_compile_deps = $(STATEDIR)/host-lxdialog.prepare

$(STATEDIR)/host-lxdialog.compile: $(host-lxdialog_compile_deps)
	@$(call targetinfo, $@, n)
	cd $(HOST_LXDIALOG_DIR) && $(HOST_LXDIALOG_ENV) $(HOST_LXDIALOG_PATH) make
	@$(call touch, $@)

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

host-lxdialog_install: $(STATEDIR)/host-lxdialog.install

host-lxdialog_install_deps = $(STATEDIR)/host-lxdialog.compile

$(STATEDIR)/host-lxdialog.install: $(host-lxdialog_install_deps)
	@$(call targetinfo, $@)
	@$(call touch, $@)

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

host-lxdialog_clean:
	rm -rf $(STATEDIR)/host-lxdialog.*
	rm -rf $(HOST_LXDIALOG_DIR)

# vim: syntax=make