You are not logged in.

#1 2010-10-16 17:48:11

Stoffi
Member
Registered: 2007-03-15
Posts: 107

[Request] xf86-video-fbdev with Damage support (Displaylink support)

After upgrading to X.org 1.9, my displaylink monitor stopped working,
as the driver wasn't upgraded.

According to this thread:
http://comments.gmane.org/gmane.comp.fr … libdlo/433
(and this post)
http://permalink.gmane.org/gmane.comp.f … libdlo/444

This patched fbdev should make my displaylink device work against X.org 1.9.
http://plugable.com/2010/05/21/linux-su … k-devices/


Can somebody please help me with this package?

This is how far I got with the PKGBUILD:

# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# See http://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines
# for more information on packaging from GIT sources.

# Contributor: Your Name <youremail@domain.com>
pkgname=fbdev-displaylink-git
pkgver=0.4.2
pkgrel=1
pkgdesc="xf86-video-fbdev enhanced with X Damage protocol support"
arch=(i686)
url="http://plugable.com/2010/05/21/linux-support-for-higher-res-monitors-on-lower-res-displaylink-devices/"
license=('GPL')
depends=('glibc') #??
makedepends=('git' 'xorg-server-devel') #??
provides=('xf86-video-fbdev')
conflicts=('xf86-video-fbdev')
groups=('xorg-video-drivers')
backup=()
options=()
install=
source=()
noextract=()
md5sums=() #generate with 'makepkg -g'

_gitroot="http://git.plugable.com/webdav/xf86-video-fbdev" #??
_gitname="MODENAME" #??

build() {
  cd "$srcdir"
  msg "Connecting to GIT server...."

  if [ -d $_gitname ] ; then
    cd $_gitname && git pull origin
    msg "The local files are updated."
  else
    git clone $_gitroot $_gitname
  fi

  msg "GIT checkout done or server timeout"
  msg "Starting make..."

  rm -rf "$srcdir/$_gitname-build"
  git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build"
  cd "$srcdir/$_gitname-build"

  #
  # BUILD HERE
  #

  ./autogen.sh
  ./configure --prefix=/usr
  make || return 1
  make DESTDIR="$pkgdir/" install
} 

I would really apreciate any help on making this package work, so that I can use my monitor again. smile

Offline

Board footer

Powered by FluxBB