Author: dnusinow Date: 2005-05-08 22:56:10 -0500 (Sun, 08 May 2005) New Revision: 44
Added: trunk/debian/proxymngr.install trunk/debian/proxymngr.links trunk/debian/proxymngr.postinst.in trunk/debian/proxymngr.postrm.in trunk/debian/proxymngr.preinst.in Log: Add proxymngr packaging docs. Audited and approved by David. Added: trunk/debian/proxymngr.install =================================================================== --- trunk/debian/proxymngr.install 2005-05-09 03:55:18 UTC (rev 43) +++ trunk/debian/proxymngr.install 2005-05-09 03:56:10 UTC (rev 44) @@ -0,0 +1,3 @@ +etc/X11/proxymngr/pmconfig +usr/X11R6/bin/proxymngr +usr/X11R6/man/man1/proxymngr.1x Added: trunk/debian/proxymngr.links =================================================================== --- trunk/debian/proxymngr.links 2005-05-09 03:55:18 UTC (rev 43) +++ trunk/debian/proxymngr.links 2005-05-09 03:56:10 UTC (rev 44) @@ -0,0 +1 @@ +etc/X11/proxymngr usr/X11R6/lib/X11/proxymngr Added: trunk/debian/proxymngr.postinst.in =================================================================== --- trunk/debian/proxymngr.postinst.in 2005-05-09 03:55:18 UTC (rev 43) +++ trunk/debian/proxymngr.postinst.in 2005-05-09 03:56:10 UTC (rev 44) @@ -0,0 +1,21 @@ +#!/bin/sh +# Debian proxymngr 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=proxymngr +THIS_SCRIPT=postinst + +#INCLUDE_SHELL_LIB# + +check_symlinks_and_bomb /usr/X11R6/lib/X11/proxymngr + +#DEBHELPER# + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: Added: trunk/debian/proxymngr.postrm.in =================================================================== --- trunk/debian/proxymngr.postrm.in 2005-05-09 03:55:18 UTC (rev 43) +++ trunk/debian/proxymngr.postrm.in 2005-05-09 03:56:10 UTC (rev 44) @@ -0,0 +1,25 @@ +#!/bin/sh +# Debian proxymngr 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=proxymngr +THIS_SCRIPT=postrm + +#INCLUDE_SHELL_LIB# + +#DEBHELPER# + +if [ "$1" = "purge" ]; then + if [ -d /etc/X11/proxymngr ]; then + rm -r /etc/X11/proxymngr + fi +fi + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: Added: trunk/debian/proxymngr.preinst.in =================================================================== --- trunk/debian/proxymngr.preinst.in 2005-05-09 03:55:18 UTC (rev 43) +++ trunk/debian/proxymngr.preinst.in 2005-05-09 03:56:10 UTC (rev 44) @@ -0,0 +1,23 @@ +#!/bin/sh +# Debian proxymngr package pre-installation script +# Copyright 1998--2001, 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=proxymngr +THIS_SCRIPT=preinst + +#INCLUDE_SHELL_LIB# + +if [ "$1" = "install" ] || [ "$1" = "upgrade" ]; then + check_symlinks_and_warn /usr/X11R6/lib/X11/proxymngr +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]

