diff options
author | Arno Töll <arno@debian.org> | 2013-10-15 21:26:22 +0200 |
---|---|---|
committer | Arno Töll <arno@debian.org> | 2013-10-15 21:26:42 +0200 |
commit | fe5adabf94cfe6d18816076461153ae9309120bd (patch) | |
tree | fdfa8351e660523f6f021738868f840877a03146 | |
parent | 01172dc09ef4ed5add3a0c5971f49a48867e6490 (diff) | |
download | lighttpd-fe5adabf94cfe6d18816076461153ae9309120bd.tar.gz |
Add systemd support, thanks to Michael Stapelberg
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/control | 3 | ||||
-rwxr-xr-x | debian/rules | 4 |
3 files changed, 9 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index e6ebaa7..c3447e4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,9 +8,11 @@ lighttpd (1.4.33-1) UNRELEASED; urgency=low * Push debhelper's compat mode to 9, the use of maintscript helper requires 8.1 so we had to push the debhelper b-d anyway. * Fix "config.guess/config.sub out of date for arm64" by adding the patch - provided by Colin Watson. Thanks(Closes: #726394). + provided by Colin Watson. Thanks (Closes: #726394). + * Fix "[PATCH] use dh-systemd for proper systemd-related maintscripts" to + add systemd support. Thanks to Michael Stapelberg (Closes: #713859) - -- Arno Töll <arno@debian.org> Tue, 15 Oct 2013 20:23:01 +0200 + -- Arno Töll <arno@debian.org> Tue, 15 Oct 2013 21:24:49 +0200 lighttpd (1.4.31-4) unstable; urgency=high diff --git a/debian/control b/debian/control index bbef618..335bfdf 100644 --- a/debian/control +++ b/debian/control @@ -10,7 +10,8 @@ Build-Depends: debhelper (>= 9), mime-support, libssl-dev, zlib1g-dev, libbz2-dev, libattr1-dev, libpcre3-dev, libmysqlclient-dev, libfam-dev, libldap2-dev, libfcgi-dev, libgdbm-dev, libmemcache-dev, liblua5.1-0-dev, pkg-config, uuid-dev, libsqlite3-dev, - libxml2-dev, libkrb5-dev, perl, dpkg-dev (>= 1.16.1~), autotools-dev + libxml2-dev, libkrb5-dev, perl, dpkg-dev (>= 1.16.1~), autotools-dev, + dh-systemd (>= 1.3) Vcs-Git: git://git.debian.org/git/pkg-lighttpd/lighttpd.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-lighttpd/lighttpd.git Standards-Version: 3.9.4 diff --git a/debian/rules b/debian/rules index a8051c5..acef633 100755 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,9 @@ #!/usr/bin/make -f +export DH_VERBOSE=1 + %: - dh $@ --with autotools_dev + dh $@ --with autotools_dev,systemd override_dh_auto_configure: dh_auto_configure -- \ |