Gentoo Archives: gentoo-user

From: "pepone.onrez" <pepone.onrez@×××××.com>
To: gentoo-user@l.g.o
Subject: [gentoo-user] Propble updating ebuild
Date: Sat, 01 Dec 2007 23:14:36
Message-Id: 198501d60712011506k2d3f3a45m296b5c80ba354e3e@mail.gmail.com
1 Hi ,
2
3 I updating the ebuild for appweb to current stable version 2.4.0
4 http://bugs.gentoo.org/show_bug.cgi?id=145073
5
6 I need same help for made this ebuild
7
8 when i call econf it append the option " --mandir=/usr/share/man" to my
9 configure options and the appweb configure don't suport this option and i
10 get this error when test my ebuild
11
12 configure: unknown option: --mandir=/usr/share/man
13 *
14 * ERROR: www-servers/appweb-2.4.0 failed.
15
16
17 How can i solve this?
18
19 Here is my src_compile function where econf is called
20
21 src_compile() {
22 cd ${WORKDIR}/${PN}-src-${PV}
23 local myconf
24 myconf="${myconf} --with-copy=loadable"
25 myconf="${myconf} --with-upload=loadable"
26 myconf="${myconf} --with-ssl=loadable"
27 myconf="${myconf} --disable-test"
28 myconf="${myconf} --disable-samples"
29 myconf="${myconf} --enable-cookies"
30 myconf="${myconf} --enable-access-log"
31 myconf="${myconf} --enable-log"
32 myconf="${myconf} --enable-shared"
33 myconf="${myconf} --enable-multi-thread"
34 myconf="${myconf} --enable-modules"
35 myconf="${myconf} --enable-stdc++"
36 myconf="${myconf} --type=RELEASE"
37 econf ${myconf} || died "econf failed!!"
38 emake || died "emake failed!!"
39 }
40
41
42 Any help or comments for update this package to it's lates stable version
43 are wellcome