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
|
#!/usr/bin/make -f
# Copyright (c) 2003-2009 Ludovic Brenta <lbrenta@debian.org>
# Copyright (c) 2009-2022 Nicolas Boulenguez <nicolas@debian.org>
# This build script is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 3 of the
# License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
# On Debian systems, the full text of the GPL is in the file
# /usr/share/common-licenses/GPL-3.
DPKG_EXPORT_BUILDFLAGS := 1
DEB_BUILD_MAINT_OPTIONS := hardening=+all
DEB_ADAFLAGS_MAINT_APPEND := -gnatn
DEB_LDFLAGS_MAINT_APPEND := \
-Wl,--no-allow-shlib-undefined \
-Wl,--no-copy-dt-needed-entries \
-Wl,--no-undefined
include /usr/share/dpkg/buildflags.mk
include $(wildcard /usr/share/ada/packaging.mk)
# wildcard means: not during -indep builds.
%:
dh $@ --buildsystem=none
# A patch replaces gnatmake with gprbuild.
# Ignore the obsolete Makefile.
# Both kinds need SOVERSION set, allthough only shared uses its value.
common := -XSOVERSION=$(texttools_SO_VERSION)
# Select dependencies with pkg-config instead of hardcoding a version.
# Author: Sven Joachim <svenjoac@gmx.de>
# Bug-Debian: https://bugs.debian.org/851608
# Add -lm to the default value, see #717014.
# This is required even for static links, see Linker package.
common += -XLDLIBS='$(shell pkg-config --libs ncurses) -lm'
static := -XKIND=static
shared := -XKIND=dynamic
override_dh_auto_build-arch:
gprconfig --batch $(GPRCONFIGFLAGS)
ln -fs texttools.gpr.sed texttools.gpr
gprbuild -Ptexttools.gpr $(GPRBUILDFLAGS) $(common) $(static)
gprbuild -Ptexttools.gpr $(GPRBUILDFLAGS) $(common) $(shared)
override_dh_auto_test-arch:
gprbuild -Pexamples/examples.gpr.sed $(GPRBUILDFLAGS) $(common) \
$(static)
override_dh_auto_install-arch:
gprinstall -Ptexttools.gpr $(common) $(static) \
$(static_GPRINSTALLFLAGS)
gprinstall -Ptexttools.gpr $(common) $(shared) \
$(call shared_GPRINSTALLFLAGS,texttools)
|