Author: dnusinow Date: 2005-05-09 22:15:20 -0500 (Mon, 09 May 2005) New Revision: 71
Added: trunk/debian/libxrandr-dev.install trunk/debian/libxrandr-dev.links trunk/debian/libxrandr2-dbg.install trunk/debian/libxrandr2-dbg.links trunk/debian/libxrandr2.install trunk/debian/libxrandr2.links trunk/debian/libxrandr2.postinst.in trunk/debian/libxrandr2.postrm.in trunk/debian/libxrandr2.shlibs trunk/debian/libxres-dev.install trunk/debian/libxres-dev.links trunk/debian/libxres1-dbg.install trunk/debian/libxres1-dbg.links trunk/debian/libxres1.install trunk/debian/libxres1.links trunk/debian/libxres1.postinst.in trunk/debian/libxres1.postrm.in trunk/debian/libxres1.shlibs trunk/debian/libxss-dev.install trunk/debian/libxss-dev.links trunk/debian/libxss1-dbg.install trunk/debian/libxss1-dbg.links trunk/debian/libxss1.install trunk/debian/libxss1.links trunk/debian/libxss1.postinst.in trunk/debian/libxss1.postrm.in trunk/debian/libxss1.shlibs Log: Adding libxrandr, libxres, and libxss packaging files. The latter two were not in the previous packaging so adding without careful checking. Audited and approved by David. Added: trunk/debian/libxrandr-dev.install =================================================================== --- trunk/debian/libxrandr-dev.install 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxrandr-dev.install 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1,5 @@ +usr/X11R6/include/X11/extensions/randr.h +usr/X11R6/include/X11/extensions/randrproto.h +usr/X11R6/include/X11/extensions/Xrandr.h +usr/X11R6/lib/libXrandr.a +usr/X11R6/man/man3/Xrandr.3x Added: trunk/debian/libxrandr-dev.links =================================================================== --- trunk/debian/libxrandr-dev.links 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxrandr-dev.links 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXrandr.so.2 usr/X11R6/lib/libXrandr.so Added: trunk/debian/libxrandr2-dbg.install =================================================================== --- trunk/debian/libxrandr2-dbg.install 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxrandr2-dbg.install 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXrandr.so.2.0 usr/X11R6/lib/debug Added: trunk/debian/libxrandr2-dbg.links =================================================================== --- trunk/debian/libxrandr2-dbg.links 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxrandr2-dbg.links 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/debug/libXrandr.so.2.0 usr/X11R6/lib/debug/libXrandr.so.2 Added: trunk/debian/libxrandr2.install =================================================================== --- trunk/debian/libxrandr2.install 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxrandr2.install 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXrandr.so.2.0 Added: trunk/debian/libxrandr2.links =================================================================== --- trunk/debian/libxrandr2.links 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxrandr2.links 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXrandr.so.2.0 usr/X11R6/lib/libXrandr.so.2 Added: trunk/debian/libxrandr2.postinst.in =================================================================== --- trunk/debian/libxrandr2.postinst.in 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxrandr2.postinst.in 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1,26 @@ +#!/bin/sh +# Debian libxrandr2 package post-installation script +# Copyright 2003 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. + +# $Id: libxrandr2.postinst.in 1044 2004-02-16 17:40:33Z branden $ + +set -e + +THIS_PACKAGE=libxrandr2 +THIS_SCRIPT=postinst + +#INCLUDE_SHELL_LIB# + +register_x_lib_dir_with_ld_so +if [ "$1" = "configure" ]; then + ldconfig +fi + +#DEBHELPER# + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: Added: trunk/debian/libxrandr2.postrm.in =================================================================== --- trunk/debian/libxrandr2.postrm.in 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxrandr2.postrm.in 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1,26 @@ +#!/bin/sh +# Debian libxrandr2 package post-removal script +# Copyright 2003 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. + +# $Id: libxrandr2.postrm.in 1044 2004-02-16 17:40:33Z branden $ + +set -e + +THIS_PACKAGE=libxrandr2 +THIS_SCRIPT=postrm + +#INCLUDE_SHELL_LIB# + +if [ "$1" = "remove" ]; then + deregister_x_lib_dir_with_ld_so + ldconfig +fi + +#DEBHELPER# + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: Added: trunk/debian/libxrandr2.shlibs =================================================================== --- trunk/debian/libxrandr2.shlibs 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxrandr2.shlibs 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +libXrandr 2 libxrandr2 | xlibs (>> 4.3.0) Added: trunk/debian/libxres-dev.install =================================================================== --- trunk/debian/libxres-dev.install 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxres-dev.install 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1,9 @@ +usr/X11R6/include/X11/extensions/XRes.h +usr/X11R6/include/X11/extensions/XResproto.h +usr/X11R6/lib/libXRes.a +usr/X11R6/man/man3/XRes.3x +usr/X11R6/man/man3/XResQueryClientPixmapBytes.3x +usr/X11R6/man/man3/XResQueryClientResources.3x +usr/X11R6/man/man3/XResQueryClients.3x +usr/X11R6/man/man3/XResQueryExtension.3x +usr/X11R6/man/man3/XResQueryVersion.3x Added: trunk/debian/libxres-dev.links =================================================================== --- trunk/debian/libxres-dev.links 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxres-dev.links 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXRes.so.1 usr/X11R6/lib/libXRes.so Added: trunk/debian/libxres1-dbg.install =================================================================== --- trunk/debian/libxres1-dbg.install 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxres1-dbg.install 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXRes.so.1.0 usr/X11R6/lib/debug Added: trunk/debian/libxres1-dbg.links =================================================================== --- trunk/debian/libxres1-dbg.links 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxres1-dbg.links 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/debug/libXRes.so.1.0 usr/X11R6/lib/debug/libXRes.so.1 Added: trunk/debian/libxres1.install =================================================================== --- trunk/debian/libxres1.install 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxres1.install 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXRes.so.1.0 Added: trunk/debian/libxres1.links =================================================================== --- trunk/debian/libxres1.links 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxres1.links 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXRes.so.1.0 usr/X11R6/lib/libXRes.so.1 Added: trunk/debian/libxres1.postinst.in =================================================================== --- trunk/debian/libxres1.postinst.in 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxres1.postinst.in 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1,26 @@ +#!/bin/sh +# Debian libxres1 package post-installation script +# Copyright 2003 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>. +# Acknowlegements to Stephen Early, Mark Eichin, and Manoj Srivastava. + +# $Id: libxres1.postinst.in 1044 2004-02-16 17:40:33Z branden $ + +set -e + +THIS_PACKAGE=libxres1 +THIS_SCRIPT=postinst + +#INCLUDE_SHELL_LIB# + +register_x_lib_dir_with_ld_so +if [ "$1" = "configure" ]; then + ldconfig +fi + +#DEBHELPER# + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: Added: trunk/debian/libxres1.postrm.in =================================================================== --- trunk/debian/libxres1.postrm.in 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxres1.postrm.in 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1,26 @@ +#!/bin/sh +# Debian libxres1 package post-removal script +# Copyright 2003 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>. +# Acknowlegements to Stephen Early, Mark Eichin, and Manoj Srivastava. + +# $Id: libxres1.postrm.in 1044 2004-02-16 17:40:33Z branden $ + +set -e + +THIS_PACKAGE=libxres1 +THIS_SCRIPT=postrm + +#INCLUDE_SHELL_LIB# + +if [ "$1" = "remove" ]; then + deregister_x_lib_dir_with_ld_so + ldconfig +fi + +#DEBHELPER# + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: Added: trunk/debian/libxres1.shlibs =================================================================== --- trunk/debian/libxres1.shlibs 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxres1.shlibs 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +libXRes 1 libxres1 Added: trunk/debian/libxss-dev.install =================================================================== --- trunk/debian/libxss-dev.install 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxss-dev.install 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1,15 @@ +usr/X11R6/lib/libXss.a +usr/X11R6/include/X11/extensions/saver.h +usr/X11R6/include/X11/extensions/saverproto.h +usr/X11R6/include/X11/extensions/scrnsaver.h +usr/X11R6/man/man3/XScreenSaverAllocInfo.3x +usr/X11R6/man/man3/XScreenSaverGetRegistered.3x +usr/X11R6/man/man3/XScreenSaverQueryExtension.3x +usr/X11R6/man/man3/XScreenSaverQueryInfo.3x +usr/X11R6/man/man3/XScreenSaverQueryVersion.3x +usr/X11R6/man/man3/XScreenSaverRegister.3x +usr/X11R6/man/man3/XScreenSaverSelectInput.3x +usr/X11R6/man/man3/XScreenSaverSetAttributes.3x +usr/X11R6/man/man3/XScreenSaverUnregister.3x +usr/X11R6/man/man3/XScreenSaverUnsetAttributes.3x +usr/X11R6/man/man3/Xss.3x Added: trunk/debian/libxss-dev.links =================================================================== --- trunk/debian/libxss-dev.links 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxss-dev.links 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXss.so.1 usr/X11R6/lib/libXss.so Added: trunk/debian/libxss1-dbg.install =================================================================== --- trunk/debian/libxss1-dbg.install 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxss1-dbg.install 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXss.so.1.0 usr/X11R6/lib/debug Added: trunk/debian/libxss1-dbg.links =================================================================== --- trunk/debian/libxss1-dbg.links 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxss1-dbg.links 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/debug/libXss.so.1.0 usr/X11R6/lib/debug/libXss.so.1 Added: trunk/debian/libxss1.install =================================================================== --- trunk/debian/libxss1.install 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxss1.install 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXss.so.1.0 Added: trunk/debian/libxss1.links =================================================================== --- trunk/debian/libxss1.links 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxss1.links 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +usr/X11R6/lib/libXss.so.1.0 usr/X11R6/lib/libXss.so.1 Added: trunk/debian/libxss1.postinst.in =================================================================== --- trunk/debian/libxss1.postinst.in 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxss1.postinst.in 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1,26 @@ +#!/bin/sh +# Debian libxss1 package post-installation script +# Copyright 2003 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>. +# Acknowlegements to Stephen Early, Mark Eichin, and Manoj Srivastava. + +# $Id: libxss1.postinst.in 1044 2004-02-16 17:40:33Z branden $ + +set -e + +THIS_PACKAGE=libxss1 +THIS_SCRIPT=postinst + +#INCLUDE_SHELL_LIB# + +register_x_lib_dir_with_ld_so +if [ "$1" = "configure" ]; then + ldconfig +fi + +#DEBHELPER# + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: Added: trunk/debian/libxss1.postrm.in =================================================================== --- trunk/debian/libxss1.postrm.in 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxss1.postrm.in 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1,26 @@ +#!/bin/sh +# Debian libxss1 package post-removal script +# Copyright 2003 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>. +# Acknowlegements to Stephen Early, Mark Eichin, and Manoj Srivastava. + +# $Id: libxss1.postrm.in 1044 2004-02-16 17:40:33Z branden $ + +set -e + +THIS_PACKAGE=libxss1 +THIS_SCRIPT=postrm + +#INCLUDE_SHELL_LIB# + +if [ "$1" = "remove" ]; then + deregister_x_lib_dir_with_ld_so + ldconfig +fi + +#DEBHELPER# + +exit 0 + +# vim:set ai et sts=2 sw=2 tw=0: Added: trunk/debian/libxss1.shlibs =================================================================== --- trunk/debian/libxss1.shlibs 2005-05-10 03:09:20 UTC (rev 70) +++ trunk/debian/libxss1.shlibs 2005-05-10 03:15:20 UTC (rev 71) @@ -0,0 +1 @@ +libXss 1 libxss1 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

