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
|
#!/usr/bin/make -f
DH_VERBOSE = 1
DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/buildflags.mk
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
# Workaround on exotic archs, probably any 32 bit arch with 64 bit kernel
# see bug #1019729
CFLAGS += -D_LARGE_FILE_SOURCE=1 -D_FILE_OFFSET_BITS=64 -Wno-cpp -Wno-error=incompatible-pointer-types -Wno-error=return-mismatch
%:
ifeq (mipsel,$(findstring mipsel,$(DEB_HOST_ARCH)))
dh $@ --no-parallel
else ifeq (mips64el,$(findstring mips64el,$(DEB_HOST_ARCH)))
dh $@ --no-parallel
else
dh $@
endif
override_dh_auto_clean:
# only try to run dh_auto_clean if configure has been run
test -f Makefile.conf && dh_auto_clean || true
override_dh_auto_configure:
./configure \
--LDFLAGS='$(LDFLAGS)' \
--CFLAGS='$(CFLAGS) $(CPPFLAGS)' \
\
--symbols \
--prefix=/usr \
--confdir=/etc/camv-rnd \
--prefix/libs/script/fungw=/dev/null \
\
--all=disable \
--buildin-io_tedax \
--buildin-std_tools \
--plugin-export_ps \
--plugin-import_gcode \
--plugin-import_excellon \
--plugin-export_lpr \
--plugin-import_gerb \
--plugin-export_svg \
--plugin-gui \
--plugin-dialogs \
--plugin-export_png \
|