From 251311ade712347d795be34807af0650a3da6498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Mon, 4 Jul 2005 15:24:06 +0000 Subject: [PATCH] =?UTF-8?q?bash=20i=C3=A7in=20actions.py'yi=20biraz=20d?= =?UTF-8?q?=C3=BCzenledim.=20bash...ebuild'de=20install=20s=C4=B1ras=C4=B1?= =?UTF-8?q?nda=20bir=20tak=C4=B1m=20daha=20i=C5=9Fler=20yap=C4=B1l=C4=B1yo?= =?UTF-8?q?r(install=20dir=20i=C3=A7erisinde=20cp/symlink=20vs.)=20onlar?= =?UTF-8?q?=C4=B1=20da=20halletmek=20gerekiyor.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Çağlar. Bunun için actionsAPI'nin install_dir içerisinde de çalışabilir olması lazım. glb.evn ile bu mümkün... --- samples/bash/actions.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/samples/bash/actions.py b/samples/bash/actions.py index bffa5043..a620f446 100644 --- a/samples/bash/actions.py +++ b/samples/bash/actions.py @@ -3,12 +3,18 @@ from pisi.actionsapi import gnuconfig from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools def setup(): gnuconfig.gnuconfig_update() -# libtoolize.libtoolize() - autotools.configure( '--with-nls' ) + + pisitools.dosed("s:-lcurses:-lncurses:", "configure") + + autotools.configure("--with-nls --disable-profiling --without-gnu-malloc") + + pisitools.dosed("/^TERMCAP_LIB/s:-lncurses:-Wl,-Bstatic -lncurses -Wl,-Bdynamic:", + "Makefile") def build(): autotools.make()