]> git.proxmox.com Git - mirror_ovs.git/blame - debian/rules
cirrus: Use FreeBSD 12.2.
[mirror_ovs.git] / debian / rules
CommitLineData
064af421
BP
1#!/usr/bin/make -f
2# -*- makefile -*-
3# Sample debian/rules that uses debhelper.
4#
5# This file was originally written by Joey Hess and Craig Small.
6# As a special exception, when this file is copied by dh-make into a
7# dh-make output file, you may use that output file without restriction.
8# This special exception was added by Craig Small in version 0.37 of dh-make.
9#
10# Modified to make a template file for a multi-binary package with separated
11# build-arch and build-indep targets by Bill Allombert 2001
3d8deded 12#export DH_VERBOSE=1
064af421 13
49c57a8f 14PACKAGE=openvswitch
3d8deded 15PACKAGE_DKMS=openvswitch-datapath-dkms
05cf5d25 16include /usr/share/dpkg/pkg-info.mk
49c57a8f 17
819a2d4c 18ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
a1b3608f
BP
19PARALLEL = -j$(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
20else
21PARALLEL =
819a2d4c 22endif
3d8deded
JP
23
24%:
1ca0323e 25 dh $@ --with autoreconf,python3 --parallel
3d8deded
JP
26
27# use --as-needed only if supported by dh-autoreconf (to simplify backporting)
28DH_AS_NEEDED=$(shell dpkg --compare-versions $$(dpkg --status dh-autoreconf | grep Version | cut -d' ' -f2) ge 6 && echo --as-needed)
29override_dh_autoreconf:
30 dh_autoreconf $(DH_AS_NEEDED)
31
32override_dh_auto_configure:
4886d4d2 33 dh_auto_configure -- --enable-ssl --enable-shared $(DATAPATH_CONFIGURE_OPTS)
3d8deded
JP
34
35override_dh_auto_test:
52db0bbe 36ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
0d3f2152 37 if $(MAKE) check TESTSUITEFLAGS='$(PARALLEL)' RECHECK=yes; then :; \
a1b3608f 38 else \
3d8deded 39 cat tests/testsuite.log; \
ff8c6aa1
BP
40 exit 1; \
41 fi
52db0bbe 42endif
3d8deded
JP
43
44override_dh_auto_build:
45 dh_auto_build -- dist distdir=openvswitch
46
47override_dh_auto_clean:
72fe72b3 48 rm -f python/ovs/*.pyc python/ovs/db/*.pyc
3d8deded 49 dh_auto_clean
064af421 50
8415fe32 51override_dh_install-arch:
3d8deded
JP
52 dh_install
53 # openvswitch-switch
54 cp debian/openvswitch-switch.template debian/openvswitch-switch/usr/share/openvswitch/switch/default.template
55
8415fe32 56override_dh_install-indep:
57 dh_install
58
3d8deded 59 # openvswitch-datapath-source
8a07709c 60 cp debian/rules.modules debian/openvswitch-datapath-source/usr/src/modules/openvswitch-datapath/debian/rules
a84edf54 61 chmod 755 debian/openvswitch-datapath-source/usr/src/modules/openvswitch-datapath/debian/rules
064af421 62 cd debian/openvswitch-datapath-source/usr/src && tar -c modules | bzip2 -9 > openvswitch-datapath.tar.bz2 && rm -rf modules
064af421 63
3d8deded 64 # openvswitch-datapath-dkms
49c57a8f 65 # setup the dirs
05cf5d25 66 dh_installdirs -p$(PACKAGE_DKMS) usr/src/$(PACKAGE)-$(DEB_VERSION_UPSTREAM)
49c57a8f
CS
67
68 # copy the source
05cf5d25 69 cd debian/$(PACKAGE_DKMS)/usr/src/$(PACKAGE)-$(DEB_VERSION_UPSTREAM) && tar xvzf $(CURDIR)/openvswitch.tar.gz && mv openvswitch/* openvswitch/.[a-z]* . && rmdir openvswitch
49c57a8f 70
f315ae4f 71 # check we can get kernel module names
3d8deded 72 $(MAKE) -C datapath print-build-modules
f315ae4f 73
49c57a8f 74 # Prepare dkms.conf from the dkms.conf.in template
05cf5d25 75 sed "s/__VERSION__/$(DEB_VERSION_UPSTREAM)/g; s/__MODULES__/$(shell $(MAKE) -C datapath print-build-modules | grep -v make)/" debian/dkms.conf.in > debian/$(PACKAGE_DKMS)/usr/src/$(PACKAGE)-$(DEB_VERSION_UPSTREAM)/dkms.conf
49c57a8f 76
f7c0a423 77 # We don't need the debian folder in there, just upstream sources...
05cf5d25 78 rm -rf debian/$(PACKAGE_DKMS)/usr/src/$(PACKAGE)-$(DEB_VERSION_UPSTREAM)/debian
f7c0a423 79 # We don't need the rhel stuff in there either
05cf5d25 80 rm -rf debian/$(PACKAGE_DKMS)/usr/src/$(PACKAGE)-$(DEB_VERSION_UPSTREAM)/rhel
f7c0a423 81 # And we should also clean useless license files, which are already
3d8deded 82 # described in our debian/copyright anyway.
888cf44d 83 rm -f debian/$(PACKAGE_DKMS)/usr/src/$(PACKAGE)-$(DEB_VERSION_UPSTREAM)/xenserver/LICENSE
3d8deded
JP
84
85override_dh_installinit:
8a5b3cfd 86 dh_installinit -R
3d8deded
JP
87
88override_dh_strip:
064af421 89 dh_strip --dbg-package=openvswitch-dbg
4886d4d2
EC
90
91override_dh_usrlocal:
c1397138
BP
92
93override_dh_installman:
94 dh_installman --language=C