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
|
#!/usr/bin/make -f
export MONO_DISABLE_SHM=1
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
DH_WITH := --with pkgkde_symbolshelper
ifneq (,$(filter %-cil, $(shell dh_listpackages)))
DH_WITH := $(DH_WITH),cli
VIRTUOSO_CIL = yes
endif
# Needed for memmmem at least in hurd and kfreebsd*
CFLAGS += -D_GNU_SOURCE
TEMPLATES := $(wildcard debian/*.in)
AUTOGEN += $(patsubst %.in,%,$(TEMPLATES))
%:
dh $@ $(DH_WITH)
override_dh_auto_configure: autogen
# Code copy of ckeditor was removed - bring this back into the code tree
ln -sf /usr/share/javascript/ckeditor3 appsrc/ODS-Framework/ckeditor
dh_auto_configure -- --with-layout=Debian --program-transform-name='s/isql$$/isql-vt/;s/isqlw/isqlw-vt/' --with-readline --without-internal-zlib --enable-all-vads
execute_after_dh_auto_build:
# manpages
find debian -maxdepth 1 -type f -name '*.1.xml' -execdir docbook2x-man --solinks {} \;
ifdef VIRTUOSO_CIL
# libvirtuoso5.5-cil
$(MAKE) -C binsrc/VirtuosoClient.Net -f Makefile.mono
chmod -x binsrc/VirtuosoClient.Net/OpenLink.Data.Virtuoso.dll
endif
override_dh_install:
dh_install -plibvirtodbc0 usr/lib/*/virtodbc*.so usr/lib/$(DEB_HOST_MULTIARCH)/odbc
ifdef VIRTUOSO_CIL
dh_install -plibvirtuoso5.5-cil debian/virtuoso.pc usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig
endif
dh_install --remaining-packages
override_dh_installinit:
dh_installinit --noscripts
execute_before_dh_auto_clean:
# manpages clean
$(RM) $(patsubst %.xml,%,$(wildcard debian/*.1.xml))
ifdef VIRTUOSO_CIL
# libvirtuoso5.5-cil clean
$(MAKE) -C binsrc/VirtuosoClient.Net -f Makefile.mono clean
endif
execute_after_dh_auto_clean:
$(RM) appsrc/ODS-Framework/ckeditor
$(RM) $(AUTOGEN)
override_dh_missing:
dh_missing --list-missing
autogen: $(AUTOGEN) ;
debian/%: debian/%.in
sed 's/@@DEB_HOST_MULTIARCH@@/$(DEB_HOST_MULTIARCH)/g' $< > $@
|