#!/usr/bin/make -f
# -*- makefile -*-

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

include /usr/share/dpkg/pkg-info.mk

## kernel package specific stuff
# Name of the source package
psource:=rtpengine-kernel-source
# Name of the dkms package
pdkms:=rtpengine-kernel-dkms
# short upstream name, used for module source directory
sname:=rtpengine
# Source version
sversion:=$(DEB_VERSION_UPSTREAM)

PACKAGE=rtpengine-kernel
## end of kernel package specific stuff

XTABLES_DIR:=$(shell pkg-config xtables --variable=xtlibdir || echo /lib/xtables)

devi := $(shell lsb_release -r -s | cut -d '.'  -f1)

# this for disable non available features on debian 5 and 6 also venenux 0.8 and 0.9
ifeq ($(shell if [ $(devi) -gt 7 ] ; then echo gt ; else echo lt ; fi),gt)
   DEBVE=yes
else
   DEBVE=no
endif

# this to disable transcoding on non-recet-ffmpeg builds for debian 7 and 8
ifeq ($(shell if [ $(devi) -gt 8 ] ; then echo gt ; else echo lt ; fi),gt)
   DEBVE2=yes
else
   DEBVE2=no
endif

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

%:
	dh $@

ifeq ($(DEBVE),no)
override_dh_auto_test:
	
#override_dh_auto_clean:
#	with_transcoding=no make distclean
#
#override_dh_auto_build:
#	with_transcoding=no make
endif

override_dh_auto_install-indep:
	# Create the directories to install the source into
	dh_installdirs -p$(psource)  usr/src/modules/$(sname)/debian
	dh_installdirs -p$(pdkms)    usr/src/$(sname)-$(sversion)

	# Copy only the driver source to the proper locations
	cd kernel-module && cp Makefile *.c *.h ../debian/$(psource)/usr/src/modules/$(sname)
	cd kernel-module && cp Makefile *.c *.h ../debian/$(pdkms)/usr/src/$(sname)-$(sversion)

	# Copy the needed debian/ pieces to the proper location
	cp debian/*.modules.in* debian/$(psource)/usr/src/modules/$(sname)/debian
	cp debian/control debian/changelog debian/copyright \
		debian/compat debian/$(psource)/usr/src/modules/$(sname)/debian/
	install -m 0755 debian/rules.modules debian/$(psource)/usr/src/modules/$(sname)/debian/rules
	cd debian/$(psource)/usr/src && tar c modules | bzip2 -9 > $(sname).tar.bz2 && rm -rf modules

	# Prepare dkms.conf from the dkms.conf.in template
	sed "s/__VERSION__/$(sversion)/g" debian/dkms.conf.in > debian/$(pdkms)/usr/src/$(sname)-$(sversion)/dkms.conf

	# markdown README
	markdown README.md | gzip -9 > debian/README.html.gz
	gzip -9 < README.md > debian/README.md.gz

	dh_auto_install

override_dh_install:
	dh_install
	dh_installdirs -prtpengine-iptables $(XTABLES_DIR)
	install -m 0644 iptables-extension/libxt_RTPENGINE.so debian/rtpengine-iptables/$(XTABLES_DIR)

ifeq ($(DEBVE2),yes)
override_dh_systemd_enable:
	dh_systemd_enable
	dh_systemd_enable -prtpengine-recording-daemon --name=rtpengine-recording-nfs-mount
endif
