+2003-01-09 Wichert Akkerman <wichert@deephackmode.org>
+
+ * debian/postinst, debian/prerm: removed, /usr/doc symlink is no
+ longer used
+ * debian/rules: no longer install postinst and prerm
+
2002-12-30 Roland McGrath <roland@redhat.com>
* Makefile.am (bin_SCRIPTS): New variable, list strace-graph.
Section: devel
Priority: standard
Maintainer: Wichert Akkerman <wakkerma@debian.org>
+Uploaders: Wichert Akkerman <wakkerma@debian.org>, Roland McGrath <frob@debian.org>
Build-Depends: libc6-dev (>= 2.2.2-1) [!alpha !ia64], libc6.1-dev (>= 2.2.2-1) [alpha ia64]
Standards-Version: 3.5.2
+++ /dev/null
-#! /bin/sh
-
-pkg=strace
-
-set -e
-
-if [ ! "$1" = "configure" ]; then
- exit 0
-fi
-
-if [ -d /usr/doc -a ! -e /usr/doc/$pkg -a -d /usr/share/doc/$pkg ] ; then
- ln -s ../share/doc/$pkg /usr/doc/$pkg
-fi
-
-
+++ /dev/null
-#! /bin/sh
-
-pkg=strace
-
-set -e
-
-if [ ! \( "$1" = "upgrade" -o "$1" = "remove" \) ]; then
- exit 0
-fi
-
-if [ -L /usr/doc/$pkg ]; then
- rm -f /usr/doc/$pkg
-fi
-
install -p -o root -g root -m 644 strace.1 debian/tmp/usr/share/man/man1/strace.1
gzip -9 debian/tmp/usr/share/man/man1/strace.1
- install -p -o root -g root -m 755 debian/prerm debian/tmp/DEBIAN/
- install -p -o root -g root -m 755 debian/postinst debian/tmp/DEBIAN/
-
dpkg-shlibdeps strace
dpkg-gencontrol -isp
dpkg --build debian/tmp ..