wok-next diff xorg-libdmx/receipt @ rev 20443

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
parents ea3c4b76ea5d
children 757d032c55c7
line diff
     1.1 --- a/xorg-libdmx/receipt	Fri Jul 14 16:02:21 2017 +0300
     1.2 +++ b/xorg-libdmx/receipt	Sat Feb 24 16:17:33 2018 +0200
     1.3 @@ -7,38 +7,35 @@
     1.4  MAINTAINER="pankso@slitaz.org"
     1.5  LICENSE="MIT"
     1.6  WEB_SITE="https://www.x.org/wiki"
     1.7 +LFS="http://www.linuxfromscratch.org/blfs/view/stable/x/x7lib.html"
     1.8  
     1.9  TARBALL="libdmx-$VERSION.tar.bz2"
    1.10  WGET_URL="$XORG_MIRROR/lib/$TARBALL"
    1.11  
    1.12  BUILD_DEPENDS="xorg-dmxproto xorg-libX11-dev xorg-libXext-dev xorg-xextproto"
    1.13  SPLIT="xorg-libdmx-dev"
    1.14 -PKG_RULE="std-dev"
    1.15  
    1.16 -# Rules to configure and make the package.
    1.17 -compile_rules()
    1.18 -{
    1.19 +compile_rules() {
    1.20 +	fix ld
    1.21  	./configure \
    1.22  		--sysconfdir=/etc \
    1.23  		--localstatedir=/var \
    1.24  		--disable-static \
    1.25  		$CONFIGURE_ARGS &&
    1.26 +	fix libtool &&
    1.27  	make && make install
    1.28  }
    1.29  
    1.30 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.31 -genpkg_rules()
    1.32 -{
    1.33 +genpkg_rules() {
    1.34  	case $PACKAGE in
    1.35  		*-libdmx)
    1.36  			copy @std
    1.37 -			DEPENDS="xorg-libX11 xorg-libXau xorg-libXdmcp xorg-libXext \
    1.38 -			xorg-libxcb"
    1.39 +			DEPENDS="xorg-libX11 xorg-libXext"
    1.40  			;;
    1.41  		*-dev)
    1.42  			copy @dev
    1.43 -			DEPENDS="xorg-libdmx xorg-dmxproto xorg-libX11-dev xorg-libXau-dev \
    1.44 -			xorg-libXdmcp-dev xorg-libXext-dev xorg-libxcb-dev"
    1.45 +			DEPENDS="xorg-libdmx \
    1.46 +			xorg-dmxproto xorg-libX11-dev xorg-libXext-dev"
    1.47  			;;
    1.48  	esac
    1.49  }