]> granicus.if.org Git - strace/commitdiff
No longer install postinst and prerm since /usr/doc symlink is no longer needed
authorWichert Akkerman <wichert@deephackmode.org>
Wed, 8 Jan 2003 23:44:36 +0000 (23:44 +0000)
committerWichert Akkerman <wichert@deephackmode.org>
Wed, 8 Jan 2003 23:44:36 +0000 (23:44 +0000)
ChangeLog
debian/control
debian/postinst [deleted file]
debian/prerm [deleted file]
debian/rules

index ba65d891d195e70bf2abded9e4a36a7152f30868..c073a509c50425956549eb718903137df5704d53 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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.
index 4b22d502a5d7738c246e51b775221da8bd923375..49b4fbc2a739b183c8ce3ad199641d670b83509f 100644 (file)
@@ -2,6 +2,7 @@ Source: strace
 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
 
diff --git a/debian/postinst b/debian/postinst
deleted file mode 100755 (executable)
index 2046536..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-#! /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
-
-
diff --git a/debian/prerm b/debian/prerm
deleted file mode 100755 (executable)
index a176629..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#! /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
-
index 4f4c5d775f365ecc87d151facb76d29be31d8b19..acb4d5fcb6f89a64de84c4458a2e6e5ba830c1ed 100755 (executable)
@@ -45,9 +45,6 @@ binary-arch: checkroot
        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 ..