Rev 6 | Rev 17 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 6 | Rev 8 | ||
|---|---|---|---|
| 1 | #!/usr/bin/make -f |
1 | #!/usr/bin/make -f |
| 2 | # -*- makefile -*- |
2 | # -*- makefile -*- |
| 3 | 3 | ||
| 4 | # Uncomment this to turn on verbose mode. |
4 | # Uncomment this to turn on verbose mode. |
| 5 | #export DH_VERBOSE=1 |
5 | #export DH_VERBOSE=1 |
| 6 | 6 | ||
| 7 | # set some variables |
7 | # set some variables |
| 8 | ICONDIR=usr/share/icons |
8 | ICONDIR=usr/share/icons |
| 9 | SHAREDIR=usr/share/crystalcursors |
9 | SHAREDIR=usr/share/crystalcursors |
| 10 | WRAPPERDIR=etc/X11/cursors |
10 | WRAPPERDIR=etc/X11/cursors |
| 11 | 11 | ||
| 12 | build: build-indep |
12 | build: build-indep |
| 13 | 13 | ||
| 14 | build-indep: build-stamp |
14 | build-indep: build-stamp |
| 15 | build-stamp: |
15 | build-stamp: |
| 16 | dh_testdir |
16 | dh_testdir |
| 17 | 17 | ||
| 18 | $(MAKE) |
18 | $(MAKE) |
| 19 | 19 | ||
| 20 | touch build-stamp |
20 | touch build-stamp |
| 21 | 21 | ||
| 22 | clean: |
22 | clean: |
| 23 | dh_testdir |
23 | dh_testdir |
| 24 | dh_testroot |
24 | dh_testroot |
| 25 | rm -f build-stamp configure-stamp |
25 | rm -f build-stamp configure-stamp |
| 26 | 26 | ||
| 27 | $(MAKE) clean |
27 | $(MAKE) clean |
| 28 | 28 | ||
| 29 | dh_clean |
29 | dh_clean |
| 30 | 30 | ||
| 31 | install: build-indep |
31 | install: build-indep |
| 32 | dh_testdir |
32 | dh_testdir |
| 33 | dh_testroot |
33 | dh_testroot |
| 34 | dh_prep |
34 | dh_prep |
| 35 | dh_installdirs |
35 | dh_installdirs |
| 36 | 36 | ||
| 37 | # Add here commands to install the package into debian/crystalcursors. |
37 | # Add here commands to install the package into debian/crystalcursors. |
| 38 | $(MAKE) install PREFIX=$(CURDIR)/debian/crystalcursors/$(ICONDIR) |
38 | $(MAKE) install PREFIX=$(CURDIR)/debian/crystalcursors/$(ICONDIR) |
| 39 | find $(CURDIR)/debian/crystalcursors/$(ICONDIR) -type f -exec chmod 644 {} \;
|
39 | find $(CURDIR)/debian/crystalcursors/$(ICONDIR) -type f -exec chmod 644 {} \;
|
| 40 | find $(CURDIR)/debian/crystalcursors/$(ICONDIR) -type d -exec chmod 755 {} \;
|
40 | find $(CURDIR)/debian/crystalcursors/$(ICONDIR) -type d -exec chmod 755 {} \;
|
| 41 | 41 | ||
| 42 | # Don't overwrite system's default xcursor, just provide the directory |
42 | # Don't overwrite system's default xcursor, just provide the directory |
| 43 | rm -r $(CURDIR)/debian/crystalcursors/$(ICONDIR)/default/* |
43 | rm -r $(CURDIR)/debian/crystalcursors/$(ICONDIR)/default/* |
| 44 | 44 | ||
| 45 | # Find *.theme and copy 'em to wrapper-location (see #365072) |
45 | # Find *.theme and copy 'em to wrapper-location (see #365072) |
| 46 | # We have to change the Inherits line in (only) in the wrapper *.themes: |
46 | # We have to change the Inherits line in (only) in the wrapper *.themes: |
| 47 | # 1) find .themes |
47 | # 1) find .themes |
| 48 | # 2) remove lines with "Inherits" and save as tmp |
48 | # 2) remove lines with "Inherits" and save as tmp |
| 49 | # 3) write new Inherits-line with name of the directory in /usr/share/icons |
49 | # 3) write new Inherits-line with name of the directory in /usr/share/icons |
| 50 | # -- I know this is tricky, but I have not yet found a more elegant way to make |
50 | # -- I know this is tricky, but I have not yet found a more elegant way to make |
| 51 | # crystalcursors work with debian's update-alternative |
51 | # crystalcursors work with debian's update-alternative |
| 52 | OLDDIR=`pwd` ;\ |
52 | # In addition, add new symlinks that Qt 4 looks for |
| - | 53 | ||
| 53 | cd $(CURDIR)/debian/crystalcursors/$(ICONDIR); \ |
54 | cd $(CURDIR)/debian/crystalcursors/$(ICONDIR); \ |
| 54 | for theme in crystal*; do \ |
55 | for theme in crystal*; do \ |
| 55 | grep -v Inherits $(CURDIR)/debian/crystalcursors/$(ICONDIR)/$${theme}/index.theme > tmp ; \
|
56 | grep -v Inherits $(CURDIR)/debian/crystalcursors/$(ICONDIR)/$${theme}/index.theme > tmp ; \
|
| 56 | echo "Inherits = $${theme}" >> tmp ; \
|
57 | echo "Inherits = $${theme}" >> tmp ; \
|
| 57 | install -m 644 tmp $(CURDIR)/debian/crystalcursors/$(WRAPPERDIR)/$${theme}.theme; \
|
58 | install -m 644 tmp $(CURDIR)/debian/crystalcursors/$(WRAPPERDIR)/$${theme}.theme; \
|
| 58 | rm tmp; \ |
59 | rm tmp; \ |
| - | 60 | while read target link; do \ |
|
| - | 61 | if [ -e $$theme/cursors/$$target ]; then ln -sf $$target $$theme/cursors/$$link; fi; \ |
|
| - | 62 | done < $(CURDIR)/debian/extra_symlinks;\ |
|
| 59 | done ; \ |
63 | done |
| 60 | cd $${OLDDIR}
|
- | |
| 61 | 64 | ||
| 62 | binary-indep: build-indep install |
65 | binary-indep: build-indep install |
| 63 | dh_testdir |
66 | dh_testdir |
| 64 | dh_testroot |
67 | dh_testroot |
| 65 | dh_installchangelogs CHANGELOG |
68 | dh_installchangelogs CHANGELOG |
| 66 | dh_installdocs |
69 | dh_installdocs |
| 67 | # dh_install |
70 | # dh_install |
| 68 | dh_compress |
71 | dh_compress |
| 69 | dh_fixperms |
72 | dh_fixperms |
| 70 | dh_installdeb |
73 | dh_installdeb |
| 71 | dh_shlibdeps |
74 | dh_shlibdeps |
| 72 | dh_gencontrol |
75 | dh_gencontrol |
| 73 | dh_md5sums |
76 | dh_md5sums |
| 74 | dh_builddeb |
77 | dh_builddeb |
| 75 | 78 | ||
| 76 | binary-arch: |
79 | binary-arch: |
| 77 | # No arch-dependent packages |
80 | # No arch-dependent packages |
| 78 | 81 | ||
| 79 | binary: binary-indep |
82 | binary: binary-indep |
| 80 | .PHONY: build-indep build clean binary-indep binary-arch binary install configure |
83 | .PHONY: build-indep build clean binary-indep binary-arch binary install configure |