Author: dnusinow Date: 2005-10-20 21:04:38 -0500 (Thu, 20 Oct 2005) New Revision: 711
Added: branches/modular/proto/DMX/debian/ branches/modular/proto/DMX/debian/changelog branches/modular/proto/DMX/debian/compat branches/modular/proto/DMX/debian/control branches/modular/proto/DMX/debian/copyright branches/modular/proto/DMX/debian/rules branches/modular/proto/DMX/debian/x11proto-dmx-dev.install Log: Add packaging stuff Added: branches/modular/proto/DMX/debian/changelog =================================================================== --- branches/modular/proto/DMX/debian/changelog 2005-10-21 01:56:13 UTC (rev 710) +++ branches/modular/proto/DMX/debian/changelog 2005-10-21 02:04:38 UTC (rev 711) @@ -0,0 +1,11 @@ +x11proto-dmx (6.8.99.7-2) UNRELEASED; urgency=low + + * First release to Debian + + -- David Nusinow <[EMAIL PROTECTED]> Thu, 20 Oct 2005 22:02:56 -0400 + +x11proto-dmx (6.8.99.7-1) breezy; urgency=low + + * First x11proto-dmx release. + + -- Daniel Stone <[EMAIL PROTECTED]> Mon, 16 May 2005 22:10:17 +1000 Added: branches/modular/proto/DMX/debian/compat =================================================================== --- branches/modular/proto/DMX/debian/compat 2005-10-21 01:56:13 UTC (rev 710) +++ branches/modular/proto/DMX/debian/compat 2005-10-21 02:04:38 UTC (rev 711) @@ -0,0 +1 @@ +4 Added: branches/modular/proto/DMX/debian/control =================================================================== --- branches/modular/proto/DMX/debian/control 2005-10-21 01:56:13 UTC (rev 710) +++ branches/modular/proto/DMX/debian/control 2005-10-21 02:04:38 UTC (rev 711) @@ -0,0 +1,25 @@ +Source: x11proto-dmx +Section: x11 +Priority: optional +Maintainer: Debian X Strike Force <debian-x@lists.debian.org> +Uploaders: David Nusinow <[EMAIL PROTECTED]>, Branden Robinson <[EMAIL PROTECTED]>, Fabio M. Di Nitto <[EMAIL PROTECTED]> +Build-Depends-Indep: debhelper (>= 4.0.0) +Standards-Version: 3.6.1.0 + +Package: x11proto-dmx-dev +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends}, x-common +Conflicts: libdmx-dev (<< 6.8.2-16) +Replaces: libdmx-dev (<< 6.8.2-16) +Pre-Depends: x-common (>= 1.0) +Description: X11 Distributed Multihead X extension wire protocol + This package provides the wire protocol for the DMX extension, used to set up + a distributed multi-head environment with a single server acting as a gateway + to multiple X servers on multiple machines. + . + 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 module 'proto/DMX' at + :pserver:[EMAIL PROTECTED]:/cvs/xorg Added: branches/modular/proto/DMX/debian/copyright =================================================================== --- branches/modular/proto/DMX/debian/copyright 2005-10-21 01:56:13 UTC (rev 710) +++ branches/modular/proto/DMX/debian/copyright 2005-10-21 02:04:38 UTC (rev 711) @@ -0,0 +1,24 @@ +Copyright 2002-2004 Red Hat Inc., Durham, North Carolina. + +All Rights Reserved. + +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 on 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 (including the +next paragraph) 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 +NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS +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. Added: branches/modular/proto/DMX/debian/rules =================================================================== --- branches/modular/proto/DMX/debian/rules 2005-10-21 01:56:13 UTC (rev 710) +++ branches/modular/proto/DMX/debian/rules 2005-10-21 02:04:38 UTC (rev 711) @@ -0,0 +1,92 @@ +#!/usr/bin/make -f +# debian/rules for the Debian x11proto-dmx-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-dmx-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 + + 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 + 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/modular/proto/DMX/debian/rules ___________________________________________________________________ Name: svn:executable + * Added: branches/modular/proto/DMX/debian/x11proto-dmx-dev.install =================================================================== --- branches/modular/proto/DMX/debian/x11proto-dmx-dev.install 2005-10-21 01:56:13 UTC (rev 710) +++ branches/modular/proto/DMX/debian/x11proto-dmx-dev.install 2005-10-21 02:04:38 UTC (rev 711) @@ -0,0 +1,2 @@ +usr/include/X11/extensions/* +usr/lib/pkgconfig/dmxproto.pc -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]