summaryrefslogtreecommitdiffstats
path: root/rules/xlibs-fixesext.make
blob: d9526101b0ddc97655a62f398aa2f26c58aa3ff6 (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
# -*-makefile-*-
#
# $Id$
#
# 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.
#

# FIXME: RSC: do something on targetinstall

#
# We provide this package
#
PACKAGES-$(PTXCONF_XLIBS-FIXESEXT) += xlibs-fixesext

#
# Paths and names
#
XLIBS-FIXESEXT_VERSION	= 20041103-1
XLIBS-FIXESEXT		= FixesExt-$(XLIBS-FIXESEXT_VERSION)
XLIBS-FIXESEXT_SUFFIX	= tar.bz2
XLIBS-FIXESEXT_URL	= http://www.pengutronix.de/software/ptxdist/temporary-src/$(XLIBS-FIXESEXT).$(XLIBS-FIXESEXT_SUFFIX)
XLIBS-FIXESEXT_SOURCE	= $(SRCDIR)/$(XLIBS-FIXESEXT).$(XLIBS-FIXESEXT_SUFFIX)
XLIBS-FIXESEXT_DIR	= $(BUILDDIR)/$(XLIBS-FIXESEXT)

-include $(call package_depfile)

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

xlibs-fixesext_get: $(STATEDIR)/xlibs-fixesext.get

xlibs-fixesext_get_deps = $(XLIBS-FIXESEXT_SOURCE)

$(STATEDIR)/xlibs-fixesext.get: $(xlibs-fixesext_get_deps)
	@$(call targetinfo, $@)
	@$(call get_patches, $(XLIBS-FIXESEXT))
	@$(call touch, $@)

$(XLIBS-FIXESEXT_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, $(XLIBS-FIXESEXT_URL))

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

xlibs-fixesext_extract: $(STATEDIR)/xlibs-fixesext.extract

xlibs-fixesext_extract_deps = $(STATEDIR)/xlibs-fixesext.get

$(STATEDIR)/xlibs-fixesext.extract: $(xlibs-fixesext_extract_deps)
	@$(call targetinfo, $@)
	@$(call clean, $(XLIBS-FIXESEXT_DIR))
	@$(call extract, $(XLIBS-FIXESEXT_SOURCE))
	@$(call patchin, $(XLIBS-FIXESEXT))
	@$(call touch, $@)

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

xlibs-fixesext_prepare: $(STATEDIR)/xlibs-fixesext.prepare

#
# dependencies
#
xlibs-fixesext_prepare_deps =  $(STATEDIR)/xlibs-fixesext.extract
xlibs-fixesext_prepare_deps += $(STATEDIR)/virtual-xchain.install

XLIBS-FIXESEXT_PATH	=  PATH=$(CROSS_PATH)
XLIBS-FIXESEXT_ENV 	=  $(CROSS_ENV)
XLIBS-FIXESEXT_ENV	+= PKG_CONFIG_PATH=$(CROSS_LIB_DIR)/lib/pkgconfig

#
# autoconf
#
XLIBS-FIXESEXT_AUTOCONF = \
	--build=$(GNU_HOST) \
	--host=$(PTXCONF_GNU_TARGET) \

$(STATEDIR)/xlibs-fixesext.prepare: $(xlibs-fixesext_prepare_deps)
	@$(call targetinfo, $@)
	@$(call clean, $(XLIBS-FIXESEXT_DIR)/config.cache)
	chmod a+x $(XLIBS-FIXESEXT_DIR)/configure
	cd $(XLIBS-FIXESEXT_DIR) && \
		$(XLIBS-FIXESEXT_PATH) $(XLIBS-FIXESEXT_ENV) \
		./configure $(XLIBS-FIXESEXT_AUTOCONF)
	@$(call touch, $@)

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

xlibs-fixesext_compile: $(STATEDIR)/xlibs-fixesext.compile

xlibs-fixesext_compile_deps = $(STATEDIR)/xlibs-fixesext.prepare

$(STATEDIR)/xlibs-fixesext.compile: $(xlibs-fixesext_compile_deps)
	@$(call targetinfo, $@)
	cd $(XLIBS-FIXESEXT_DIR) && $(XLIBS-FIXESEXT_ENV) $(XLIBS-FIXESEXT_PATH) make
	@$(call touch, $@)

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

xlibs-fixesext_install: $(STATEDIR)/xlibs-fixesext.install

$(STATEDIR)/xlibs-fixesext.install: $(STATEDIR)/xlibs-fixesext.compile
	@$(call targetinfo, $@)
	@$(call install, XLIBS-FIXESEXT)
	@$(call touch, $@)

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

xlibs-fixesext_targetinstall: $(STATEDIR)/xlibs-fixesext.targetinstall

xlibs-fixesext_targetinstall_deps = $(STATEDIR)/xlibs-fixesext.compile

$(STATEDIR)/xlibs-fixesext.targetinstall: $(xlibs-fixesext_targetinstall_deps)
	@$(call targetinfo, $@)
	@$(call touch, $@)

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

xlibs-fixesext_clean:
	rm -rf $(STATEDIR)/xlibs-fixesext.*
	rm -rf $(XLIBS-FIXESEXT_DIR)

# vim: syntax=make