wok annotate xorg-xf86-video-vesa/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
parents 5b6b81ccd958
children c514cc4854d8
rev   line source
pankso@88 1 # SliTaz package receipt.
pankso@88 2
pankso@88 3 PACKAGE="xorg-xf86-video-vesa"
pankso@5304 4 VERSION="2.3.0"
pankso@88 5 CATEGORY="x-window"
erjo@4865 6 SHORT_DESC="Xorg Vesa video driver."
pankso@88 7 MAINTAINER="pankso@slitaz.org"
pascal@1418 8 DEPENDS="xorg"
pascal@1480 9 BUILD_DEPENDS="xorg-server xorg-xproto xorg-fontsproto"
pankso@88 10 SOURCE="xf86-video-vesa"
gokhlayeh@6993 11 TARBALL="$SOURCE-$VERSION.tar.bz2"
pankso@88 12 WEB_SITE="http://www.x.org/"
pankso@88 13 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
pankso@88 14
pankso@88 15 # Rules to configure and make the package.
pankso@88 16 compile_rules()
pankso@88 17 {
pankso@88 18 cd $src
pankso@444 19 ./configure \
pankso@444 20 --prefix=/usr \
pankso@444 21 --sysconfdir=/etc \
pankso@444 22 --mandir=/usr/share/man \
pankso@444 23 --localstatedir=/var \
pankso@444 24 --with-xorg-module-dir=/usr/lib/X11/modules \
pascal@1480 25 $CONFIGURE_ARGS &&
pascal@1480 26 make &&
pankso@88 27 make DESTDIR=$PWD/_pkg install
pankso@88 28 }
pankso@88 29
pankso@88 30 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@88 31 genpkg_rules()
pankso@88 32 {
pankso@444 33 mkdir -p $fs/usr/lib/X11/modules/drivers/
pankso@444 34 cp -a $_pkg/usr/lib/X11/modules/drivers/*.so \
pankso@444 35 $fs/usr/lib/X11/modules/drivers/
pankso@88 36 }
pankso@88 37