Author: dparsons Date: 2006-07-26 04:17:35 -0400 (Wed, 26 Jul 2006) New Revision: 2567
Added: branches/7.1/proto/printproto/debian/ branches/7.1/proto/printproto/debian/changelog branches/7.1/proto/printproto/debian/compat branches/7.1/proto/printproto/debian/control branches/7.1/proto/printproto/debian/copyright branches/7.1/proto/printproto/debian/rules branches/7.1/proto/printproto/debian/x11proto-print-dev.install Log: Debian subdirectory for printproto. Added: branches/7.1/proto/printproto/debian/changelog =================================================================== --- branches/7.1/proto/printproto/debian/changelog 2006-07-26 08:02:17 UTC (rev 2566) +++ branches/7.1/proto/printproto/debian/changelog 2006-07-26 08:17:35 UTC (rev 2567) @@ -0,0 +1,13 @@ +x11proto-print (1.0.3-2) experimental; urgency=low + + * Brought into the XSF repository. Uses same debian/rules as other + proto packages. + * Standards version 3.7.2. + + -- Drew Parsons <[EMAIL PROTECTED]> Wed, 26 Jul 2006 18:13:16 +1000 + +x11proto-print (1.0.3-1) unstable; urgency=low + + * Initial release for modular X11R7. + + -- Drew Parsons <[EMAIL PROTECTED]> Sun, 16 Apr 2006 15:43:16 +1000 Added: branches/7.1/proto/printproto/debian/compat =================================================================== --- branches/7.1/proto/printproto/debian/compat 2006-07-26 08:02:17 UTC (rev 2566) +++ branches/7.1/proto/printproto/debian/compat 2006-07-26 08:17:35 UTC (rev 2567) @@ -0,0 +1 @@ +5 Added: branches/7.1/proto/printproto/debian/control =================================================================== --- branches/7.1/proto/printproto/debian/control 2006-07-26 08:02:17 UTC (rev 2566) +++ branches/7.1/proto/printproto/debian/control 2006-07-26 08:17:35 UTC (rev 2567) @@ -0,0 +1,23 @@ +Source: x11proto-print +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force <[email protected]> +Uploaders: Drew Parsons <[EMAIL PROTECTED]>, David Nusinow <[EMAIL PROTECTED]>, Branden Robinson <[EMAIL PROTECTED]>, Fabio M. Di Nitto <[EMAIL PROTECTED]>, Andres Salomon <[EMAIL PROTECTED]> +Build-Depends-Indep: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: x11proto-print-dev +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Conflicts: libxp-dev (<<1:1) +Pre-Depends: x11-common (>= 1:7.0.0) +Description: X11 Printing extension (Xprint) wire protocol + This package provides the wire protocol for Xprint, + the X11 printing extension. + . + More information about X.Org can be found at: + <URL:http://xorg.freedesktop.org> + <URL:http://lists.freedesktop.org/mailman/listinfo/xorg> + . + This module can be found as the printproto module tarball at + http://xorg.freedesktop.org/releases/individual/proto/ Added: branches/7.1/proto/printproto/debian/copyright =================================================================== --- branches/7.1/proto/printproto/debian/copyright 2006-07-26 08:02:17 UTC (rev 2566) +++ branches/7.1/proto/printproto/debian/copyright 2006-07-26 08:17:35 UTC (rev 2567) @@ -0,0 +1,34 @@ +This package was debianized by Drew Parsons <[EMAIL PROTECTED]> on +Sunday, April 16 2006 15:34:09. + +Downloaded from http://xorg.freedesktop.org/releases/X11R7.0/src/proto/. + +(c) Copyright 1996 Hewlett-Packard Company +(c) Copyright 1996 International Business Machines Corp. +(c) Copyright 1996 Sun Microsystems, Inc. +(c) Copyright 1996 Novell, Inc. +(c) Copyright 1996 Digital Equipment Corp. +(c) Copyright 1996 Fujitsu Limited +(c) Copyright 1996 Hitachi, Ltd. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Except as contained in this notice, the names of the copyright holders shall +not be used in advertising or otherwise to promote the sale, use or other +dealings in this Software without prior written authorization from said +copyright holders. Added: branches/7.1/proto/printproto/debian/rules =================================================================== --- branches/7.1/proto/printproto/debian/rules 2006-07-26 08:02:17 UTC (rev 2566) +++ branches/7.1/proto/printproto/debian/rules 2006-07-26 08:17:35 UTC (rev 2567) @@ -0,0 +1,92 @@ +#!/usr/bin/make -f +# debian/rules for the Debian x11proto-print-dev package. +# Copyright © 2004 Scott James Remnant <[EMAIL PROTECTED]> +# Copyright © 2005 Daniel Stone <[EMAIL PROTECTED]> +# Copyright © 2005 David Nusinow <[EMAIL PROTECTED]> + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PACKAGE = x11proto-print-dev + +include debian/xsfbs/xsfbs.mk + +CFLAGS = -Wall -g +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif +ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) + INSTALL_PROGRAM += -s +endif + +DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) + confflags += --build=$(DEB_HOST_GNU_TYPE) +else + confflags += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) +endif + + +build: build-stamp +build-stamp: + dh_testdir + + test -d obj-$(DEB_BUILD_GNU_TYPE) || mkdir obj-$(DEB_BUILD_GNU_TYPE) + cd obj-$(DEB_BUILD_GNU_TYPE) && \ + ../configure --prefix=/usr --mandir=\$${prefix}/share/man \ + --infodir=\$${prefix}/share/info --disable-shared \ + $(confflags) CFLAGS="$(CFLAGS)" + cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + rm -f config.cache config.log config.status + rm -f */config.cache */config.log */config.status + rm -f conftest* */conftest* + rm -rf autom4te.cache */autom4te.cache + rm -rf obj-* + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + + dh_installdocs + dh_installman + dh_install --sourcedir=debian/tmp --list-missing + dh_installchangelogs + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install +# Nothing to do + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install Property changes on: branches/7.1/proto/printproto/debian/rules ___________________________________________________________________ Name: svn:executable + * Added: branches/7.1/proto/printproto/debian/x11proto-print-dev.install =================================================================== --- branches/7.1/proto/printproto/debian/x11proto-print-dev.install 2006-07-26 08:02:17 UTC (rev 2566) +++ branches/7.1/proto/printproto/debian/x11proto-print-dev.install 2006-07-26 08:17:35 UTC (rev 2567) @@ -0,0 +1,2 @@ +usr/include/X11/extensions/* +usr/lib/pkgconfig/printproto.pc -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

