summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog3
-rw-r--r--debian/control6
-rw-r--r--debian/lighttpd.install1
-rwxr-xr-xdebian/rules34
4 files changed, 23 insertions, 21 deletions
diff --git a/debian/changelog b/debian/changelog
index d5235d5..fc17dfe 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,9 @@ lighttpd (1.4.23-1) UNRELEASED; urgency=low
* New upstream release
* spawn-fcgi is now separate package, recommends it debian/control
+ * Update Standards-Version to 3.8.2 without changes
+ * Remove cdbs, patchutils from Build-Depends, debian/rules use now
+ debhelper 7 scripts
-- Krzysztof Krzyżaniak (eloy) <eloy@debian.org> Thu, 09 Jul 2009 11:24:16 +0200
diff --git a/debian/control b/debian/control
index 4662972..d50ae02 100644
--- a/debian/control
+++ b/debian/control
@@ -6,13 +6,13 @@ Uploaders: Krzysztof Krzyżaniak (eloy) <eloy@debian.org>,
Torsten Marek <shlomme@debian.org>, Franz Pletz <fpletz@franz-pletz.org>,
Pierre Habouzit <madcoder@debian.org>
Homepage: http://www.lighttpd.net
-Build-Depends: debhelper (>= 7), cdbs, mime-support, libssl-dev,
+Build-Depends: debhelper (>= 7), mime-support, libssl-dev,
zlib1g-dev, libbz2-dev, libattr1-dev, libpcre3-dev, libmysqlclient15-dev,
libfam-dev, libldap2-dev, libfcgi-dev, libgdbm-dev, libmemcache-dev,
- liblua5.1-0-dev, quilt, patchutils, pkg-config, uuid-dev, libsqlite3-dev,
+ liblua5.1-0-dev, pkg-config, uuid-dev, libsqlite3-dev,
libxml2-dev, libkrb5-dev, perl
XS-Vcs-Svn: svn://svn.debian.org/pkg-lighttpd/lighttpd/trunk
-Standards-Version: 3.8.1
+Standards-Version: 3.8.2
Package: lighttpd
Homepage: http://www.lighttpd.net
diff --git a/debian/lighttpd.install b/debian/lighttpd.install
index 134da7e..2204892 100644
--- a/debian/lighttpd.install
+++ b/debian/lighttpd.install
@@ -1,4 +1,3 @@
-debian/tmp/usr/bin/*
debian/tmp/usr/sbin/*
debian/tmp/usr/share/man/*
debian/tmp/usr/lib/lighttpd/mod_access.so
diff --git a/debian/rules b/debian/rules
index 494701c..6cd57f1 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,19 +1,19 @@
#!/usr/bin/make -f
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/autotools.mk
-include /usr/share/cdbs/1/rules/patchsys-quilt.mk
-
-DEB_CONFIGURE_EXTRA_FLAGS += --libdir=/usr/lib/lighttpd --with-openssl \
- --with-kerberos5 --with-pcre --with-bz2 \
- --with-ldap --with-mysql --with-memcache \
- --with-lua=lua5.1 --with-gdbm --with-attr \
- --with-webdav-locks --with-webdav-props \
- --with-fam
-
-configure/lighttpd::
- chmod a+x debian/create-mime.assign.pl
- chmod a+x debian/include-conf-enabled.pl
- chmod a+x debian/lighty-enable-mod
- chmod a+x debian/use-ipv6.pl
-
+build: build-stamp
+build-stamp:
+ dh build --before auto_configure
+ ./configure --build=i486-linux-gnu --prefix=/usr \
+ --includedir="/usr/include" \
+ --mandir="/usr/share/man" \
+ --infodir="/usr/share/info" --sysconfdir=/etc \
+ --localstatedir=/var --libexecdir="/usr/lib/lighttpd" \
+ --disable-maintainer-mode --disable-dependency-tracking \
+ --srcdir=. --libdir=/usr/lib/lighttpd --with-openssl \
+ --with-kerberos5 --with-pcre --with-fam --with-ldap \
+ --with-mysql --with-memcache --with-lua=lua5.1 --with-gdbm \
+ --with-attr --with-webdav-locks --with-webdav-props
+ dh build --after auto_configure
+ touch $@
+%:
+ dh $@