--- xserver-xorg-video-ivtvdev-1.1.2.orig/Makefile.in +++ xserver-xorg-video-ivtvdev-1.1.2/Makefile.in @@ -52,7 +52,7 @@ build_triplet = @build@ host_triplet = @host@ subdir = . -DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ +DIST_COMMON = README ChangeLog $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/configure ChangeLog config.guess config.sub \ depcomp install-sh ltmain.sh missing --- xserver-xorg-video-ivtvdev-1.1.2.orig/config.guess +++ xserver-xorg-video-ivtvdev-1.1.2/config.guess @@ -1,4 +1,9 @@ #! /bin/sh + +if [ -x /usr/share/misc/config.guess ]; then + exec /usr/share/misc/config.guess "$@" +fi + # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003 Free Software Foundation, Inc. --- xserver-xorg-video-ivtvdev-1.1.2.orig/config.sub +++ xserver-xorg-video-ivtvdev-1.1.2/config.sub @@ -1,4 +1,9 @@ #! /bin/sh + +if [ -x /usr/share/misc/config.sub ]; then + exec /usr/share/misc/config.sub "$@" +fi + # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003 Free Software Foundation, Inc. --- xserver-xorg-video-ivtvdev-1.1.2.orig/debian/compat +++ xserver-xorg-video-ivtvdev-1.1.2/debian/compat @@ -0,0 +1 @@ +8 --- xserver-xorg-video-ivtvdev-1.1.2.orig/debian/copyright +++ xserver-xorg-video-ivtvdev-1.1.2/debian/copyright @@ -0,0 +1,55 @@ +This package was debianized by Ian Campbell on +Mon Aug 7 16:16:55 BST 2006. + +The original upstream source is available from +http://dl.ivtvdriver.org/xf86-video-ivtv/ + +The current upstream maintainer is John Harvey + +License: +-------- + + Copyright 2005 Adam Jackson. + + 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, sub + license, 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 + ADAM JACKSON 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. + + ------------------------------------------------------------------ + + Copyright (C) 2000 The XFree86 Project, Inc. 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 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, FIT- + NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + XFREE86 PROJECT 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 name of the XFree86 Project shall not + be used in advertising or otherwise to promote the sale, use or other dealings + in this Software without prior written authorization from the XFree86 Project. --- xserver-xorg-video-ivtvdev-1.1.2.orig/debian/README.source +++ xserver-xorg-video-ivtvdev-1.1.2/debian/README.source @@ -0,0 +1,49 @@ +------------------------------------------------------ +Quick Guide To Patching This Package For The Impatient +------------------------------------------------------ + +1. Make sure you have quilt installed +2. Unpack the package as usual with "dpkg-source -x" +3. Run the "patch" target in debian/rules +4. Create a new patch with "quilt new" (see quilt(1)) +5. Edit all the files you want to include in the patch with "quilt edit" + (see quilt(1)). +6. Write the patch with "quilt refresh" (see quilt(1)) +7. Run the "clean" target in debian/rules + +Alternatively, instead of using quilt directly, you can drop the patch in to +debian/patches and add the name of the patch to debian/patches/series. + +------------------------------------ +Guide To The X Strike Force Packages +------------------------------------ + +The X Strike Force team maintains X packages in git repositories on +git.debian.org in the pkg-xorg subdirectory. Most upstream packages +are actually maintained in git repositories as well, so they often +just need to be pulled into git.debian.org in a "upstream-*" branch. +Otherwise, the upstream sources are manually installed in the Debian +git repository. + +The .orig.tar.gz upstream source file could be generated using this +"upstream-*" branch in the Debian git repository but it is actually +copied from upstream tarballs directly. + +Due to X.org being highly modular, packaging all X.org applications +as their own independent packages would have created too many Debian +packages. For this reason, some X.org applications have been grouped +into larger packages: xutils, xutils-dev, x11-apps, x11-session-utils, +x11-utils, x11-xfs-utils, x11-xkb-utils, x11-xserver-utils. +Most packages, including the X.org server itself and all libraries +and drivers are, however maintained independently. + +The Debian packaging is added by creating the "debian-*" git branch +which contains the aforementioned "upstream-*" branch plus the debian/ +repository files. +When a patch has to be applied to the Debian package, two solutions +are involved: +* If the patch is available in one of the upstream branches, it + may be git'cherry-picked into the Debian repository. In this + case, it appears directly in the .diff.gz. +* Otherwise, the patch is added to debian/patches/ which is managed + with quilt as documented in /usr/share/doc/quilt/README.source. --- xserver-xorg-video-ivtvdev-1.1.2.orig/debian/control +++ xserver-xorg-video-ivtvdev-1.1.2/debian/control @@ -0,0 +1,53 @@ +Source: xserver-xorg-video-ivtvdev +Section: contrib/x11 +Priority: extra +Maintainer: Debian X Strike Force +Uploaders: Ian Campbell , Cyril Brulebois +Build-Depends: + debhelper (>= 8), + dh-autoreconf, + quilt, + pkg-config, + autotools-dev, + xserver-xorg-dev (>= 2:1.11.2.902), + x11proto-video-dev, + libxvmc-dev, + x11proto-fonts-dev, + x11proto-randr-dev, + x11proto-render-dev, + x11proto-xext-dev, +Standards-Version: 3.9.1 +Vcs-Git: git://git.debian.org/git/pkg-xorg/driver/xserver-xorg-video-ivtvdev +Vcs-Browser: http://git.debian.org/?p=pkg-xorg/driver/xserver-xorg-video-ivtvdev.git + +Package: xserver-xorg-video-ivtv +Architecture: alpha amd64 arm hppa hurd-i386 i386 ia64 kfreebsd-i386 m68k mips mipsel netbsd-i386 powerpc +Depends: + ${shlibs:Depends}, + ${misc:Depends}, + ${xviddriver:Depends}, +Provides: + ${xviddriver:Provides} +Description: X.Org X server -- IVTV display driver + This package provides the driver for the overlay framebuffer provided + by the iTVC15 family of MPEG codecs. The iTVC15 family includes the + iTVC15 (CX24315) and iTVC16 (CX24316). These chips are commonly found + on Hauppauge's WinTV PVR-250 and PVR-350 TV capture cards. + . + This driver requires the IVTV kernel module provided by the + ivtv-source package. + +Package: xserver-xorg-video-ivtv-dbg +Architecture: alpha amd64 arm hppa hurd-i386 i386 ia64 kfreebsd-i386 m68k mips mipsel netbsd-i386 powerpc +Depends: + xserver-xorg-video-ivtv (= ${binary:Version}), + ${misc:Depends}, +Section: contrib/debug +Priority: extra +Description: X.Org X server -- IVTV display driver (debug symbols) + This package provides the driver for the overlay framebuffer provided + by the iTVC15 family of MPEG codecs. The iTVC15 family includes the + iTVC15 (CX24315) and iTVC16 (CX24316). These chips are commonly found + on Hauppauge's WinTV PVR-250 and PVR-350 TV capture cards. + . + This package provides debugging symbols for this Xorg X driver. --- xserver-xorg-video-ivtvdev-1.1.2.orig/debian/watch +++ xserver-xorg-video-ivtvdev-1.1.2/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://dl.ivtvdriver.org/xf86-video-ivtv/ xf86-video-ivtv-(.*)\.tar\.gz --- xserver-xorg-video-ivtvdev-1.1.2.orig/debian/NEWS +++ xserver-xorg-video-ivtvdev-1.1.2/debian/NEWS @@ -0,0 +1,7 @@ +xserver-xorg-video-ivtvdev (1.0.0~svn4049-1) unstable; urgency=low + + * The IVTV X driver has been renamed by upstream from "ivtvdev" to just + "ivtv". You will need to update /etc/X11/xorg.conf. + + -- Ian Campbell Mon, 10 Sep 2007 07:24:39 +0100 + --- xserver-xorg-video-ivtvdev-1.1.2.orig/debian/xserver-xorg-video-ivtv.install +++ xserver-xorg-video-ivtvdev-1.1.2/debian/xserver-xorg-video-ivtv.install @@ -0,0 +1 @@ +usr/lib/xorg/modules/drivers/*.so --- xserver-xorg-video-ivtvdev-1.1.2.orig/debian/rules +++ xserver-xorg-video-ivtvdev-1.1.2/debian/rules @@ -0,0 +1,21 @@ +#!/usr/bin/make -f + +# Install in debian/tmp to retain control through dh_install: +override_dh_auto_install: + dh_auto_install --destdir=debian/tmp + +# Kill *.la files, and forget no-one: +override_dh_install: + find debian/tmp -name '*.la' -delete + dh_install --fail-missing + +# Debug package: +override_dh_strip: + dh_strip --dbg-package=xserver-xorg-video-ivtv-dbg + +# That's a plugin, use appropriate warning level: +override_dh_shlibdeps: + dh_shlibdeps -- --warnings=6 + +%: + dh $@ --with quilt,xsf --builddirectory=build/ --- xserver-xorg-video-ivtvdev-1.1.2.orig/debian/changelog +++ xserver-xorg-video-ivtvdev-1.1.2/debian/changelog @@ -0,0 +1,148 @@ +xserver-xorg-video-ivtvdev (1.1.2-1build2) precise; urgency=low + + * Rebuild again to fix upload snafu + + -- Christopher James Halse Rogers Fri, 16 Dec 2011 09:56:54 +1100 + +xserver-xorg-video-ivtvdev (1.1.2-1build1) precise; urgency=low + + * Rebuild to pick up new Xserver dependencies + + -- Christopher James Halse Rogers Fri, 16 Dec 2011 08:55:12 +1100 + +xserver-xorg-video-ivtvdev (1.1.2-1) unstable; urgency=low + + [ Ian Campbell ] + * New upstream release. + + [ Cyril Brulebois ] + * Wrap Build-Depends/Depends/Provides. + * Switch to dh: + - Use debhelper 8. + - Unlike other drivers, do not use dh-autoreconf. + - Bump xserver-xorg-dev build-dep for dh_xsf_substvars and xsf + debhelper sequence. + * Remove xsfbs accordingly. + * Update Uploaders list. Thanks, David! + * Bump Standards-Version to 3.9.1 (no changes needed). + * Add watch file. + + -- Cyril Brulebois Sat, 05 Feb 2011 14:50:33 +0100 + +xserver-xorg-video-ivtvdev (1.1.1-3) experimental; urgency=low + + * Build against Xserver 1.9.1 rc1. + * Add myself to Uploaders. + + -- Cyril Brulebois Sat, 16 Oct 2010 18:39:55 +0200 + +xserver-xorg-video-ivtvdev (1.1.1-2) unstable; urgency=low + + [ Ian Campbell ] + * Add misc:Depends for xserver-xorg-video-ivtv-dbg. + * Bump Standards-Version to 3.8.3 (no changes). + + [ Julien Cristau ] + * Update xsfbs and use new ${xviddriver:Depends} substvar. + + -- Julien Cristau Sun, 06 Jun 2010 18:40:53 +0200 + +xserver-xorg-video-ivtvdev (1.1.1-1) unstable; urgency=low + + [ Ian Campbell ] + * New upstream release. + * Update debian/copyright with correct URL, remove obsolete paragraph about + an old fork which is no longer used. + * Update to latest xsfbs. + + [ Julien Cristau ] + * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no + good reason. Thanks, Colin Watson! + + -- Ian Campbell Sat, 16 Jan 2010 19:46:45 +0000 + +xserver-xorg-video-ivtvdev (1.1.0-1) unstable; urgency=low + + * New upstream release. + * Rebuild against newer X server (Closes: #526075) + * Correct Section, Depends and Provides for xserver-xorg-video-ivtv-dbg. + * Run dpkg-shlibdeps with --warnings=6. Drivers reference symbols from + /usr/bin/Xorg and other modules, and that's not a bug, so we want + dpkg-shlibdeps to shut up about symbols it can't find. + * Do not install .la files. + * Depend on autotools-dev and call out to up to date config.{sub,guess} + * Remove unused patching infrastructure from build and drop dependency + on quilt. + * Update to standards version 3.8.1. + + -- Ian Campbell Wed, 20 May 2009 23:16:16 +0100 + +xserver-xorg-video-ivtvdev (1.0.1-1) unstable; urgency=low + + * New upstream release. + * Vcs-Browser and Vcs-Git are now supported so drop the XS- prefix. + * Build a xserver-xorg-video-ivtv-dbg package with debugging symbols. + + -- Ian Campbell Sun, 09 Mar 2008 15:33:24 +0000 + +xserver-xorg-video-ivtvdev (1.0.0-1) unstable; urgency=low + + * New upstream release. + - remove-PAGE_MASK and remove-xf86_ansic.h have been merged upstream. + - Changelog is now ChangeLog. + * Do not build depend on ivtv-utils anymore, ivtv.h is no longer required. + + -- Ian Campbell Sun, 14 Oct 2007 22:27:12 +0100 + +xserver-xorg-video-ivtvdev (1.0.0~svn4049-3) unstable; urgency=low + + * Use sysconf(_SC_PAGESIZE) instead of PAGE_MASK, fixes FTBFS on powerpc, + mips, hppa (new patch remove-PAGE_MASK). + * Update patch remove-xf86_ansic.h to include headers for ioctl, mmap, + munmap & close, fixes build warnings. + + -- Ian Campbell Thu, 20 Sep 2007 19:00:59 +0100 + +xserver-xorg-video-ivtvdev (1.0.0~svn4049-2) unstable; urgency=low + + * Build against xserver 1.4. + + -- Ian Campbell Tue, 18 Sep 2007 08:25:11 +0100 + +xserver-xorg-video-ivtvdev (1.0.0~svn4049-1) unstable; urgency=low + + * Import upstream subversion revision 4049 (Closes: #441275). + * Patch 00_xorg_7_1 is no longer required. + * The xf86_ansic.h header is no longer required. + + -- Ian Campbell Mon, 10 Sep 2007 07:26:44 +0100 + +xserver-xorg-video-ivtvdev (0.10.6-3) UNRELEASED; urgency=low + + * Bump xserver ABI metadata to 1.1 for use with server 1.2 + + -- David Nusinow Sat, 10 Feb 2007 21:23:41 -0500 + +xserver-xorg-video-ivtvdev (0.10.6-2) UNRELEASED; urgency=low + + [ David Nusinow ] + * Bump server version requirement to use newer server so that reportbug + stuff is guaranteed to be installed + + [ Ian Campbell ] + * Include linux/types.h in ivtvhw.h. (Closes: #406032) + * Updates suggested by Brice Goglin: + - Pull latest xsfbs + - Use ${xviddriver:Provides} and ${xserver:Depends} + - Update build depends + - Added XS-Vcs-* + * Bumped standards version + + -- Ian Campbell Wed, 30 May 2007 20:13:22 +0100 + +xserver-xorg-video-ivtvdev (0.10.6-1) unstable; urgency=low + + [ Ian Campbell ] + * First xserver-xorg-driver-ivtv release. (Closes: #380174) + + -- David Nusinow Sat, 18 Nov 2006 20:32:31 -0500 --- xserver-xorg-video-ivtvdev-1.1.2.orig/debian/xserver-xorg-video-ivtvdev.links +++ xserver-xorg-video-ivtvdev-1.1.2/debian/xserver-xorg-video-ivtvdev.links @@ -0,0 +1 @@ +usr/share/bug/xserver-xorg-core/script usr/share/bug/xserver-xorg-video-ivtvdev/script --- xserver-xorg-video-ivtvdev-1.1.2.orig/debian/patches/series +++ xserver-xorg-video-ivtvdev-1.1.2/debian/patches/series @@ -0,0 +1 @@ +# placeholder