summaryrefslogtreecommitdiffstats
path: root/rules/xlibs-recordext.make
blob: c94c3e65aa0b910f8fc8f8fc83e70a49440bee1d (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
# -*-makefile-*-
# $Id: template 1681 2004-09-01 18:12:49Z  $
#
# 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-RECORDEXT) += xlibs-recordext

#
# Paths and names
#
XLIBS-RECORDEXT_VERSION	= 20041103-1
XLIBS-RECORDEXT		= RecordExt-$(XLIBS-RECORDEXT_VERSION)
XLIBS-RECORDEXT_SUFFIX	= tar.bz2
XLIBS-RECORDEXT_URL	= http://www.pengutronix.de/software/ptxdist/temporary-src//$(XLIBS-RECORDEXT).$(XLIBS-RECORDEXT_SUFFIX)
XLIBS-RECORDEXT_SOURCE	= $(SRCDIR)/$(XLIBS-RECORDEXT).$(XLIBS-RECORDEXT_SUFFIX)
XLIBS-RECORDEXT_DIR	= $(BUILDDIR)/$(XLIBS-RECORDEXT)

-include $(call package_depfile)

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

xlibs-recordext_get: $(STATEDIR)/xlibs-recordext.get

$(STATEDIR)/xlibs-recordext.get: $(xlibs-recordext_get_deps_default)
	@$(call targetinfo, $@)
	@$(call get_patches, $(XLIBS-RECORDEXT))
	@$(call touch, $@)

$(XLIBS-RECORDEXT_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, $(XLIBS-RECORDEXT_URL))

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

xlibs-recordext_extract: $(STATEDIR)/xlibs-recordext.extract

$(STATEDIR)/xlibs-recordext.extract: $(xlibs-recordext_extract_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(XLIBS-RECORDEXT_DIR))
	@$(call extract, $(XLIBS-RECORDEXT_SOURCE))
	@$(call patchin, $(XLIBS-RECORDEXT))
	@$(call touch, $@)

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

xlibs-recordext_prepare: $(STATEDIR)/xlibs-recordext.prepare

XLIBS-RECORDEXT_PATH	=  PATH=$(CROSS_PATH)
XLIBS-RECORDEXT_ENV 	=  $(CROSS_ENV)
XLIBS-RECORDEXT_ENV	+= PKG_CONFIG_PATH=$(CROSS_LIB_DIR)/lib/pkgconfig

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

$(STATEDIR)/xlibs-recordext.prepare: $(xlibs-recordext_prepare_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(XLIBS-RECORDEXT_DIR)/config.cache)
	chmod a+x $(XLIBS-RECORDEXT_DIR)/configure
	cd $(XLIBS-RECORDEXT_DIR) && \
		$(XLIBS-RECORDEXT_PATH) $(XLIBS-RECORDEXT_ENV) \
		./configure $(XLIBS-RECORDEXT_AUTOCONF)
	@$(call touch, $@)

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

xlibs-recordext_compile: $(STATEDIR)/xlibs-recordext.compile

$(STATEDIR)/xlibs-recordext.compile: $(xlibs-recordext_compile_deps_default)
	@$(call targetinfo, $@)
	cd $(XLIBS-RECORDEXT_DIR) && $(XLIBS-RECORDEXT_ENV) $(XLIBS-RECORDEXT_PATH) make
	@$(call touch, $@)

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

xlibs-recordext_install: $(STATEDIR)/xlibs-recordext.install

$(STATEDIR)/xlibs-recordext.install: $(xlibs-recordext_install_deps_default)
	@$(call targetinfo, $@)
	@$(call install, XLIBS-RECORDEXT)
	@$(call touch, $@)

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

xlibs-recordext_targetinstall: $(STATEDIR)/xlibs-recordext.targetinstall

$(STATEDIR)/xlibs-recordext.targetinstall: $(xlibs-recordext_targetinstall_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

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

xlibs-recordext_clean:
	rm -rf $(STATEDIR)/xlibs-recordext.*
	rm -rf $(XLIBS-RECORDEXT_DIR)

# vim: syntax=make