Author: dnusinow Date: 2005-05-09 20:35:37 -0500 (Mon, 09 May 2005) New Revision: 52
Added: trunk/debian/lbxproxy.install trunk/debian/lbxproxy.links trunk/debian/lbxproxy.postinst.in trunk/debian/lbxproxy.postrm.in trunk/debian/lbxproxy.preinst.in Log: Add lbxproxy packaging files. Audited and approved by David. Added: trunk/debian/lbxproxy.install =================================================================== --- trunk/debian/lbxproxy.install 2005-05-09 04:12:41 UTC (rev 51) +++ trunk/debian/lbxproxy.install 2005-05-10 01:35:37 UTC (rev 52) @@ -0,0 +1,3 @@ +etc/X11/lbxproxy/AtomControl +usr/X11R6/bin/lbxproxy +usr/X11R6/man/man1/lbxproxy.1x Added: trunk/debian/lbxproxy.links =================================================================== --- trunk/debian/lbxproxy.links 2005-05-09 04:12:41 UTC (rev 51) +++ trunk/debian/lbxproxy.links 2005-05-10 01:35:37 UTC (rev 52) @@ -0,0 +1 @@ +etc/X11/lbxproxy usr/X11R6/lib/X11/lbxproxy Added: trunk/debian/lbxproxy.postinst.in =================================================================== --- trunk/debian/lbxproxy.postinst.in 2005-05-09 04:12:41 UTC (rev 51) +++ trunk/debian/lbxproxy.postinst.in 2005-05-10 01:35:37 UTC (rev 52) @@ -0,0 +1,21 @@ +#!/bin/sh +# Debian lbxproxy package post-installation script +# Copyright 1998-2001 Branden Robinson. +# Licensed under the GNU General Public License, version 2. See the file +# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>. +# Acknowledgements to Stephen Early, Mark Eichin, and Manoj Srivastava. + +set -e + +THIS_PACKAGE=lbxproxy +THIS_SCRIPT=postinst + +#INCLUDE_SHELL_LIB# + +check_symlinks_and_bomb /usr/X11R6/lib/X11/lbxproxy + +#DEBHELPER# + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: Added: trunk/debian/lbxproxy.postrm.in =================================================================== --- trunk/debian/lbxproxy.postrm.in 2005-05-09 04:12:41 UTC (rev 51) +++ trunk/debian/lbxproxy.postrm.in 2005-05-10 01:35:37 UTC (rev 52) @@ -0,0 +1,25 @@ +#!/bin/sh +# Debian lbxproxy package post-removal script +# Copyright 1998-2001 Branden Robinson. +# Licensed under the GNU General Public License, version 2. See the file +# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>. +# Acknowledgements to Stephen Early, Mark Eichin, and Manoj Srivastava. + +set -e + +THIS_PACKAGE=lbxproxy +THIS_SCRIPT=postrm + +#INCLUDE_SHELL_LIB# + +#DEBHELPER# + +if [ "$1" = "purge" ]; then + if [ -d /etc/X11/lbxproxy ]; then + rm -r /etc/X11/lbxproxy + fi +fi + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: Added: trunk/debian/lbxproxy.preinst.in =================================================================== --- trunk/debian/lbxproxy.preinst.in 2005-05-09 04:12:41 UTC (rev 51) +++ trunk/debian/lbxproxy.preinst.in 2005-05-10 01:35:37 UTC (rev 52) @@ -0,0 +1,23 @@ +#!/bin/sh +# Debian lbxproxy package pre-installation script +# Copyright 1998--2000, 2004 Branden Robinson. +# Licensed under the GNU General Public License, version 2. See the file +# /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>. +# Acknowledgements to Stephen Early, Mark Eichin, and Manoj Srivastava. + +set -e + +THIS_PACKAGE=lbxproxy +THIS_SCRIPT=preinst + +#INCLUDE_SHELL_LIB# + +if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then + check_symlinks_and_warn /usr/X11R6/lib/X11/lbxproxy +fi + +#DEBHELPER# + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

