wok diff make/receipt @ rev 6693

Added 2 patches to make. Patches came from archlinux.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Oct 13 01:41:55 2010 +0000 (2010-10-13)
parents 8f3b8ae1bd16
children 7d65298a998e
line diff
     1.1 --- a/make/receipt	Thu Oct 07 00:35:21 2010 +0000
     1.2 +++ b/make/receipt	Wed Oct 13 01:41:55 2010 +0000
     1.3 @@ -13,9 +13,17 @@
     1.4  compile_rules()
     1.5  {
     1.6  	cd $src
     1.7 +
     1.8 +	# http://savannah.gnu.org/bugs/?30612
     1.9 +	patch -Np1 -i ../stuff/bug30612.patch
    1.10 +  
    1.11 +	# http://savannah.gnu.org/bugs/?30723
    1.12 +	patch -Np1 -i ../stuff/bug30723.patch
    1.13 +
    1.14  	./configure --prefix=/usr --infodir=/usr/share/info \
    1.15  	--mandir=/usr/share/man $CONFIGURE_ARGS
    1.16  	make
    1.17 +	make check
    1.18  	make DESTDIR=$PWD/_pkg install
    1.19  }
    1.20  
    1.21 @@ -23,7 +31,7 @@
    1.22  genpkg_rules()
    1.23  {
    1.24  	mkdir -p $fs/usr/share/locale
    1.25 -    cp -a $_pkg/usr/bin $fs/usr
    1.26 -    cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    1.27 +	cp -a $_pkg/usr/bin $fs/usr
    1.28 +	cp -a $_pkg/usr/share/locale/fr $fs/usr/share/locale
    1.29  	strip -s $fs/usr/bin/*
    1.30  }