Package: pmud-utils
Version: 0.10-9
Severity: serious
Justification: Breaks installation of new X11/XOrg R7.0
Please install xmouse into /usr/bin, rather than /usr/X11R6/bin. The
current X in unstable has removed the /usr/X11R6/bin directory:
$ ls -l /usr/X11R6/bin
lrwxrwxrwx 1 root root 8 2006-04-19 11:10 /usr/X11R6/bin -> /usr/bin/
Until pmud-utils is changed to install to /usr/bin, this breaks the
installation/upgrade of X11.
I've attached a patch to correct this. I'll NMU if this isn't fixed
in a few days, because this does cause breakage.
Regards,
Roger
-- System Information:
Debian Release: testing/unstable
APT prefers unstable
APT policy: (990, 'unstable')
Architecture: powerpc (ppc)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.1
Locale: LANG=en_GB.UTF8, LC_CTYPE=en_GB.UTF8 (charmap=UTF-8)
diff -urN pmud-0.10.original/debian/changelog pmud-0.10/debian/changelog
--- pmud-0.10.original/debian/changelog 2006-04-19 11:26:27.000000000 +0100
+++ pmud-0.10/debian/changelog 2006-04-19 11:31:29.516523999 +0100
@@ -1,3 +1,11 @@
+pmud (0.10-9.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * debian/rules: Install xmouse in /usr/bin, rather than /usr/X11/bin.
+ * Makefile: Install xmouse in /usr/bin, rather than /usr/X11/bin.
+
+ -- Roger Leigh <[EMAIL PROTECTED]> Wed, 19 Apr 2006 11:29:56 +0100
+
pmud (0.10-9) unstable; urgency=low
* Build-depend on libx11-dev after xlibs-dev split.
diff -urN pmud-0.10.original/debian/rules pmud-0.10/debian/rules
--- pmud-0.10.original/debian/rules 2006-04-19 11:26:27.000000000 +0100
+++ pmud-0.10/debian/rules 2006-04-19 11:29:53.171339598 +0100
@@ -62,9 +62,8 @@
# pmud-utils binaries
#install -d $(prefix_util)/sbin
#install -c fblevel $(prefix_util)/sbin/
- install -d $(prefix_util)/usr/X11R6/bin
- install -c xmouse $(prefix_util)/usr/X11R6/bin/
install -d $(prefix_util)/usr/bin
+ install -c xmouse $(prefix_util)/usr/bin/
install -c Batmon $(prefix_util)/usr/bin/
diff -urN pmud-0.10.original/Makefile pmud-0.10/Makefile
--- pmud-0.10.original/Makefile 2001-12-15 21:57:47.000000000 +0000
+++ pmud-0.10/Makefile 2006-04-19 11:28:51.971267432 +0100
@@ -39,7 +39,7 @@
$(CC) $(CFLAGS) -o fblevel fblevel.c
xmouse: xmouse.c
- $(CC) $(CLAGS) -o xmouse xmouse.c -L/usr/X11R6/lib -lX11
+ $(CC) $(CLAGS) -o xmouse xmouse.c -lX11
tcp.o: tcp.c tcp.h
$(CC) $(CFLAGS) -c tcp.c
@@ -49,7 +49,7 @@
install -c snooze /sbin
install -c wakebay /sbin
install -c fblevel /sbin
- install -c xmouse /usr/X11R6/bin
+ install -c xmouse /usr/bin
install -c Batmon /usr/bin
install -c -D pwrctl /etc/power/pwrctl
cp pmud.rc /etc/rc.d/init.d/pmud