summaryrefslogtreecommitdiffstats
path: root/rules/omniorb.make
blob: 4e54e1af1af4547bbe22f8841500eb372a3d0e88 (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
# -*-makefile-*-
# $Id: template 2078 2004-12-01 15:28:17Z rsc $
#
# Copyright (C) 2005 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: ipkgize

#
# We provide this package
#
PACKAGES-$(PTXCONF_OMNIORB) += omniorb

#
# Paths and names
#
OMNIORB_VERSION		= 4.0.5
OMNIORB			= omniORB-$(OMNIORB_VERSION)
OMNIORB_SUFFIX		= tar.gz
OMNIORB_URL		= $(PTXCONF_SETUP_SFMIRROR)/omniorb/$(OMNIORB).$(OMNIORB_SUFFIX)
OMNIORB_SOURCE		= $(SRCDIR)/$(OMNIORB).$(OMNIORB_SUFFIX)
OMNIORB_DIR		= $(BUILDDIR)/$(OMNIORB)


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

omniorb_get: $(STATEDIR)/omniorb.get

$(STATEDIR)/omniorb.get: $(omniorb_get_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

$(OMNIORB_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, OMNIORB)

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

omniorb_extract: $(STATEDIR)/omniorb.extract

$(STATEDIR)/omniorb.extract: $(omniorb_extract_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(OMNIORB_DIR))
	@$(call extract, OMNIORB)
	@$(call patchin, OMNIORB)
	@$(call touch, $@)

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

omniorb_prepare: $(STATEDIR)/omniorb.prepare

OMNIORB_PATH	=  PATH=$(CROSS_PATH)
OMNIORB_ENV 	=  $(CROSS_ENV)

#
# autoconf
#
OMNIORB_AUTOCONF =  $(CROSS_AUTOCONF_USR)
ifdef PTXCONF_OMNIORB_SSL
OMNIORB_AUTOCONF += --with-ssl
endif

$(STATEDIR)/omniorb.prepare: $(omniorb_prepare_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(OMNIORB_DIR)/config.cache)
	cd $(OMNIORB_DIR) && \
		$(OMNIORB_PATH) $(OMNIORB_ENV) \
		./configure $(OMNIORB_AUTOCONF)
	@$(call touch, $@)

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

omniorb_compile: $(STATEDIR)/omniorb.compile

$(STATEDIR)/omniorb.compile: $(omniorb_compile_deps_default)
	@$(call targetinfo, $@)
	cd $(OMNIORB_DIR) && $(OMNIORB_ENV) $(OMNIORB_PATH) make
	@$(call touch, $@)

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

omniorb_install: $(STATEDIR)/omniorb.install

$(STATEDIR)/omniorb.install: $(omniorb_install_deps_default)
	@$(call targetinfo, $@)
	@$(call install, OMNIORB)
	@$(call touch, $@)

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

omniorb_targetinstall: $(STATEDIR)/omniorb.targetinstall

$(STATEDIR)/omniorb.targetinstall: $(omniorb_targetinstall_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

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

omniorb_clean:
	rm -rf $(STATEDIR)/omniorb.*
	rm -rf $(OMNIORB_DIR)

# vim: syntax=make