summaryrefslogtreecommitdiffstats
path: root/rules/cfgsh.make
blob: 45702deb15c173bf77edca7145e8a3548dc4c982 (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: cfgsh.make,v 1.1.1.1 2004/09/22 13:17:02 gby Exp $
#
# Copyright (C) 2005 by Gilad Ben-Yossef <gilad@codefidence.com>
#          
# 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_CFGSH) += cfgsh

#
# Paths and names
#
CFGSH_VERSION		= 1.1.2
CFGSH			= cfgsh-$(CFGSH_VERSION)
CFGSH_SUFFIX		= tar.bz2
CFGSH_URL		= $(PTXCONF_SETUP_SFMIRROR)/cfgsh/$(CFGSH).$(CFGSH_SUFFIX)
CFGSH_SOURCE		= $(SRCDIR)/$(CFGSH).$(CFGSH_SUFFIX)
CFGSH_DIR		= $(BUILDDIR)/$(CFGSH)


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

cfgsh_get: $(STATEDIR)/cfgsh.get

$(STATEDIR)/cfgsh.get: $(cfgsh_get_deps_default)
	@$(call targetinfo, $@)
	@$(call touch, $@)

$(CFGSH_SOURCE):
	@$(call targetinfo, $@)
	@$(call get, CFGSH)

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

cfgsh_extract: $(STATEDIR)/cfgsh.extract

$(STATEDIR)/cfgsh.extract: $(cfgsh_extract_deps_default)
	@$(call targetinfo, $@)
	@$(call clean, $(CFGSH_DIR))
	@$(call extract, CFGSH)
	@$(call touch, $@)

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

cfgsh_prepare: $(STATEDIR)/cfgsh.prepare

CFGSH_PATH	=  PATH=$(CROSS_PATH)
CFGSH_ENV 	=  $(CROSS_ENV)
#CFGSH_ENV	+= 

#
# autoconf
#
CFGSH_AUTOCONF = \
	--build=$(GNU_HOST) \
	--host=$(PTXCONF_GNU_TARGET) \

$(STATEDIR)/cfgsh.prepare: $(cfgsh_prepare_deps_default)
	@$(call targetinfo, $@)
#	@$(call clean, $(CFGSH_DIR)/config.cache)
#	cd $(CFGSH_DIR) && \
#		$(CFGSH_PATH) $(CFGSH_ENV) \
#		./configure $(CFGSH_AUTOCONF)
	@$(call touch, $@)

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

cfgsh_compile: $(STATEDIR)/cfgsh.compile

$(STATEDIR)/cfgsh.compile: $(cfgsh_compile_deps_default)
	@$(call targetinfo, $@)
	$(CFGSH_ENV) $(CFGSH_PATH) make -C $(CFGSH_DIR)
	@$(call touch, $@)

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

cfgsh_install: $(STATEDIR)/cfgsh.install

$(STATEDIR)/cfgsh.install: $(cfgsh_install_deps_default)
	@$(call targetinfo, $@)
	# FIXME:
	# @$(call install, CFGSH)
	@$(call touch, $@)

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

cfgsh_targetinstall: $(STATEDIR)/cfgsh.targetinstall

$(STATEDIR)/cfgsh.targetinstall: $(cfgsh_targetinstall_deps_default)
	@$(call targetinfo, $@)

	@$(call install_init, cfgsh)
	@$(call install_fixup, cfgsh,PACKAGE,cfgsh)
	@$(call install_fixup, cfgsh,PRIORITY,optional)
	@$(call install_fixup, cfgsh,VERSION,$(CFGSH_VERSION))
	@$(call install_fixup, cfgsh,SECTION,base)
	@$(call install_fixup, cfgsh,AUTHOR,"Gilad Ben-Yossef <gilad\@codefidence.com>")
	@$(call install_fixup, cfgsh,DEPENDS, readline)
	@$(call install_fixup, cfgsh,DESCRIPTION,missing)

	@$(call install_copy, cfgsh, 0, 0, 0644, $(CFGSH_DIR)/cfgsh, /bin/cfgsh)
	@$(call touch, $@)

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

cfgsh_clean:
	rm -rf $(STATEDIR)/cfgsh.*
	rm -rf $(CFGSH_DIR)

# vim: syntax=make