wok annotate xorg-xf86-input-elographics/receipt @ rev 15919

openbox: depends on xorg-libXcursor (fix no X in justx flavor)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 18 17:43:11 2014 +0100 (2014-02-18)
parents 442cc1368715
children 814c58f64f83
rev   line source
pankso@3080 1 # SliTaz package receipt.
pankso@3080 2
pankso@3080 3 PACKAGE="xorg-xf86-input-elographics"
pascal@15161 4 VERSION="1.4.1"
pankso@3080 5 CATEGORY="x-window"
pankso@3080 6 SHORT_DESC="Xorg elographics driver."
pankso@3080 7 MAINTAINER="pankso@slitaz.org"
pascal@15579 8 LICENSE="MIT"
pankso@3080 9 SOURCE="xf86-input-elographics"
gokhlayeh@6993 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pankso@3080 11 WEB_SITE="http://www.x.org/"
pankso@3080 12 WGET_URL="$XORG_MIRROR/driver/$TARBALL"
pankso@3080 13
pascal@15162 14 DEPENDS="xorg-server"
pascal@15162 15 BUILD_DEPENDS="xorg-server-dev"
pascal@15162 16
pankso@3080 17 # Rules to configure and make the package.
pankso@3080 18 compile_rules()
pankso@3080 19 {
pankso@3080 20 cd $src
pankso@3080 21 ./configure \
pankso@3080 22 --prefix=/usr \
pankso@3080 23 --sysconfdir=/etc \
pankso@3080 24 --mandir=/usr/share/man \
pankso@3080 25 --localstatedir=/var \
pankso@3080 26 --with-xorg-module-dir=/usr/lib/X11/modules \
pankso@3080 27 $CONFIGURE_ARGS &&
pankso@3080 28 make &&
pascal@15161 29 make DESTDIR=$DESTDIR install
pankso@3080 30 }
pankso@3080 31
pankso@3080 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@3080 33 genpkg_rules()
pankso@3080 34 {
pankso@3080 35 mkdir -p $fs/usr/lib/X11/modules/input/
pascal@15161 36 cp -a $install/usr/lib/X11/modules/input/*.so \
pankso@3080 37 $fs/usr/lib/X11/modules/input/
pankso@3080 38 }
pankso@3080 39