2008-12-30 00:57:07 +01:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -*- makefile -*-
|
|
|
|
# Sample debian/rules that uses debhelper.
|
|
|
|
# This file was originally written by Joey Hess and Craig Small.
|
|
|
|
# As a special exception, when this file is copied by dh-make into a
|
|
|
|
# dh-make output file, you may use that output file without restriction.
|
|
|
|
# This special exception was added by Craig Small in version 0.37 of dh-make.
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
2012-03-24 21:12:55 +01:00
|
|
|
%:
|
|
|
|
dh $@ --with autotools-dev
|
2008-12-30 00:57:07 +01:00
|
|
|
|
|
|
|
|
2012-03-24 21:12:55 +01:00
|
|
|
# elf-2012.03.24: This work should be done in the Makefile install
|
|
|
|
# target instead of debian/rules.
|
|
|
|
override_dh_install:
|
2008-12-30 00:57:07 +01:00
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
2012-03-24 21:12:55 +01:00
|
|
|
dh_prep
|
2008-12-30 00:57:07 +01:00
|
|
|
dh_installdirs
|
|
|
|
@# Add here commands to install the package into debian/tmp
|
2009-08-15 07:24:31 +02:00
|
|
|
$(MAKE) install DESTDIR="$(CURDIR)/debian/tmp"
|
2012-03-24 21:12:55 +01:00
|
|
|
# Set up system-wide user CSS style options
|
2009-08-15 07:24:31 +02:00
|
|
|
mkdir -p "$(CURDIR)/debian/tmp/etc/shellinabox/options-available" \
|
|
|
|
"$(CURDIR)/debian/tmp/etc/shellinabox/options-enabled"
|
|
|
|
for i in "00+Black on White" "00_White On Black" \
|
|
|
|
"01_Monochrome" "01+Color Terminal"; do \
|
2012-03-31 21:42:40 +02:00
|
|
|
cp "$(CURDIR)/debian/tmp/usr/share/doc/shellinabox/$$(echo "$$i"| \
|
2009-08-15 07:24:31 +02:00
|
|
|
sed -e 's/[0-9]*[_+]\([^ ]*\).*/\1/'| \
|
|
|
|
tr A-Z a-z)"*.css \
|
|
|
|
"$(CURDIR)/debian/tmp/etc/shellinabox/options-available/$$i.css";\
|
|
|
|
done
|
|
|
|
cd "$(CURDIR)/debian/tmp/etc/shellinabox/options-enabled" && \
|
|
|
|
ln -s ../options-available/*.css .
|
|
|
|
cp "$(CURDIR)/debian/README.available" \
|
|
|
|
"$(CURDIR)/debian/tmp/etc/shellinabox/options-available/README"
|
|
|
|
cp "$(CURDIR)/debian/README.enabled" \
|
|
|
|
"$(CURDIR)/debian/tmp/etc/shellinabox/options-enabled/README"
|
2012-03-24 21:12:55 +01:00
|
|
|
# Add Lintian override. ShellInABox has an explicit exemption allowing
|
|
|
|
# the linking its GPLv2 code with OpenSSL.
|
2009-12-02 09:21:03 +01:00
|
|
|
mkdir -p "$(CURDIR)/debian/tmp/usr/share/lintian/overrides/"
|
|
|
|
{ echo '# ShellInABox has an explicit exemption allowing the linking';\
|
|
|
|
echo '# of its GPLv2 code with OpenSSL'; \
|
|
|
|
echo 'shellinabox binary: possible-gpl-code-linked-with-openssl'; } \
|
|
|
|
>"$(CURDIR)/debian/tmp/usr/share/lintian/overrides/shellinabox"
|
2012-03-25 01:26:39 +01:00
|
|
|
dh_install
|