Commit 7a6b40a1 authored by Mike Gabriel's avatar Mike Gabriel

Merge pull request #19 from ArcticaProject/PR-ionic/libXinerama_symlink_to_libnx-xinerama1

debian/libnx-xinerama1.*: also create libXinerama symlink in libnx-xinerama1.postinst (and remove in libxinerama1.prerm).
parents 7b7ba944 83983e94
...@@ -155,11 +155,12 @@ install-full: ...@@ -155,11 +155,12 @@ install-full:
done; \ done; \
# Provide means for Xinerama support in NX/X2Go sessions. This # Provide means for Xinerama support in NX/X2Go sessions. This
# This also requires two post-install symlinks: # This also requires three post-install symlinks created by libnx-xinerama1:
# (DESTDIR)$(NXLIBDIR)/X11/Xinerama/libNX_X11.so.6 -> /usr/<libdir>/libX11.so.6 # $(DESTDIR)$(NXLIBDIR)/X11/Xinerama/libNX_X11.so.6 -> /usr/<libdir>/libX11.so.6
# (DESTDIR)$(NXLIBDIR)/X11/Xinerama/libNX_Xext.so.6 -> /usr/<libdir>/libXext.so.6 # $(DESTDIR)$(NXLIBDIR)/X11/Xinerama/libNX_Xext.so.6 -> /usr/<libdir>/libXext.so.6
$(INSTALL_DIR) $(DESTDIR)$(NXLIBDIR)/X11/Xinerama # $(DESTDIR)$(NXLIBDIR)/X11/Xinerama/libXinerama.so.1 -> /usr/<libdir>/libNX_Xinerama.so.1
$(INSTALL_SYMLINK) $(USRLIBDIR)/libNX_Xinerama.so.1 $(DESTDIR)$(NXLIBDIR)/X11/Xinerama/libXinerama.so.1 # Only create the owned directory here for nx-x11-common.
$(INSTALL_DIR) $(DESTDIR)$(NXLIBDIR)/X11
$(INSTALL_DIR) $(DESTDIR)/$(ETCDIR_NX) $(INSTALL_DIR) $(DESTDIR)/$(ETCDIR_NX)
$(INSTALL_DIR) $(DESTDIR)/$(ETCDIR_X2GO) $(INSTALL_DIR) $(DESTDIR)/$(ETCDIR_X2GO)
......
...@@ -26,14 +26,22 @@ case "$1" in ...@@ -26,14 +26,22 @@ case "$1" in
libdir=/usr/lib/#DEB_BUILD_MULTIARCH# libdir=/usr/lib/#DEB_BUILD_MULTIARCH#
rm -f /usr/lib/nx/X11/Xinerama/libNX_X11.so.6 # Already existent files and directories are not removed.
rm -f /usr/lib/nx/X11/Xinerama/libNX_Xext.so.6 # 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 if test -e $libdir/libX11.so.6; then
ln -s $libdir/libX11.so.6 /usr/lib/nx/X11/Xinerama/libNX_X11.so.6 ln -s $libdir/libX11.so.6 /usr/lib/nx/X11/Xinerama/libNX_X11.so.6
fi fi
if test -e $libdir/libXext.so.6; then if test -e $libdir/libXext.so.6; then
ln -s $libdir/libXext.so.6 /usr/lib/nx/X11/Xinerama/libNX_Xext.so.6 ln -s $libdir/libXext.so.6 /usr/lib/nx/X11/Xinerama/libNX_Xext.so.6
fi 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) abort-upgrade|abort-remove|abort-deconfigure)
......
#!/bin/sh #!/bin/sh
# postrm script for x2goserver-fmbindings # prerm script for libnx-xinerama1
# #
# see: dh_installdeb(1) # see: dh_installdeb(1)
set -e
# summary of how this script can be called: # summary of how this script can be called:
# * <postrm> `remove' # * <prerm> `remove'
# * <postrm> `purge' # * <old-prerm> `upgrade' <new-version>
# * <old-postrm> `upgrade' <new-version> # * <new-prerm> `failed-upgrade' <old-version>
# * <new-postrm> `failed-upgrade' <old-version> # * <conflictor's-prerm> `remove' `in-favour' <package> <new-version>
# * <new-postrm> `abort-install' # * <deconfigured's-prerm> `deconfigure' `in-favour'
# * <new-postrm> `abort-install' <old-version> # <package-being-installed> <version> `removing'
# * <new-postrm> `abort-upgrade' <old-version> # <conflicting-package> <version>
# * <disappearer's-postrm> `disappear' <overwriter>
# <overwriter-version>
# for details, see http://www.debian.org/doc/debian-policy/ or # for details, see http://www.debian.org/doc/debian-policy/ or
# the debian-policy package # the debian-policy package
set -e
case "$1" in case "$1" in
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) remove)
if test -e /usr/lib/nx/X11/Xinerama/libNX_X11.so.6; then if test -d /usr/lib/nx/X11/Xinerama; then
rm -f /usr/lib/nx/X11/Xinerama/libNX_X11.so.6 rm -rf /usr/lib/nx/X11/Xinerama
fi
if test -e /usr/lib/nx/X11/Xinerama/libNX_Xext.so.6; then
rm -f /usr/lib/nx/X11/Xinerama/libNX_Xext.so.6
fi fi
;; ;;
deconfigure|upgrade|failed-upgrade)
:
;;
*) *)
echo "postrm called with unknown argument \`$1'" >&2 echo "prerm called with unknown argument \`$1'" >&2
exit 1 exit 1
;; ;;
esac esac
# dh_installdeb will replace this with shell code automatically # dh_installdeb will replace this with shell code automatically
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment