#!/usr/bin/make -f

# See debhelper(7) (uncomment to enable)
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1

# see FEATURE AREAS in dpkg-buildflags(1)
#export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# see ENVIRONMENT in dpkg-buildflags(1)
# package maintainers to append CFLAGS
#export DEB_CFLAGS_MAINT_APPEND  = -Wall -pedantic
# package maintainers to append LDFLAGS
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed

%:
	dh $@

override_dh_auto_configure:
	./configure.sh

override_dh_auto_build:
	make

override_dh_auto_install:
	make install DESTDIR=debian/wsssh-tools
	dh_installman man/*.1

	# Create necessary directories
	mkdir -p debian/wsssh-tools/etc/init.d
	mkdir -p debian/wsssh-tools/usr/share/wsssh
	mkdir -p debian/wsssh-tools/etc/default
	mkdir -p debian/wsssh-tools/usr/bin
	mkdir -p debian/wsssh-tools/usr/sbin
	mkdir -p debian/wsssh-tools/etc/logrotate.d

	# Install wssshc init script
	install -m 755 ../wssshc.init debian/wsssh-tools/etc/init.d/wssshc

	# Install wssshc watchdog script
	install -m 755 debian/wssshc-watchdog debian/wsssh-tools/usr/sbin/wssshc-watchdog

	# Install wssshc configuration files
	install -m 644 ../wssshc.conf.example debian/wsssh-tools/usr/share/wsssh/
	install -m 644 debian/wssshc.default debian/wsssh-tools/etc/default/wssshc

	# Install wsssht init script
	install -m 755 ../wsssht.init debian/wsssh-tools/etc/init.d/wsssht

	# Install wsssht watchdog script
	install -m 755 debian/wsssht-watchdog debian/wsssh-tools/usr/sbin/wsssht-watchdog

	# Install wsssht configuration files
	install -m 644 ../wsssht.conf.example debian/wsssh-tools/usr/share/wsssh/
	install -m 644 debian/wsssht.default debian/wsssh-tools/etc/default/wsssht

	# Install logrotate configuration
	install -m 644 debian/wssshc.logrotate debian/wsssh-tools/etc/logrotate.d/wssshc
	install -m 644 debian/wsssht.logrotate debian/wsssh-tools/etc/logrotate.d/wsssht

	# Install systemd service file
	mkdir -p debian/wsssh-tools/lib/systemd/system
	install -m 644 debian/wssshc.service debian/wsssh-tools/lib/systemd/system/
	install -m 644 debian/wsssht.service debian/wsssh-tools/lib/systemd/system/

override_dh_auto_clean:
	make clean
	rm -f configure.sh.stamp