Package: koules Version: 1.4-11.1 Severity: normal Tags: patch Hi,
Attached is the diff for my koules 1.4-11.2 NMU. -- .''`. Fuck your fascist beauty standards : :' : `. `' Proudly running unstable Debian GNU/Linux `- www.amayita.com www.malapecora.com www.chicasduras.com
diff -u koules-1.4/debian/changelog koules-1.4/debian/changelog --- koules-1.4/debian/changelog +++ koules-1.4/debian/changelog @@ -1,3 +1,10 @@ +koules (1.4-11.2) unstable; urgency=low + + * Non-maintainer upload. + * Get rid of the /usr/doc link in postinst (Closes: #331719). + + -- Amaya Rodrigo Sastre <[EMAIL PROTECTED]> Sun, 16 Jul 2006 22:08:17 +0200 + koules (1.4-11.1) unstable; urgency=low * Non-maintainer upload. diff -u koules-1.4/debian/koules.postinst koules-1.4/debian/koules.postinst --- koules-1.4/debian/koules.postinst +++ koules-1.4/debian/koules.postinst @@ -12,9 +12,9 @@ update-menus fi -if [ -d /usr/doc -a ! -e /usr/doc/koules -a -d /usr/share/doc/koules ]; then - ln -sf ../share/doc/koules /usr/doc/koules -fi +if [ -d /usr/doc -a -h /usr/doc/koules -a -d /usr/share/doc/koules ]; then + rm -f /usr/doc/koules + fi ln -sf /usr/games/xkoules /usr/games/koules only in patch2: unchanged: --- koules-1.4.orig/debian/postinst +++ koules-1.4/debian/postinst @@ -0,0 +1,9 @@ +#!/bin/sh + +if [ "$1" = "configure" ]; then + if [ -d /usr/doc -a -h /usr/doc/PAQUETE -a -d /usr/share/doc/PAQUETE ]; then + rm -f /usr/doc/PAQUETE + fi +fi + +#DEBHELPER#