summaryrefslogtreecommitdiffstats
path: root/rules/libIDL-2.make
blob: 4d4a902a81ee258539584e6ae2a9ba2baac53e27 (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
# -*-makefile-*-
# $Id$
#
# Copyright (C) 2003 by Robert Schwebel <r.schwebel@pengutronix.de>
#                       Pengutronix <info@pengutronix.de>, Germany
#          
# 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: is this a hosttool? 

#
# We provide this package
#
PACKAGES-$(PTXCONF_LIBIDL_2) += libidl-2

#
# Paths and names
#
LIBIDL_2_VERSION	= 0.8.3
LIBIDL_2		= libIDL-$(LIBIDL_2_VERSION)
LIBIDL_2_SUFFIX		= tar.gz
LIBIDL_2_URL		= http://ftp.gnome.org/pub/GNOME/sources/libIDL/0.8/$(LIBIDL_2).$(LIBIDL_2_SUFFIX)
LIBIDL_2_SOURCE		= $(SRCDIR)/$(LIBIDL_2).$(LIBIDL_2_SUFFIX)
LIBIDL_2_DIR		= $(BUILDDIR)/$(LIBIDL_2)


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

libidl-2_get: $(STATEDIR)/libidl-2.get

$(STATEDIR)/libidl-2.get: $(libidl-2_get_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

$(LIBIDL_2_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, LIBIDL_2)

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

libidl-2_extract: $(STATEDIR)/libidl-2.extract

$(STATEDIR)/libidl-2.extract: $(libidl-2_extract_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(LIBIDL_2_DIR))
	@$(call extract, LIBIDL_2)
	@$(call patchin, LIBIDL_2)
	@$(call touch, $@)

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

libidl-2_prepare: $(STATEDIR)/libidl-2.prepare

LIBIDL_2_PATH	=  PATH=$(PTXCONF_PREFIX)/$(PTXCONF_GNU_TARGET)/bin:$(CROSS_PATH)
LIBIDL_2_ENV 	= \
	$(CROSS_ENV) \
	libIDL_cv_long_long_format=ll

#
# autoconf
#
LIBIDL_2_AUTOCONF	=  $(CROSS_AUTOCONF_USR)

ifdef PTXCONF_LIBIDL_2_FOO
LIBIDL_2_AUTOCONF	+= --enable-foo
endif

$(STATEDIR)/libidl-2.prepare: $(libidl-2_prepare_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(LIBIDL_2_BUILDDIR))
	cd $(LIBIDL_2_DIR) && \
		$(LIBIDL_2_PATH) $(LIBIDL_2_ENV) \
		./configure $(LIBIDL_2_AUTOCONF)
	@$(call touch, $@)

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

libidl-2_compile: $(STATEDIR)/libidl-2.compile

$(STATEDIR)/libidl-2.compile: $(libidl-2_compile_deps_default)
	@$(call targetinfo, $@)

	cd $(LIBIDL_2_DIR) && $(LIBIDL_2_PATH) $(LIBIDL_2_ENV) make

	@$(call touch, $@)

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

libidl-2_install: $(STATEDIR)/libidl-2.install

$(STATEDIR)/libidl-2.install: $(libidl-2_install_deps_default)
	@$(call targetinfo, $@)
	@$(call install, LIBIDL_2)
	@$(call touch, $@)

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

libidl-2_targetinstall: $(STATEDIR)/libidl-2.targetinstall

$(STATEDIR)/libidl-2.targetinstall: $(libidl-2_targetinstall_deps_default)
	@$(call targetinfo, $@)
	# FIXME: nothing to do? 
	@$(call touch, $@)

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

libidl-2_clean:
	rm -rf $(STATEDIR)/libidl-2.*
	rm -rf $(LIBIDL_2_DIR)

# vim: syntax=make