#!/usr/bin/make -f

##############
# Legal stuff
##############

# Copyright (c) 2003-2009 Ludovic Brenta <lbrenta@debian.org>
# Copyright (c) 2009-2017 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.

# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

# On Debian systems, the full text of the GPL is in the file
# /usr/share/common-licenses/GPL-3.

######################
# Set some variables #
######################

define new_line :=


endef
$(eval $(addsuffix $(new_line),$(shell sed -n '\
  s/^  gnat, gnat-\([0-9.]\+\),$$/ \
    GNAT_VERSION:=\1 \
  /p;\
  s/^Package: lib[a-z-]\+\([0-9.]\+\)$$/ \
    SOVERSION:=\1 \
  /p;\
  ' debian/control)))

DEB_BUILD_MAINT_OPTIONS=hardening=+all
include /usr/share/dpkg/default.mk
include /usr/share/ada/debian_packaging-$(GNAT_VERSION).mk

LIB_NAME := $(patsubst lib%,%,$(DEB_SOURCE))

######################
# debhelper overrides
######################

# Uncomment this to turn on verbose mode.
# export DH_VERBOSE=1

%:
	dh $@ --with ada-library

.PHONY: override_dh_autoreconf
override_dh_autoreconf:
 # No -f option for autoconf-dickey, force update by deleting configure.
	rm -f configure
	dh_autoreconf autoconf-dickey

.PHONY: $(addprefix override_dh_auto_, \
  configure-arch configure-indep build-arch build-indep install clean)

override_dh_auto_configure-arch:
 # tests: samples/* will be installed into the -doc package, and used
 # by autopkgtest, but there is no point in compiling them now.
	dh_auto_configure -a -- \
          $(foreach v,ADAFLAGS CC CFLAGS CPPFLAGS LDFLAGS,"$(v)=$($(v))") \
          --without-tests \
          --with-shared --with-ada-sharedlib=libncursesada.so.$(SOVERSION)
 # with-ada-compiler="gprbuild $(BUILDER_OPTIONS)" actually has no effect.

override_dh_auto_clean:
	rm -f debian/build-lib-dynamic/* \
              debian/build-obj-dynamic/* \
              debian/build-lib-static/* \
              debian/build-obj-static/*
	dh_auto_clean

NCURSES_MODULES := form menu panel ncurses
NCURSES_CFLAGS  := `pkg-config --cflags $(NCURSES_MODULES)`
LDLIBS          := `pkg-config --libs $(NCURSES_MODULES)`
PROJECT := debian/$(LIB_NAME).gpr
GPR_VARS := ADAFLAGS CFLAGS CPPFLAGS LDFLAGS NCURSES_CFLAGS LDLIBS SOVERSION

override_dh_auto_build-arch:
	dh_auto_build -a -- -C include ncurses_def.h
	dh_auto_build -a -- -C gen
 # The src/ build system ignores CFLAGS when building two versions of
 # the library. We only call it to generate a needed file.
 # TODO: the NEWS changelog seems to tell that this has been fixed.
 # Is it possible to pass ADAFLAGS?
	dh_auto_build -a -- -C src terminal_interface-curses-trace.adb

	gprbuild $(PROJECT) $(BUILDER_OPTIONS) -XKIND=static \
	  $(foreach v,$(GPR_VARS),"-X$(v)=$($(v))")
	gprbuild $(PROJECT) $(BUILDER_OPTIONS) -XKIND=dynamic \
	  $(foreach v,$(GPR_VARS),"-X$(v)=$($(v))")

######################################################################

.PHONY: override_dh_ada_library-arch override_dh_ada_library-indep
override_dh_ada_library-arch:
	dh_ada_library KIND=dynamic \
	  $(foreach v,$(GPR_VARS),"$(v)=$($(v))") $(PROJECT)

# doc/ provides a -config script giving build flags for
# reverse dependencies. We ignore it as per Debian Ada Policy
# we prefer project files. It also contains HTML pages
# generated from the sources (make -C gen html). We do not
# regenerate them either because we do not want to install
# arch-dependant files into the -doc package. The
# arch-specific parts are identified in the comments anyway.

######################################################################

.PHONY: override_dh_installchangelogs
override_dh_installchangelogs:
	dh_installchangelogs --all NEWS

# samples/explain.txt is read by samples/sample-explanation.adb.
.PHONY: override_dh_compress
override_dh_compress:
	dh_compress --all \
          --exclude=.ads \
          --exclude=.adb \
          --exclude=explain.txt
