wok-next annotate xorg-xf86-input-wacom/receipt @ rev 20534

Clean default configure options when site script used.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 30 19:31:50 2018 +0300 (2018-03-30)
parents ea3c4b76ea5d
children cd7906120828
rev   line source
al@19805 1 # SliTaz package receipt v2.
al@19657 2
al@19657 3 PACKAGE="xorg-xf86-input-wacom"
al@19805 4 VERSION="0.35.0"
al@19657 5 CATEGORY="x-window"
al@19805 6 SHORT_DESC="X input driver for Wacom and Wacom-like tablets"
al@19657 7 MAINTAINER="al.bobylev@gmail.com"
al@19657 8 LICENSE="GPL2"
al@19657 9 WEB_SITE="http://linuxwacom.sourceforge.net/wiki/index.php/Main_Page"
al@19657 10
al@19657 11 TARBALL="xf86-input-wacom-$VERSION.tar.bz2"
al@19657 12 WGET_URL="$SF_MIRROR/linuxwacom/$TARBALL"
al@19657 13
al@19805 14 BUILD_DEPENDS="xorg-util-macros xorg-server-dev xorg-xproto xorg-libXext-dev \
al@19805 15 xorg-kbproto xorg-inputproto xorg-randrproto xorg-libXi-dev xorg-libXrandr-dev \
al@19805 16 xorg-libXinerama-dev eudev-dev"
al@19805 17 SPLIT="xorg-xf86-input-wacom-dev"
al@19805 18 PKG_RULE="std-dev"
al@19657 19
al@20534 20 compile_rules() {
al@19657 21 ./configure \
al@19657 22 --with-systemd-unit-dir=no \
al@19657 23 $CONFIGURE_ARGS &&
al@20534 24 fix libtool &&
al@19805 25 make &&
al@19805 26 make install
al@19657 27 }
al@19657 28
al@20534 29 genpkg_rules() {
al@19805 30 case $PACKAGE in
al@19805 31 *-wacom)
al@19805 32 copy @std
al@19805 33 DEPENDS="eudev xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext \
al@19805 34 xorg-libXi xorg-libXinerama xorg-libXrandr xorg-libXrender \
al@19805 35 xorg-libxcb"
al@19805 36 ;;
al@19805 37 *-dev)
al@19805 38 copy @dev
al@19805 39 DEPENDS="xorg-xf86-input-wacom xorg-server-dev"
al@19805 40 ;;
al@19805 41 esac
al@19657 42 }