File: rules

package info (click to toggle)
globus-gram-job-manager-pbs 3.1-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 1,480 kB
  • sloc: sh: 11,095; ansic: 864; perl: 711; makefile: 92
file content (48 lines) | stat: -rwxr-xr-x 1,138 bytes parent folder | download
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
#!/usr/bin/make -f
# -*- makefile -*-

name = globus-gram-job-manager-pbs

export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed -Wl,-z,defs

INSTALLDIR = debian/tmp

_docdir = /usr/share/doc/$(name)

perl_vendorlib = $(shell eval "`perl -V:installvendorlib`"; echo $$installvendorlib)

%:
	dh $@

override_dh_autoreconf:
	dh_autoreconf --as-needed

override_dh_auto_configure:
	MPIEXEC=no \
	MPIRUN=no \
	QDEL=/usr/bin/qdel \
	QSTAT=/usr/bin/qstat \
	QSUB=/usr/bin/qsub \
	dh_auto_configure -- \
	   --disable-static \
	   --includedir=/usr/include/globus \
	   --libexecdir=/usr/share/globus \
	   --docdir=$(_docdir) \
	   --with-perlmoduledir=$(perl_vendorlib) \
	   --with-globus-state-dir=/var/log/globus \
	   --with-log-path=/var/spool/torque

override_dh_auto_install:
	dh_auto_install

	# Remove libtool archives (.la files)
	rm $(INSTALLDIR)/usr/lib/*/*.la

	# Remove jobmanager-pbs from install dir - leave it for admin config
	rm $(INSTALLDIR)/etc/grid-services/jobmanager-pbs

	# Remove installed license file
	rm $(INSTALLDIR)$(_docdir)/GLOBUS_LICENSE

override_dh_strip:
	dh_strip --dbgsym-migration='$(name)-dbg (<< 2.6-2~)'