wok diff xorg-libX11/receipt @ rev 22365

kdelibs: fix kdeui/CMakeLists.txt
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 22 10:49:44 2019 +0100 (2019-11-22)
parents 814c58f64f83
children 5dfd8f09a37f
line diff
     1.1 --- a/xorg-libX11/receipt	Thu Aug 09 12:16:16 2018 +0200
     1.2 +++ b/xorg-libX11/receipt	Fri Nov 22 10:49:44 2019 +0100
     1.3 @@ -1,28 +1,30 @@
     1.4   # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="xorg-libX11"
     1.7 -VERSION="1.5.99.902"
     1.8 +VERSION="1.6.9"
     1.9  CATEGORY="x-window"
    1.10 -SHORT_DESC="X Library"
    1.11 +SHORT_DESC="X Library."
    1.12  MAINTAINER="pankso@slitaz.org"
    1.13  LICENSE="other"
    1.14 -WEB_SITE="https://www.x.org/"
    1.15 +WEB_SITE="https://www.x.org/wiki/"
    1.16 +
    1.17  SOURCE="libX11"
    1.18  TARBALL="$SOURCE-$VERSION.tar.bz2"
    1.19  WGET_URL="$XORG_MIRROR/lib/$TARBALL"
    1.20 -HOST_ARCH="i486 arm"
    1.21  
    1.22  DEPENDS="libxcb xorg-libXau xorg-libXdmcp"
    1.23 -BUILD_DEPENDS="xorg-xtrans libxcb-dev xorg-kbproto xorg-xf86bigfontproto \
    1.24 -xorg-inputproto xorg-xextproto xorg-libXau-dev xorg-libXdmcp-dev"
    1.25 +BUILD_DEPENDS="libxcb-dev xorg-inputproto xorg-kbproto xorg-libXau-dev 
    1.26 +	xorg-libXdmcp-dev xorg-xextproto xorg-xf86bigfontproto xorg-xtrans"
    1.27 +
    1.28 +HOST_ARCH="i486 arm"
    1.29  
    1.30  # Rules to configure and make the package.
    1.31  compile_rules()
    1.32  {
    1.33 -	./configure \
    1.34 -		--sysconfdir=/etc \
    1.35 -		--localstatedir=/var \
    1.36 -		--disable-static \
    1.37 +	./configure			\
    1.38 +		--sysconfdir=/etc	\
    1.39 +		--localstatedir=/var	\
    1.40 +		--disable-static	\
    1.41  		$CONFIGURE_ARGS &&
    1.42  	make &&
    1.43  	make install
    1.44 @@ -31,14 +33,15 @@
    1.45  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.46  genpkg_rules()
    1.47  {
    1.48 -	mkdir -p \
    1.49 -		$fs/usr/lib \
    1.50 -		$fs/usr/share/X11/locale
    1.51 +	mkdir -p $fs/usr/lib
    1.52 +	mkdir -p $fs/usr/share/X11/locale
    1.53  
    1.54 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.55 -	cp -a $install/usr/share/X11/X* $fs/usr/share/X11
    1.56 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.57 +	cp -a $install/usr/share/X11/X*	$fs/usr/share/X11
    1.58 +
    1.59  	# X11 locale; other moved to locale packs
    1.60 -	for i in C en_US.UTF-8 compose.dir locale.alias locale.dir; do
    1.61 +	for i in C en_US.UTF-8 compose.dir locale.alias locale.dir
    1.62 +	  do
    1.63  		cp -a $install/usr/share/X11/locale/$i $fs/usr/share/X11/locale
    1.64 -	done
    1.65 +	  done
    1.66  }