Gentoo Archives: gentoo-dev

From: KLessou <klessou@×××××.com>
To: gentoo-dev@l.g.o
Subject: [gentoo-dev] Econf
Date: Mon, 30 Oct 2006 21:55:47
Message-Id: b5ae2db0610301344g34b14da8gdf7712aa01bf05c4@mail.gmail.com
1 Hello,
2
3 I have to make a Live ebuild (from a CVS repository). But econf don't find
4 the configure script.
5
6 >> !!! no configure script found .
7
8 The configure file is into ${WORKDIR}/package/, I have defined ${S} here,
9 but no result.
10
11 Thanks for advance if you have any idea.
12
13 --
14 ~~~~~
15 | klessou |
16 ~~~~~
17 More about this ebuild :
18
19 My file /usr/local/portage/dev-libs/pwlib/pwlib-1.11.9999.ebuild
20
21 An extract of my code :
22 *Code:*
23 # Copyright 1999-2006 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 # $Header: $
26 inherit cvs eutils flag-o-matic multilib
27
28 IUSE="alsa debug ieee1394 ipv6 ldap oss sasl sdl ssl v4l v4l2 xml"
29 DESCRIPTION="Portable Multiplatform Class Libraries used by several VoIP
30 applications"
31 HOMEPAGE="http://www.ekiga.org"
32
33 ECVS_SERVER="openh323.cvs.sourceforge.net:/cvsroot/openh323"
34 ECVS_MODULE="pwlib"
35 ECVS_AUTH="pserver"
36 ECVS_USER="anonymous"
37 ECVS_PASS=""
38 ECVS_CVS_OPTIONS="-z9 -r ptlib_unix"
39
40 LICENSE="MPL-1.1"
41 SLOT="0"
42 KEYWORDS="-*"
43 [...]
44
45 src_compile() {
46 [...]
47 S="${WORKDIR}/pwlib"
48
49 econf \
50 --enable-plugins \
51 $(use_enable v4l2) \
52 $(use_enable v4l) \
53 [...]
54 $(use_enable sasl) \
55 $(use_enable xml expat) \
56 ${myconf} \
57 || die "Error: econf failed!"
58 [...]
59
60 The configure file is here :
61 -rwxr-xr-x 1 root root 307K oct 18 18:08 /var/tmp/portage/pwlib-1.11.9999
62 /work/pwlib/configure

Replies

Subject Author
Re: [gentoo-dev] Econf Chris Gianelloni <wolf31o2@g.o>