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 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226
|
#!/usr/bin/make -f
# Based on the initial work of Joey Hess and Craig Small.
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1
export DH_OPTIONS=-v
CMAKE=/usr/bin/cmake
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
DEBIAN_DIR = $(CURDIR)/debian
BUILD_DIR = $(DEBIAN_DIR)/build
# Path to the tools subdirectory in the top source dir to build the
# documentation.
export PATH := $(BUILD_DIR)/bin:$(CURDIR)/tools:$(PATH)
export LD_LIBRARY_PATH := $(BUILD_DIR)/lib/:$(LD_LIBRARY_PATH)
OPENMS_LIB_PACKAGE = libopenms1.11
OPENMS_LIB_VERSION = 1.11.1
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
CXXFLAGS += -O0
else
CXXFLAGS += -O2
endif
# Commented out to check if the parallel build mode triggers "race
# conditions" with the linker trying to link an incomplete set of
# object files.
# Although the .NOTPARALLEL: special make target below should do
# enough by itself.
# ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
# NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
# MAKEFLAGS += -j$(NUMJOBS)
# endif
$(info "---------------------------------------")
$(info NUMJOBS: $(NUMJOBS))
$(info MAKEFLAGS: $(MAKEFLAGS))
$(info DEB_BUILD_OPTIONS: $(DEB_BUILD_OPTIONS))
$(info "---------------------------------------")
# Hardening stuff, see http://wiki.debian.org/Hardening
# export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
CFLAGS+=$(CPPFLAGS)
CXXFLAGS+=$(CPPFLAGS)
.NOTPARALLEL:
.PHONY: clean
clean:
dh_testdir
dh_testroot
dh_clean
rm -rf $(BUILD_DIR)
# Remove the generated xpm icon files:
rm -f debian/TOPPAS.xpm
rm -f debian/TOPPView.xpm
# Remove the generated topp.1 man page:
rm -f debian/topp.1
build-arch-stamp:
dh_testdir
dh_prep -a
mkdir -p $(BUILD_DIR)
# On the command line, use
# -DCONTRIB_LIB_DIR="/usr/lib/$(dpkg-architecture -qDEB_BUILD_GNU_TYPE);/usr/lib/$(dpkg-architecture -qDEB_HOST_MULTIARCH);"
# see debian/changelog for the rationale.
@echo "DEB_BUILD_GNU_TYPE: $(DEB_BUILD_GNU_TYPE)"
@echo "DEB_HOST_MULTIARCH: $(DEB_HOST_MULTIARCH)"
cd $(BUILD_DIR) && \
$(CMAKE) -DCMAKE_FIND_LIBRARY_SUFFIXES=".so" \
-DCONTRIB_LIB_DIR="/usr/lib;/usr/lib/$(DEB_BUILD_GNU_TYPE);/lib/$(DEB_BUILD_GNU_TYPE);/usr/lib/$(DEB_HOST_MULTIARCH);/lib/$(DEB_HOST_MULTIARCH)" \
-DCF_OPENMS_DATA_PATH=/usr/share/openms-common/OpenMS/ \
-DCF_OPENMS_DOC_PATH=/usr/share/doc/openms-doc/ \
-DCMAKE_BUILD_TYPE=release \
-DDEBIAN_BUILD=ON -DBOOST_USE_STATIC=OFF ../..
# Build the libs and executable binaries
VERBOSE=1 $(MAKE) -C $(BUILD_DIR) \
OpenMS TOPP UTILS GUI test_build Tutorials_build
# Prepare the xpm-formatted pixmaps for the Debian menu system.
# Setting imagemagick to Build-Depends, for use of convert.
convert source/VISUAL/ICONS/TOPPAS.png -resize 32x32 debian/TOPPAS.xpm
convert source/VISUAL/ICONS/TOPPView.png -resize 32x32 debian/TOPPView.xpm
# Prepare the topp.1 man page with all the one-line description got
# from calling individually each program in $(BUILD_DIR)/bin with
# --help switch. The newly built libs need be in the path so that the
# binaries can execute. Same for the shared data path, because the
# binaries need it to run. Note the calling in sh ./ with the script
# shell being itself executable, otherwise git-buildpackage would
# fail.
@echo $(shell pwd)
cd $(DEBIAN_DIR) && \
OPENMS_DATA_PATH=$(CURDIR)/share/OpenMS/ \
LD_LIBRARY_PATH=$(BUILD_DIR)/lib/:$(LD_LIBRARY_PATH)\
sh ./binaries-extract-one-line-man-desc.sh
# Build the documentation, which needs a running XWindow server. We
# thus use the doc_minimal target.
cd $(BUILD_DIR) && \
$(CMAKE) -DCMAKE_FIND_LIBRARY_SUFFIXES=".so" \
-DCONTRIB_LIB_DIR="/usr/lib;/usr/lib/$(DEB_BUILD_GNU_TYPE);/lib/$(DEB_BUILD_GNU_TYPE);/usr/lib/$(DEB_HOST_MULTIARCH);/lib/$(DEB_HOST_MULTIARCH)" \
-DCF_OPENMS_DATA_PATH=/usr/share/openms-common/OpenMS/ \
-DCF_OPENMS_DOC_PATH=/usr/share/doc/openms-doc/ \
-DCMAKE_BUILD_TYPE=release \
-DDEBIAN_BUILD=ON -DBOOST_USE_STATIC=OFF ../..
VERBOSE=1 LD_LIBRARY_PATH=$(BUILD_DIR)/lib/:$(LD_LIBRARY_PATH)\
PATH=$(BUILD_DIR)/bin:$(CURDIR)/tools:$(PATH)\
OPENMS_DATA_PATH=$(CURDIR)/share/OpenMS/ \
$(MAKE) -C $(BUILD_DIR) doc_minimal doc_tutorials
# There are two files that we do not want to ship because
# they exist in their own Debian packages.
rm -f $(BUILD_DIR)/doc/html/jquery.js
touch build-arch-stamp
# Note that this requires a build of the binary arch stuff.
build-indep-stamp: build-arch-stamp
touch build-indep-stamp
.PHONY: build
build: build-arch-stamp build-indep-stamp
.PHONY: build-indep
build-indep: build-indep-stamp
.PHONY: build-arch
build-arch: build-arch-stamp
# Build architecture-independent files here.
.PHONY: binary-indep
binary-indep: build-indep
dh_testdir -i
dh_testroot -i
dh_installchangelogs -i CHANGELOG
dh_installdocs -i
dh_install -i
dh_installman -i
dh_compress -XOpenMS_tutorial.pdf -XTOPP_tutorial.pdf -i
dh_fixperms -i
dh_installdeb -i
dh_lintian -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i
# Build architecture-dependent files here.
.PHONY: binary-arch
binary-arch: build-arch
dh_testdir -a
dh_testroot -a
dh_link
dh_installchangelogs -a CHANGELOG
dh_installdocs -a
dh_install -a
# Now that install has been performed, remove all the Tutorial*
# binaries that will not ship in the topp package, but in the
# openms-doc package.
rm -vf $(DEBIAN_DIR)/topp/usr/bin/Tutorial*
dh_installmenu -a
dh_installman -a
dh_strip -a
dh_compress -a
dh_fixperms -a
dh_installdeb -a
# Generate the symbols for libs so that the call to dh_shlibdeps -a
# can work finding the dependencies upon
# $(OPENMS_LIB_PACKAGE). Specify the version (like x.yy.z) of the lib
# because otherwise, dpkg-gensymbols provides the full version with
# debian package version (x.yy.z-1), which we do not want.
dpkg-gensymbols -P$(DEBIAN_DIR) -p$(OPENMS_LIB_PACKAGE) \
-v$(OPENMS_LIB_VERSION) -c2 -d \
-e$(BUILD_DIR)/lib/libOpenMS.so.$(OPENMS_LIB_VERSION) \
-e$(BUILD_DIR)/lib/libOpenMS.so.$(OPENMS_LIB_VERSION) \
-e$(BUILD_DIR)/lib/libOpenSwathAlgo.so.$(OPENMS_LIB_VERSION) \
-O$(DEBIAN_DIR)/$(OPENMS_LIB_PACKAGE)/DEBIAN/symbols
# Send the proper shared libs details for the library:
echo "libOpenMS 1.11.1 libopenms1.11 (>= 1.11.1-1)" > \
$(DEBIAN_DIR)/$(OPENMS_LIB_PACKAGE)/DEBIAN/shlibs
echo "libOpenMS_GUI 1.11.1 libopenms1.11 (>= 1.11.1-1)" >> \
$(DEBIAN_DIR)/$(OPENMS_LIB_PACKAGE)/DEBIAN/shlibs
echo "libOpenSwathAlgo 1.11.1 libopenms1.11 (>= 1.11.1-1)" >> \
$(DEBIAN_DIR)/$(OPENMS_LIB_PACKAGE)/DEBIAN/shlibs
dh_lintian -a
dh_shlibdeps -a
dh_gencontrol -a
dh_md5sums -a
dh_builddeb -a
.PHONY: binary
binary: binary-arch binary-indep
|