summaryrefslogtreecommitdiffstats
path: root/rules/xorg-proto-x.make
blob: 7c4dc292a2ffe121d2bd1668f2dbf89810220c0b (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
# -*-makefile-*-
# $Id: template 4565 2006-02-10 14:23:10Z mkl $
#
# Copyright (C) 2006 by Erwin Rol
#
# 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_XORG_PROTO_X) += xorg-proto-x

#
# Paths and names
#
XORG_PROTO_X_VERSION 	:= 7.0.10
XORG_PROTO_X		:= xproto-$(XORG_PROTO_X_VERSION)
XORG_PROTO_X_SUFFIX	:= tar.bz2
XORG_PROTO_X_URL	:= $(PTXCONF_SETUP_XORGMIRROR)/X11R7.3/src/proto/$(XORG_PROTO_X).$(XORG_PROTO_X_SUFFIX)
XORG_PROTO_X_SOURCE	:= $(SRCDIR)/$(XORG_PROTO_X).$(XORG_PROTO_X_SUFFIX)
XORG_PROTO_X_DIR	:= $(BUILDDIR)/$(XORG_PROTO_X)


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

xorg-proto-x_get: $(STATEDIR)/xorg-proto-x.get

$(STATEDIR)/xorg-proto-x.get: $(xorg-proto-x_get_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

$(XORG_PROTO_X_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, XORG_PROTO_X)

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

xorg-proto-x_extract: $(STATEDIR)/xorg-proto-x.extract

$(STATEDIR)/xorg-proto-x.extract: $(xorg-proto-x_extract_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(XORG_PROTO_X_DIR))
	@$(call extract, XORG_PROTO_X)
	@$(call patchin, XORG_PROTO_X)
	@$(call touch, $@)

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

xorg-proto-x_prepare: $(STATEDIR)/xorg-proto-x.prepare

XORG_PROTO_X_PATH	:=  PATH=$(CROSS_PATH)
XORG_PROTO_X_ENV 	:=  $(CROSS_ENV)

#
# autoconf
#
XORG_PROTO_X_AUTOCONF := $(CROSS_AUTOCONF_USR) \
	--disable-dependency-tracking

#
# this was valid for an x86 target. Check on other
# architectures and do not trust the autodetection
#
XORG_PROTO_X_AUTOCONF += \
	--enable-const-prototypes \
	--enable-function-prototypes \
	--enable-varargs-prototypes \
	--enable-nested-prototypes \
	--enable-wide-prototypes=no

$(STATEDIR)/xorg-proto-x.prepare: $(xorg-proto-x_prepare_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(XORG_PROTO_X_DIR)/config.cache)
	cd $(XORG_PROTO_X_DIR) && \
		$(XORG_PROTO_X_PATH) $(XORG_PROTO_X_ENV) \
		./configure $(XORG_PROTO_X_AUTOCONF)
	@$(call touch, $@)

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

xorg-proto-x_compile: $(STATEDIR)/xorg-proto-x.compile

$(STATEDIR)/xorg-proto-x.compile: $(xorg-proto-x_compile_deps_default)
	@$(call targetinfo, $@)
	cd $(XORG_PROTO_X_DIR) && $(XORG_PROTO_X_PATH) make
	@$(call touch, $@)

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

xorg-proto-x_install: $(STATEDIR)/xorg-proto-x.install

$(STATEDIR)/xorg-proto-x.install: $(xorg-proto-x_install_deps_default)
	@$(call targetinfo, $@)
	@$(call install, XORG_PROTO_X)
	@$(call touch, $@)

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

xorg-proto-x_targetinstall: $(STATEDIR)/xorg-proto-x.targetinstall

$(STATEDIR)/xorg-proto-x.targetinstall: $(xorg-proto-x_targetinstall_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

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

xorg-proto-x_clean:
	rm -rf $(STATEDIR)/xorg-proto-x.*
	rm -rf $(PKGDIR)/xorg-proto-x_*
	rm -rf $(XORG_PROTO_X_DIR)

# vim: syntax=make