summaryrefslogtreecommitdiffstats
path: root/rules/xlibs-damageext.make
blob: 0495c386d23cf4caa1d118af9a053fea0148c7dd (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
# -*-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-DAMAGEEXT) += xlibs-damageext

#
# Paths and names
#
XLIBS-DAMAGEEXT_VERSION	= 20041103-1
XLIBS-DAMAGEEXT		= DamageExt-$(XLIBS-DAMAGEEXT_VERSION)
XLIBS-DAMAGEEXT_SUFFIX	= tar.bz2
XLIBS-DAMAGEEXT_URL	= http://www.pengutronix.de/software/ptxdist/temporary-src/$(XLIBS-DAMAGEEXT).$(XLIBS-DAMAGEEXT_SUFFIX)
XLIBS-DAMAGEEXT_SOURCE	= $(SRCDIR)/$(XLIBS-DAMAGEEXT).$(XLIBS-DAMAGEEXT_SUFFIX)
XLIBS-DAMAGEEXT_DIR	= $(BUILDDIR)/$(XLIBS-DAMAGEEXT)

-include $(call package_depfile)

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

xlibs-damageext_get: $(STATEDIR)/xlibs-damageext.get

$(STATEDIR)/xlibs-damageext.get: $(xlibs-damageext_get_deps_default)
	@$(call targetinfo, $@)
	@$(call get_patches, $(XLIBS-DAMAGEEXT))
	@$(call touch, $@)

$(XLIBS-DAMAGEEXT_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, $(XLIBS-DAMAGEEXT_URL))

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

xlibs-damageext_extract: $(STATEDIR)/xlibs-damageext.extract

$(STATEDIR)/xlibs-damageext.extract: $(xlibs-damageext_extract_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(XLIBS-DAMAGEEXT_DIR))
	@$(call extract, $(XLIBS-DAMAGEEXT_SOURCE))
	@$(call patchin, $(XLIBS-DAMAGEEXT))
	@$(call touch, $@)

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

xlibs-damageext_prepare: $(STATEDIR)/xlibs-damageext.prepare

XLIBS-DAMAGEEXT_PATH	=  PATH=$(CROSS_PATH)
XLIBS-DAMAGEEXT_ENV 	=  $(CROSS_ENV)

#
# autoconf
#
XLIBS-DAMAGEEXT_AUTOCONF =  --build=$(GNU_HOST)
XLIBS-DAMAGEEXT_AUTOCONF += --host=$(PTXCONF_GNU_TARGET)

$(STATEDIR)/xlibs-damageext.prepare: $(xlibs-damageext_prepare_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(XLIBS-DAMAGEEXT_DIR)/config.cache)
	chmod a+x $(XLIBS-DAMAGEEXT_DIR)/configure
	cd $(XLIBS-DAMAGEEXT_DIR) && \
		$(XLIBS-DAMAGEEXT_PATH) $(XLIBS-DAMAGEEXT_ENV) \
		./configure $(XLIBS-DAMAGEEXT_AUTOCONF)
	@$(call touch, $@)

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

xlibs-damageext_compile: $(STATEDIR)/xlibs-damageext.compile

$(STATEDIR)/xlibs-damageext.compile: $(xlibs-damageext_compile_deps_default)
	@$(call targetinfo, $@)
	cd $(XLIBS-DAMAGEEXT_DIR) && $(XLIBS-DAMAGEEXT_ENV) $(XLIBS-DAMAGEEXT_PATH) make
	@$(call touch, $@)

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

xlibs-damageext_install: $(STATEDIR)/xlibs-damageext.install

$(STATEDIR)/xlibs-damageext.install: $(xlibs-damageext_install_deps_default)
	@$(call targetinfo, $@)
	@$(call install, XLIBS-DAMAGEEXT)
	@$(call touch, $@)

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

xlibs-damageext_targetinstall: $(STATEDIR)/xlibs-damageext.targetinstall

$(STATEDIR)/xlibs-damageext.targetinstall: $(xlibs-damageext_targetinstall_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

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

xlibs-damageext_clean:
	rm -rf $(STATEDIR)/xlibs-damageext.*
	rm -rf $(XLIBS-DAMAGEEXT_DIR)

# vim: syntax=make