File: rules

package info (click to toggle)
between 6%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,524 kB
  • sloc: cpp: 28,110; php: 718; ansic: 638; objc: 245; sh: 236; makefile: 102; perl: 67
file content (67 lines) | stat: -rwxr-xr-x 2,578 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
# export DH_VERBOSE=1

# see FEATURE AREAS in dpkg-buildflags(1)
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# see ENVIRONMENT in dpkg-buildflags(1)
# package maintainers to append CFLAGS
#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
# package maintainers to append LDFLAGS
export DEB_LDFLAGS_MAINT_APPEND =

DPKG_EXPORT_BUILDFLAGS = 1
-include /usr/share/dpkg/buildflags.mk

%:
	dh $@

override_dh_auto_configure:
	chmod u+x game7/configure
	cd game7 && platformSelection=1 ./configure

override_dh_auto_build:
	convert -type Grayscale -negate ./game7/build/macOSX/iconMask.png mask.png
	composite -compose CopyOpacity mask.png ./game7/build/macOSX/iconColor.png between.png
	mkdir -p 32x32
	convert -scale 32x32 between.png 32x32/between.png
	convert 32x32/between.png 32x32/between.xpm
	sed -i -e 's/-lX11//' game7/gameSource/Makefile
	sed -i -e 's/^DEBUG_FLAG = .*/DEBUG_FLAG = /' game7/gameSource/Makefile
	sed -i -e 's/^OPTIMIZE_FLAG = .*/OPTIMIZE_FLAG = /' game7/gameSource/Makefile
	sed -i -e 's/^COMPILE_FLAGS = /COMPILE_FLAGS = $$(CFLAGS) $$(CPPFLAGS) /' game7/gameSource/Makefile
	sed -i -e 's/^LINK_FLAGS = /LINK_FLAGS = $$(LDFLAGS) /' game7/gameSource/Makefile
	dh_auto_build --sourcedirectory=game7/gameSource -- 'GXX=$$(CXX)' LDFLAGS="$(LDFLAGS)" CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS) -DETCDIR=\\\"/etc/between\\\" -DDATADIR=\\\"/usr/share/games/between/\\\""

override_dh_auto_clean:
	[ ! -f game7/gameSource/Makefile ] || $(MAKE) -C game7/gameSource clean
	rm -f game7/gameSource/Makefile
	rm -f game7/gameSource/Makefile.minorGems_dependencies
	rm -rf 32x32 between.png mask.png

override_dh_installchangelogs:
	dh_installchangelogs game7/documentation/changeLog.txt

V=6
P=Between
p=between
sfp=hcsoftware/Between

get-orig-source:
	wget -c http://downloads.sourceforge.net/project/$(sfp)/v$(V)/$(P)_v$(V)_UnixSource.tar.gz
	tar zxf $(P)_v$(V)_UnixSource.tar.gz
	# Embedded code copies, unused
	rm $(P)_v$(V)_UnixSource/minorGems/network/linux/gnut_*
	# VCS file
	rm $(P)_v$(V)_UnixSource/minorGems/.hgtags
	# Pre-built Windows libraries, unused
	rm $(P)_v$(V)_UnixSource/game7/build/win32/*.dll
	# non-free, unused
	rm -r $(P)_v$(V)_UnixSource/minorGems/util/development/fortify
	rm $(P)_v$(V)_UnixSource/minorGems/graphics/openGL/tga.*
	rm $(P)_v$(V)_UnixSource/minorGems/graphics/openGL/texture.*
	mv $(P)_v$(V)_UnixSource $(p)-$(V)+dfsg1.orig
	tar zcf ../$(p)_$(V)+dfsg1.orig.tar.gz $(p)-$(V)+dfsg1.orig
	rm -rf $(P)_v$(V)_UnixSource.tar.gz $(p)-$(V)+dfsg1.orig