aboutsummaryrefslogtreecommitdiff
path: root/debian/libnx-xinerama1.postinst.in
diff options
context:
space:
mode:
authorMihai Moldovan <ionic@ionic.de>2015-04-29 13:47:40 +0200
committerMihai Moldovan <ionic@ionic.de>2015-04-29 13:47:40 +0200
commit79d49066c11463b62f6ebc3fadf5e7de48f766db (patch)
treedb2e18fff0b85e18b7ac862ce06ca5989e40cf31 /debian/libnx-xinerama1.postinst.in
parent266d5affbc8339411090db497bfbafdc5e4944b2 (diff)
downloadnx-libs-79d49066c11463b62f6ebc3fadf5e7de48f766db.tar.gz
nx-libs-79d49066c11463b62f6ebc3fadf5e7de48f766db.tar.bz2
nx-libs-79d49066c11463b62f6ebc3fadf5e7de48f766db.zip
libnx-xinerama1: also create libXinerama symlink in libnx-xinerama1.postinst.postinst (and remove in libnx-xinerama1.postinst.prerm.)
Due to the nx-x11-common package being a noarch/allarch package, creating the symlink in nx-libs' Makefile will lead to the symlink referencing the "default" architecture dpkg uses for building noarch/allarch packages. Incidentally, this worked fine for Debian, as amd64 seems to be the default architecture. On Ubuntu, however, the default architecture up to Vivid (15.04) was i386. For those builds, the symlink pointed to the 32 bit library of libNX_Xinerama.so.1 -- essentially breaking this feature. Move the symlink creation to the arch-sensitive libnx-xinerama1 package. The postinst and prerm scriptlets will work fine, unless someone installs the i386 package version *after* the amd64 version. Given that we already create symlinks to libNX_X11 and friends using that method, no new regression is introduced. Strictly speaking that's a bug, but we'll hopefully clean that up later...
Diffstat (limited to 'debian/libnx-xinerama1.postinst.in')
-rwxr-xr-xdebian/libnx-xinerama1.postinst.in12
1 files changed, 10 insertions, 2 deletions
diff --git a/debian/libnx-xinerama1.postinst.in b/debian/libnx-xinerama1.postinst.in
index c690be387..9b88c4b6f 100755
--- a/debian/libnx-xinerama1.postinst.in
+++ b/debian/libnx-xinerama1.postinst.in
@@ -26,14 +26,22 @@ case "$1" in
libdir=/usr/lib/#DEB_BUILD_MULTIARCH#
- rm -f /usr/lib/nx/X11/Xinerama/libNX_X11.so.6
- rm -f /usr/lib/nx/X11/Xinerama/libNX_Xext.so.6
+ # Already existent files and directories are not removed.
+ # Users will need to explicitly remove them and (re-) configure this package.
+
+ if test ! -e /usr/lib/nx/X11/Xinerama; then
+ install -d -m 755 /usr/lib/nx/X11/Xinerama
+ fi
+
if test -e $libdir/libX11.so.6; then
ln -s $libdir/libX11.so.6 /usr/lib/nx/X11/Xinerama/libNX_X11.so.6
fi
if test -e $libdir/libXext.so.6; then
ln -s $libdir/libXext.so.6 /usr/lib/nx/X11/Xinerama/libNX_Xext.so.6
fi
+ if test -e $libdir/libNX_Xinerama.so.1; then
+ ln -s $libdir/libNX_Xinerama.so.1 /usr/lib/nx/X11/Xinerama/libXinerama.so.1
+ fi
;;
abort-upgrade|abort-remove|abort-deconfigure)