summaryrefslogtreecommitdiffstats
path: root/rules/dibbler.make
blob: 832370c9c3f6556a1627bc05644c90eb15ffc17d (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
# -*-makefile-*-
#
# Copyright (C) 2010 by Remy Bohmer <linux@bohmer.net>
#
# 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_DIBBLER) += dibbler

#
# Paths and names
#
DIBBLER_VERSION	:= 0.7.3
DIBBLER_MD5	:= 39be72da38c2e6d33fd43a2811a276b1
DIBBLER		:= dibbler-$(DIBBLER_VERSION)
DIBBLER_SUFFIX	:= tar.gz
DIBBLER_URL	:= http://klub.com.pl/dhcpv6/dibbler/$(DIBBLER)-src.$(DIBBLER_SUFFIX)
DIBBLER_SOURCE	:= $(SRCDIR)/$(DIBBLER)-src.$(DIBBLER_SUFFIX)
DIBBLER_DIR	:= $(BUILDDIR)/$(DIBBLER)
DIBBLER_LICENSE	:= GPL-2.0

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

DIBBLER_MAKE_ENV := $(CROSS_ENV_CC) $(CROSS_ENV_CXX)
DIBBLER_MAKE_OPT := CHOST=$(PTXCONF_GNU_TARGET)
DIBBLER_MAKE_PAR := NO

#
# autoconf
#
# Remove the pre-configure of a sub-component, so configure is
# called in make for correct cross-compilation
$(STATEDIR)/dibbler.prepare:
	@$(call targetinfo)
	@rm -f $(DIBBLER_DIR)/poslib/config.h
	@$(call touch)

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

DIBBLER_INSTALL_OPT := \
	INST_WORKDIR=$(DIBBLER_PKGDIR)/var/lib/dibbler \
	INST_MANDIR=$(DIBBLER_PKGDIR)/usr/share/man \
	INST_DOCDIR=$(DIBBLER_PKGDIR)/usr/share/doc \
	INST_BINDIR=$(DIBBLER_PKGDIR)/usr/sbin \
	INST_CONFDIR=$(DIBBLER_PKGDIR)/etc/dibbler \
	install

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

$(STATEDIR)/dibbler.targetinstall:
	@$(call targetinfo)

	@$(call install_init,  dibbler)
	@$(call install_fixup, dibbler,PRIORITY,optional)
	@$(call install_fixup, dibbler,SECTION,base)
	@$(call install_fixup, dibbler,AUTHOR,"Remy Bohmer <linux@bohmer.net>")
	@$(call install_fixup, dibbler,DESCRIPTION,missing)

	@$(call install_copy, dibbler, 0, 0, 0755, /etc/dibbler)
	@$(call install_copy, dibbler, 0, 0, 0755, /var/lib/dibbler)
	@$(call install_copy, dibbler, 0, 0, 0755, /var/log/dibbler)

ifdef PTXCONF_DIBBLER_SERVER
	@$(call install_copy, dibbler, 0, 0, 0755, -, /usr/sbin/dibbler-server)
	@$(call install_copy, dibbler, 0, 0, 0644, -, /etc/dibbler/server.conf)
	@$(call install_alternative, dibbler, 0, 0, 0644, /etc/dibbler/server-stateless.conf)
endif

ifdef PTXCONF_DIBBLER_SERVER_STARTSCRIPT
	@$(call install_alternative, dibbler, 0, 0, 0755, /etc/init.d/dibbler-server)

ifneq ($(call remove_quotes,$(PTXCONF_DIBBLER_SERVER_BBINIT_LINK)),)
	@$(call install_link, dibbler, \
		../init.d/dibbler-server, \
		/etc/rc.d/$(PTXCONF_DIBBLER_SERVER_BBINIT_LINK))
endif
endif

ifdef PTXCONF_DIBBLER_CLIENT
	@$(call install_copy, dibbler, 0, 0, 0755, -, /usr/sbin/dibbler-client)
	@$(call install_alternative, dibbler, 0, 0, 0644, /etc/dibbler/client.conf)
	@$(call install_alternative, dibbler, 0, 0, 0644, /etc/dibbler/client-stateless.conf)
endif

ifdef PTXCONF_DIBBLER_CLIENT_STARTSCRIPT
	@$(call install_alternative, dibbler, 0, 0, 0755, /etc/init.d/dibbler-client)

ifneq ($(call remove_quotes,$(PTXCONF_DIBBLER_CLIENT_BBINIT_LINK)),)
	@$(call install_link, dibbler, \
		../init.d/dibbler-client, \
		/etc/rc.d/$(PTXCONF_DIBBLER_CLIENT_BBINIT_LINK))
endif
endif

ifdef PTXCONF_DIBBLER_RELAY
	@$(call install_copy, dibbler, 0, 0, 0755, -, /usr/sbin/dibbler-relay)
	@$(call install_alternative, dibbler, 0, 0, 0644, /etc/dibbler/relay.conf)
endif

ifdef PTXCONF_DIBBLER_RELAY_STARTSCRIPT
	@$(call install_alternative, dibbler, 0, 0, 0755, /etc/init.d/dibbler-relay)

ifneq ($(call remove_quotes,$(PTXCONF_DIBBLER_RELAY_BBINIT_LINK)),)
	@$(call install_link, dibbler, \
		../init.d/dibbler-relay, \
		/etc/rc.d/$(PTXCONF_DIBBLER_RELAY_BBINIT_LINK))
endif
endif

	@$(call install_finish, dibbler)
	@$(call touch)

# vim: syntax=make