summaryrefslogtreecommitdiffstats
path: root/rules/realvnc.make
blob: cad601685d5cb0149a9b457fc00e2b081f1e9fbe (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
141
142
143
144
145
146
147
# -*-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_REALVNC) += realvnc

#
# Paths and names
#
REALVNC_VERSION		= 4.0
REALVNC			= vnc-$(REALVNC_VERSION)-unixsrc
REALVNC_SUFFIX		= tar.gz
REALVNC_URL		= http://www.realvnc.com/dist/$(REALVNC).$(REALVNC_SUFFIX)
REALVNC_SOURCE		= $(SRCDIR)/$(REALVNC).$(REALVNC_SUFFIX)
REALVNC_DIR		= $(BUILDDIR)/$(REALVNC)

-include $(call package_depfile)

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

realvnc_get: $(STATEDIR)/realvnc.get

realvnc_get_deps = $(REALVNC_SOURCE)

$(STATEDIR)/realvnc.get: $(realvnc_get_deps)
	@$(call targetinfo, $@)
	@$(call get_patches, $(REALVNC))
	@$(call touch, $@)

$(REALVNC_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, $(REALVNC_URL))

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

realvnc_extract: $(STATEDIR)/realvnc.extract

realvnc_extract_deps = $(STATEDIR)/realvnc.get

$(STATEDIR)/realvnc.extract: $(realvnc_extract_deps)
	@$(call targetinfo, $@)
	@$(call clean, $(REALVNC_DIR))
	@$(call extract, $(REALVNC_SOURCE))
	@$(call patchin, $(REALVNC))
	@$(call touch, $@)

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

realvnc_prepare: $(STATEDIR)/realvnc.prepare

#
# dependencies
#
realvnc_prepare_deps =  $(STATEDIR)/realvnc.extract
realvnc_prepare_deps += $(STATEDIR)/virtual-xchain.install
realvnc_prepare_deps += $(STATEDIR)/xlibs-xtst.install

REALVNC_PATH	=  PATH=$(CROSS_PATH)
REALVNC_ENV 	=  $(CROSS_ENV)
#REALVNC_ENV	+= PKG_CONFIG_PATH=$(CROSS_LIB_DIR)/lib/pkgconfig
#REALVNC_ENV	+=

#
# autoconf
#
REALVNC_AUTOCONF = \
	--build=$(GNU_HOST) \
	--host=$(PTXCONF_GNU_TARGET) \
REALVNC_AUTOCONF += --x-includes=$(CROSS_LIB_DIR)/include
REALVNC_AUTOCONF += --x-libraries=$(CROSS_LIB_DIR)/lib
REALVNC_AUTOCONF += --with-installed-zlib

$(STATEDIR)/realvnc.prepare: $(realvnc_prepare_deps)
	@$(call targetinfo, $@)
	@$(call clean, $(REALVNC_DIR)/config.cache)
	cd $(REALVNC_DIR) && \
		$(REALVNC_PATH) $(REALVNC_ENV) \
		./configure $(REALVNC_AUTOCONF)
	@$(call touch, $@)

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

realvnc_compile: $(STATEDIR)/realvnc.compile

realvnc_compile_deps = $(STATEDIR)/realvnc.prepare

$(STATEDIR)/realvnc.compile: $(realvnc_compile_deps)
	@$(call targetinfo, $@)
	cd $(REALVNC_DIR) && $(REALVNC_ENV) $(REALVNC_PATH) make
	@$(call touch, $@)

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

realvnc_install: $(STATEDIR)/realvnc.install

$(STATEDIR)/realvnc.install: $(STATEDIR)/realvnc.compile
	@$(call targetinfo, $@)
	@$(call install, REALVNC)
	@$(call touch, $@)

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

realvnc_targetinstall: $(STATEDIR)/realvnc.targetinstall

realvnc_targetinstall_deps =  $(STATEDIR)/realvnc.compile
realvnc_targetinstall_deps += $(STATEDIR)/xlibs-xtst.targetinstall

$(STATEDIR)/realvnc.targetinstall: $(realvnc_targetinstall_deps)
	@$(call targetinfo, $@)
	
	@$(call touch, $@)

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

realvnc_clean:
	rm -rf $(STATEDIR)/realvnc.*
	rm -rf $(IMAGeDIR)/realvnc_*
	rm -rf $(REALVNC_DIR)

# vim: syntax=make