63b382790a43d0a7be15008e5fe15732a8a0f1e7
[busybox-power] / debian / rules
1 #!/usr/bin/make -f
2
3 SHELL := sh -e
4 DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH)
5 DEB_BUILD_ARCH := $(shell dpkg-architecture -qDEB_BUILD_ARCH)
6 SOURCE := $(shell dpkg-parsechangelog | sed -ne 's,^Source: *\(.*\)$$,\1,p')
7 VERSION_DEBIAN := $(shell dpkg-parsechangelog | sed -ne 's,^Version: *\(.*\)$$,\1,p')
8 VERSION := $(shell echo "$(VERSION_DEBIAN)" | sed -e 's,^[^:]*:,,' -e 's,-[^-]*$$,,')
9  
10 BUILD_DIR = debian/build
11 STAMPS_DIR = debian/stamps
12
13 ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
14         CONFIG_DEBUG = y
15 endif
16 ifneq (,$(findstring thumb,$(DEB_BUILD_OPTIONS)))
17         THUMB := -mthumb
18 endif
19
20 ifneq (,$(findstring parallel,$(DEB_BUILD_OPTIONS)))
21     PARALLEL_JOBS := $(shell echo $(DEB_BUILD_OPTIONS) | \
22         sed -e 's/.*parallel=\([0-9]\+\).*/\1/')
23     ifeq ($(DEB_BUILD_OPTIONS),$(PARALLEL_JOBS))
24         PARALLEL_JOBS := $(shell if [ -f /proc/cpuinfo ]; \
25             then echo `cat /proc/cpuinfo | grep 'processor' | wc -l`; \
26             else echo 1; fi)
27     endif
28     NJOBS := -j$(PARALLEL_JOBS)
29 endif
30
31 source: $(STAMPS_DIR)/source
32
33 $(STAMPS_DIR)/source: SOURCE_FILES = $(filter-out debian, $(wildcard * .[^.]*))
34 $(STAMPS_DIR)/source: DIR = $(BUILD_DIR)/source
35 $(STAMPS_DIR)/source:
36         dh_testdir
37         rm -rf '$(DIR)'
38         mkdir -p $(STAMPS_DIR) '$(DIR)'
39         cp -al $(SOURCE_FILES) '$(DIR)'
40         cd $(DIR); QUILT_PATCHES=$(CURDIR)/debian/patches quilt --quiltrc /dev/null push -a || test $$? = 2
41         touch $@
42
43 setup: $(STAMPS_DIR)/setup_busybox $(STAMPS_DIR)/setup_busybox-althist
44
45 $(STAMPS_DIR)/setup_%: SOURCE_DIR=$(BUILD_DIR)/source
46 $(STAMPS_DIR)/setup_%: DIR=$(BUILD_DIR)/build_$*
47 $(STAMPS_DIR)/setup_%: $(STAMPS_DIR)/source
48         dh_testdir
49         rm -rf '$(DIR)'
50         cp -al '$(SOURCE_DIR)' '$(DIR)'
51         cp debian/config/config.busybox '$(DIR)'/.config
52         grep -qv Diablo /etc/maemo_version \
53                 || cp debian/config/config.busybox.diablo '$(DIR)'/.config
54         if test "$*" == "busybox-althist"; then \
55                 sed -i "s/CONFIG_FEATURE_EDITING_SAVE_ON_EXIT=y/# CONFIG_FEATURE_EDITING_SAVE_ON_EXIT is not set/" '$(DIR)'/.config; fi
56         make -C '$(DIR)' oldconfig
57         touch $@
58
59 build: $(STAMPS_DIR)/build_busybox $(STAMPS_DIR)/build_busybox-althist
60
61 $(STAMPS_DIR)/build_%: DIR=$(BUILD_DIR)/build_$*
62 $(STAMPS_DIR)/build_%: $(STAMPS_DIR)/setup_%
63         dh_testdir
64         make -C '$(DIR)' $(NJOBS) THUMB=$(THUMB) busybox docs/busybox.1 BB_EXTRA_VERSION="$(shell lsb_release -is) $(VERSION_DEBIAN)"
65         make -C '$(DIR)' busybox.links
66         touch $@
67
68 $(BUILD_DIR) $(STAMPS_DIR):
69         @[ -d $@ ] || mkdir $@
70
71 maintainerclean:
72         rm -rf $(filter-out .svn debian, $(wildcard * .[^.]*))
73
74 clean:
75         dh_testdir
76         rm -rf $(BUILD_DIR) $(STAMPS_DIR)
77         dh_clean
78         rm -rf debian/busybox-power-althistory*
79
80 binary-indep:
81
82 binary-arch: binary-arch_busybox binary-arch_busybox-althist binary-arch_all
83
84 binary-arch_busybox: DIR = $(BUILD_DIR)/build_busybox
85 binary-arch_busybox: DH_OPTIONS = -pbusybox-power
86 binary-arch_busybox: $(STAMPS_DIR)/build_busybox
87         dh_testdir
88         dh_testroot
89         install -D -m644 debian/scripts/applets debian/busybox-power/opt/busybox-power/applets
90         install -D -m644 debian/scripts/functions debian/busybox-power/opt/busybox-power/functions
91         install -D -m755 $(DIR)/busybox_unstripped debian/busybox-power/opt/busybox-power/busybox.power
92
93 binary-arch_busybox-althist: DIR = $(BUILD_DIR)/build_busybox-althist
94 binary-arch_busybox-althist: DH_OPTIONS = -pbusybox-power-althist
95 binary-arch_busybox-althist: $(STAMPS_DIR)/build_busybox-althist
96         dh_testdir
97         dh_testroot
98         # busybox-power-althist == busybox-power, only BusyBox' .config differs
99         # Duplicate the maintainer scripts etc. into busybox-power-althist
100         for f in debian/busybox-power.*; do cp -p "$$f" "$${f/busybox-power/busybox-power-althist}"; done
101         install -D -m644 debian/scripts/applets debian/busybox-power-althist/opt/busybox-power/applets
102         install -D -m644 debian/scripts/functions debian/busybox-power-althist/opt/busybox-power/functions
103         install -D -m755 $(DIR)/busybox_unstripped debian/busybox-power-althist/opt/busybox-power/busybox.power
104
105 binary-arch_all:
106         dh_installdirs
107         dh_installdocs
108         dh_installchangelogs
109         dh_strip
110         dh_compress
111
112         dh_link
113         dh_fixperms
114         dh_installdeb
115
116         dh_shlibdeps
117         dh_gencontrol
118         dh_md5sums
119         dh_builddeb
120
121 binary: binary-indep binary-arch
122
123 DIR_ORIG = ../orig/$(SOURCE)-$(VERSION)
124 TAR_ORIG_NAME = $(SOURCE)_$(VERSION).orig.tar.gz
125 TAR_ORIG = $(firstword $(wildcard ../$(TAR_ORIG_NAME)) $(wildcard ../orig/$(TAR_ORIG_NAME)))
126
127 orig: $(DIR_ORIG)
128         rsync --delete --exclude debian --exclude .svk --exclude .svn --link-dest=$(DIR_ORIG)/ -a $(DIR_ORIG)/ .
129
130 $(DIR_ORIG):
131 ifeq ($(TAR_ORIG),)
132         $(error Cannot find orig tarball $(TAR_ORIG_NAME))
133 else
134         mkdir -p ../orig
135         tar -C ../orig -xzf $(TAR_ORIG)
136 endif
137