summaryrefslogtreecommitdiff
path: root/ext/debian/rules
blob: acafa7df91166e51b5e46e1dfcc91ecabae25432 (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
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

INSTALL=install -Dp

prefix := $(CURDIR)/debian/tmp
bindir := $(prefix)/$(shell /usr/bin/ruby -rrbconfig -e 'puts RbConfig::CONFIG["bindir"]')
libdir := $(prefix)/usr/lib
localstatedir := $(prefix)/var
rubylibdir := $(shell /usr/bin/ruby -rrbconfig -e 'puts RbConfig::CONFIG["vendordir"]')
sysconfdir := $(prefix)/etc
pkgconfdir := $(sysconfdir)/puppet

ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
	CFLAGS += -O0
else
	CFLAGS += -O2
endif

configure: configure-stamp
configure-stamp:
	dh_testdir
	touch configure-stamp


build-arch: build
build-indep: build

build: build-stamp
build-stamp: configure-stamp
	dh_testdir
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp configure-stamp
	rm -f debian/puppet-common.logcheck.ignore.server
	dh_clean

install: build
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	$(CURDIR)/install.rb --destdir=debian/tmp --bindir=/usr/bin --sitelibdir=$(rubylibdir) --ruby=/usr/bin/ruby

	# strip executable bit from all the non-executable files.
	find $(prefix)/$(rubylibdir) -type f -perm /u+x,g+x,o+x -exec chmod a-x {} \;
	# fix the permissions on all of the directories
	find $(prefix)/$(rubylibdir) -type d -exec chmod 755 {} \;

	# Vim auto-syntax-highlighting stuff
	$(INSTALL) -m0644 ext/vim/syntax/puppet.vim				\
		$(CURDIR)/debian/vim-puppet/usr/share/vim/addons/syntax/
	$(INSTALL) -m0644 ext/vim/ftdetect/puppet.vim				\
		$(CURDIR)/debian/vim-puppet/usr/share/vim/addons/ftdetect/
	$(INSTALL) -m0644 debian/vim-puppet.yaml				\
		$(CURDIR)/debian/vim-puppet/usr/share/vim/registry/

	# Emacs mode
	$(INSTALL) -m0644 ext/emacs/puppet-mode.el			\
		$(CURDIR)/debian/puppet-el/usr/share/emacs/site-lisp/puppet-mode.el

	# Install the config.ru
	$(INSTALL) -m0644 ext/rack/config.ru \
		$(CURDIR)/debian/puppetmaster-passenger/usr/share/puppet/rack/puppetmasterd
	# Install apache2 site configuration template
	$(INSTALL) -m0644 ext/rack/example-passenger-vhost.conf \
		$(CURDIR)/debian/puppetmaster-passenger/usr/share/puppetmaster-passenger/apache2.site.conf.tmpl

	# Install example environment README
	$(INSTALL) -m0644 ext/README.environment \
		$(CURDIR)/debian/puppet-common/etc/puppet/environments/example_env/README.environment

	# Add ext directory
	cp -pr ext $(CURDIR)/debian/puppet-common/usr/share/puppet
	# Remove misc packaging artifacts not applicable to debian
	rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/gentoo
	rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/freebsd
	rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/solaris
	rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/suse
	rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/windows
	rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/redhat
	rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/ips
	rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/osx
	rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/build_defaults.yaml
	rm -rf $(CURDIR)/debian/puppet-common/usr/share/puppet/ext/project_data.yaml

	dh_installexamples -p puppet-common examples/*

	$(INSTALL) -d -m0775 $(pkgconfdir)/templates
	$(INSTALL) -d -m0775 $(pkgconfdir)/modules

	# Logcheck rules.  Gee I wish you could specify a file to source
	# in dh_installlogcheck.
	ln ext/logcheck/puppet debian/puppet-common.logcheck.ignore.server

# Build architecture-dependent files here.
binary-arch: build install

# Build architecture-independent files here.
binary-indep: build install
	dh_testdir
	dh_testroot
	dh_install -i
	dh_installdocs -i
	dh_installemacsen
	dh_installlogcheck
	dh_installman
	dh_installinit -ppuppetmaster
	dh_installinit --name=puppetqd
	dh_installinit -ppuppet --error-handler=true -- defaults 21
	dh_installlogrotate -i
	dh_lintian -i
	dh_compress -i
	dh_fixperms -i
	dh_installdeb -i
	dh_shlibdeps -i
	dh_gencontrol -i
	dh_md5sums -i
	dh_builddeb -i

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install configure