wok diff pam-dev/receipt @ rev 5894

inkscape: Fix build with gcc45 (http://bugs.gentoo.org/show_bug.cgi?id=305749)
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Thu Jul 22 23:54:43 2010 +0200 (2010-07-22)
parents 8e44b7502050
children e06b8d6ac967
line diff
     1.1 --- a/pam-dev/receipt	Fri Mar 27 12:41:30 2009 +0000
     1.2 +++ b/pam-dev/receipt	Thu Jul 22 23:54:43 2010 +0200
     1.3 @@ -1,19 +1,23 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="pam-dev"
     1.7 -VERSION="1.0.3"
     1.8 +VERSION="1.1.0"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Pluggable Authentication Modules, development files."
    1.11  MAINTAINER="pascal.bellard@slitaz.org"
    1.12  WANTED="pam"
    1.13 +SOURCE="Linux-PAM"
    1.14  WEB_SITE="http://www.us.kernel.org/pub/linux/libs/pam/"
    1.15  
    1.16  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.17  genpkg_rules()
    1.18  {
    1.19 +	# tazwok does not define _pkg correctly when both WANTED and SOURCE are set
    1.20 +	_pkg=$WOK/$WANTED/$SOURCE-$VERSION/_pkg
    1.21 +
    1.22  	mkdir -p $fs/lib $fs/usr
    1.23  	cp -a $_pkg/usr/include $fs/usr
    1.24  	ln -s security $fs/usr/include/pam
    1.25 -	cp -a $_pkg/lib/*a $fs/lib
    1.26 +	cp -a $_pkg/lib/*.*a $fs/lib
    1.27  	cp -a $_pkg/lib/security/*a $fs/lib
    1.28  }