wok diff xorg-libSM/receipt @ rev 3950

Update: Rocrail (TOOLPREFIX)
author Matthew Sheets <rcx@zoominternet.net>
date Mon Aug 24 13:40:38 2009 +0000 (2009-08-24)
parents 075898aaed14
children 0588160a6878
line diff
     1.1 --- a/xorg-libSM/receipt	Wed Jul 16 16:20:36 2008 +0000
     1.2 +++ b/xorg-libSM/receipt	Mon Aug 24 13:40:38 2009 +0000
     1.3 @@ -1,11 +1,13 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="xorg-libSM"
     1.7 -VERSION="1.0.3"
     1.8 +VERSION="1.1.0"
     1.9  CATEGORY="x-window"
    1.10  SHORT_DESC="Xorg server module."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  SOURCE="libSM"
    1.13 +DEPENDS="libuuid"
    1.14 +BUILD_DEPENDS="e2fsprogs-dev"
    1.15  TARBALL="$SOURCE-$VERSION.tar.gz"
    1.16  WEB_SITE="http://www.x.org/"
    1.17  WGET_URL="$XORG_MIRROR/lib/$TARBALL"
    1.18 @@ -13,18 +15,20 @@
    1.19  # Rules to configure and make the package.
    1.20  compile_rules()
    1.21  {
    1.22 -    cd $src
    1.23 -    ./configure --prefix=/usr --sysconfdir=/etc \
    1.24 -    --mandir=/usr/share/man --localstatedir=/var \
    1.25 -    $CONFIGURE_ARGS
    1.26 -    make
    1.27 -    make DESTDIR=$PWD/_pkg install
    1.28 +	cd $src
    1.29 +	./configure \
    1.30 +		--prefix=/usr \
    1.31 +		--sysconfdir=/etc \
    1.32 +		--mandir=/usr/share/man \
    1.33 +		--localstatedir=/var \
    1.34 +		$CONFIGURE_ARGS &&
    1.35 +	make &&
    1.36 +	make DESTDIR=$PWD/_pkg install
    1.37  }
    1.38  
    1.39  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.40  genpkg_rules()
    1.41  {
    1.42  	mkdir -p $fs/usr/lib
    1.43 -    cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.44 -    strip -s $fs/usr/lib/*
    1.45 +	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.46  }