--- xf86-video-omapfb-0.1.1.1.orig/debian/control
+++ xf86-video-omapfb-0.1.1.1/debian/control
@@ -0,0 +1,44 @@
+Source: xf86-video-omapfb
+Section: x11
+Priority: optional
+Maintainer: Riku Voipio <riku.voipio@iki.fi>
+Build-Depends: debhelper (>= 5.0.0), pkg-config, xserver-xorg-dev (>= 2:1.9.4), x11proto-video-dev, x11proto-core-dev, x11proto-fonts-dev, x11proto-randr-dev, x11proto-render-dev, x11proto-xext-dev, automake, libtool, xutils-dev
+Standards-Version: 3.8.0
+Vcs-Git: git://git.debian.org/collab-maint/xf86-video-omapfb.git
+Vcs-Browser: http://git.debian.org/?p=collab-maint/xf86-video-omapfb.git
+Homepage: http://gitweb.pingu.fi/?p=xf86-video-omapfb.git;a=tree
+
+Package: xserver-xorg-video-omapfb
+Architecture: arm armel armeb armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
+Provides: ${xviddriver:Provides},
+Conflicts: xserver-xorg-video-omap3
+Description: X.Org X server -- Omapfb display driver
+ This driver for the X.Org X server (see xserver-xorg for a further
+ description) provides support for OMAP Framebuffer as in Nokia N8x0 and
+ other devices with OMAP Display Subsystem. If you have a OMAP3 or newer,
+ try xserver-xorg-video-omap3 for better performance.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-omapfb driver module.
+
+Package: xserver-xorg-video-omap3
+Architecture: arm armel armeb armhf
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${xviddriver:Depends}
+Provides: ${xviddriver:Provides},
+Conflicts: xserver-xorg-video-omapfb
+Description: X.Org X server -- Omapfb display driver (NEON optimized)
+ This driver for the X.Org X server (see xserver-xorg for a further
+ description) provides support for OMAP Framebuffer with NEON optimized code
+ for Beagleboard and other devices based on OMAP3 or newer.
+ .
+ More information about X.Org can be found at:
+ <URL:http://www.X.org>
+ <URL:http://xorg.freedesktop.org>
+ <URL:http://lists.freedesktop.org/mailman/listinfo/xorg>
+ .
+ This package is built from the X.org xf86-video-omapfb driver module.
--- xf86-video-omapfb-0.1.1.1.orig/debian/rules
+++ xf86-video-omapfb-0.1.1.1/debian/rules
@@ -0,0 +1,115 @@
+#!/usr/bin/make -f
+# debian/rules for the Debian xserver-xorg-driver-nv package.
+# Copyright © 2004 Scott James Remnant <scott@netsplit.com>
+# Copyright © 2005 Daniel Stone <daniel@fooishbar.org>
+# Copyright © 2005 David Nusinow <dnusinow@debian.org>
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+CFLAGS = -Wall -g
+ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+	NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
+	MAKEFLAGS += -j$(NUMJOBS)
+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
+
+
+confflags += --disable-static
+
+ifeq ($(DEB_BUILD_GNU_TYPE), armel)
+confflags_omap3 += $(confflags) --enable-neon
+CFLAGS_OMAP3 += $(CFLAGS) -mfloat-abi=softfp -mcpu=cortex-a8 -mfpu=neon
+endif
+
+configure:
+	dh_testdir
+	autoreconf -vfi
+
+obj-$(DEB_BUILD_GNU_TYPE)/config.status: configure
+	dh_testdir
+	mkdir -p obj-$(DEB_BUILD_GNU_TYPE)
+	cd obj-$(DEB_BUILD_GNU_TYPE) && \
+	../configure --prefix=/usr --mandir=\$${prefix}/share/man \
+	             --infodir=\$${prefix}/share/info $(confflags) \
+	             CFLAGS="$(CFLAGS)"
+
+obj-omap3/config.status: configure
+	dh_testdir
+	mkdir -p obj-omap3
+	cd obj-omap3 && \
+	../configure --prefix=/usr --mandir=\$${prefix}/share/man \
+	             --infodir=\$${prefix}/share/info $(confflags_omap3) \
+	             CFLAGS="$(CFLAGS_OMAP3)"
+
+build: build-stamp
+build-stamp: obj-$(DEB_BUILD_GNU_TYPE)/config.status obj-omap3/config.status
+	dh_testdir
+	cd obj-$(DEB_BUILD_GNU_TYPE) && $(MAKE)
+	cd obj-omap3 && $(MAKE)
+	>$@
+
+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-*
+	rm -f $$(find -name Makefile.in)
+	rm -f compile config.guess config.sub configure depcomp install-sh
+	rm -f ltmain.sh missing INSTALL aclocal.m4 config.h.in mkinstalldirs
+
+	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
+	cd obj-omap3 && $(MAKE) DESTDIR=$(CURDIR)/debian/xserver-xorg-video-omap3 install
+	rm -f $(CURDIR)/debian/xserver-xorg-video-omap3/usr/lib/xorg/modules/drivers/omapfb_drv.la
+
+# Build architecture-dependent files here.
+binary-arch: build install 
+	dh_testdir
+	dh_testroot
+
+	dh_installdocs
+	dh_installchangelogs
+	dh_install --sourcedir=debian/tmp --list-missing --exclude=.la
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_shlibdeps -- --warnings=6
+	dh_xsf_substvars
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+# Build architecture-independent files here.
+binary-indep: build install
+# Nothing to do
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
--- xf86-video-omapfb-0.1.1.1.orig/debian/xserver-xorg-video-omapfb.install
+++ xf86-video-omapfb-0.1.1.1/debian/xserver-xorg-video-omapfb.install
@@ -0,0 +1 @@
+usr/lib/xorg/modules/drivers/*.so
--- xf86-video-omapfb-0.1.1.1.orig/debian/xserver-xorg-video-omapfb.links
+++ xf86-video-omapfb-0.1.1.1/debian/xserver-xorg-video-omapfb.links
@@ -0,0 +1 @@
+usr/share/bug/xserver-xorg-core/script usr/share/bug/xserver-xorg-video-omapfb/script
--- xf86-video-omapfb-0.1.1.1.orig/debian/copyright
+++ xf86-video-omapfb-0.1.1.1/debian/copyright
@@ -0,0 +1,28 @@
+This packages was Debianized by Riku Voipio (2008. 2009.
+
+This package was downloaded from
+http://gitweb.pingu.fi/?p=xf86-video-omapfb.git;a=tree
+
+	Copyright (C) 2008 Kalle Vahlman, <zuh@iki.fi>
+	Copyright (C) 2004 Nokia Corporation
+
+  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 AUTHORS OR 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.
+
+src/omapfb.h is GPLv2 and Copyright (C) 2004 Nokia Corporation
--- xf86-video-omapfb-0.1.1.1.orig/debian/watch
+++ xf86-video-omapfb-0.1.1.1/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://xorg.freedesktop.org/releases/individual/driver/ xf86-video-omap-(.*)\.tar\.gz
--- xf86-video-omapfb-0.1.1.1.orig/debian/compat
+++ xf86-video-omapfb-0.1.1.1/debian/compat
@@ -0,0 +1 @@
+5
--- xf86-video-omapfb-0.1.1.1.orig/debian/xserver-xorg-video-omap3.links
+++ xf86-video-omapfb-0.1.1.1/debian/xserver-xorg-video-omap3.links
@@ -0,0 +1 @@
+usr/share/bug/xserver-xorg-core/script usr/share/bug/xserver-xorg-video-omapfb/script
--- xf86-video-omapfb-0.1.1.1.orig/debian/changelog
+++ xf86-video-omapfb-0.1.1.1/debian/changelog
@@ -0,0 +1,28 @@
+xf86-video-omapfb (0.1.1.1-1) unstable; urgency=low
+
+  * import new upstream version (now tag so invent version)
+  * update for latest Xorg
+
+ -- Riku Voipio <riku.voipio@iki.fi>  Thu, 31 Mar 2011 22:23:51 +0300
+
+xf86-video-omapfb (0.1.1-3) unstable; urgency=low
+
+  * Make buildable with xorg 7.5
+
+ -- Riku Voipio <riku.voipio@iki.fi>  Tue, 26 Jan 2010 19:28:43 +0200
+
+xf86-video-omapfb (0.1.1-2) unstable; urgency=low
+
+  * remove quilt and xsfbs.mk
+  * improve descriptions
+  * fix provides for omap3
+  * upload to unstable
+
+ -- Riku Voipio <riku.voipio@iki.fi>  Sat, 04 Apr 2009 22:45:09 +0300
+
+xf86-video-omapfb (0.1.1-1) experimental; urgency=low
+
+  * Initial upload to debian
+
+ -- Riku Voipio <riku.voipio@iki.fi>  Fri, 05 Sep 2008 01:41:02 +0200
+
