From 1a565ed1a8483f2c11ca92521e2213792651a404 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sat, 15 Jun 2013 22:58:58 +0200 Subject: [PATCH] bison: update recipe * Move liby to develop/lib and declare the respective provides correctly. * Use runConfigure, jobArgs. * Remove charset.alias. --- sys-devel/bison/bison-2.4.3.recipe | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/sys-devel/bison/bison-2.4.3.recipe b/sys-devel/bison/bison-2.4.3.recipe index 8a98b4c02..4f81f81c6 100644 --- a/sys-devel/bison/bison-2.4.3.recipe +++ b/sys-devel/bison/bison-2.4.3.recipe @@ -16,14 +16,14 @@ COPYRIGHT="1992-2010 Free Software Foundation, Inc." LICENSE="GNU GPL v3" SRC_URI="http://ftp.gnu.org/gnu/bison/bison-2.4.3.tar.gz" CHECKSUM_MD5="ea45c778b36bdc7a720096819e292a73" -REVISION="4" +REVISION="5" ARCHITECTURES="x86_gcc2 ?x86" PROVIDES=" bison = $portVersion compat >= 2.4 cmd:bison = $portVersion compat >= 2.4 cmd:yacc - lib:liby.a = $portVersion compat >= 2.4 + devel:liby = $portVersion compat >= 2.4 " REQUIRES=" haiku >= $haikuVersion @@ -45,18 +45,23 @@ BUILD() { # bison looks for m4 in an absolute path, but uses that only within # its own testsuite, so we let it be ... - ./configure $configureDirArgs \ + runConfigure ./configure \ --disable-rpath --with-gnu-ld - make -j$jobs + make $jobArgs } INSTALL() { make install + + # prepare develop/lib + prepareInstalledDevelLibs liby + + rm $libDir/charset.alias + rmdir $libDir } TEST() { make check } -