Gentoo Archives: gentoo-dev

From: Panard <panard@××××××××.net>
To: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] cmake.eclass
Date: Wed, 24 May 2006 10:49:32
Message-Id: 200605241246.18652.panard@backzone.net
In Reply to: Re: [gentoo-dev] cmake.eclass by Mike Frysinger
1 Hi,
2
3 Thanks for your comments.
4
5 Here is my updated cmake.eclass :
6 http://backzone.net/~panard/patches/gentoo-overlay/eclass/cmake.eclass
7
8 Beers,
9
10 Panard
11
12
13 Le Mercredi 24 Mai 2006 02:52, Mike Frysinger a écrit :
14 > On Thursday 18 May 2006 07:44, Panard wrote:
15 > >         OPTION=${OPTION:-"WITH_${USEFLAG}"}
16 >
17 > quoting here is pointless
18 >
19 > >         mkdir -p ${BUILDDIR}
20 > >         cd ${BUILDDIR}
21 > >         echo cmake ${S} -DCMAKE_INSTALL_PREFIX=${INSTALL_PREFIX} \
22 > >                         $(cmake_use_option debug CMAKE_BUILD_TYPE
23 > > debugfull) $*
24 > > cmake ${S} -DCMAKE_INSTALL_PREFIX=${INSTALL_PREFIX} \
25 > >                         $(cmake_use_option debug CMAKE_BUILD_TYPE
26 > > debugfull) $*
27 >
28 > $BUILDDIR and $S should be quoted
29 >
30 > use "$@", not $*
31 >
32 > >         cd ${OLDPWD}
33 >
34 > if you want to enter a directory and then return to previous, use
35 > pushd/popd, not $OLDPWD
36 > -mike
37
38 --
39 HomePage: http://dev.inzenet.org/~panard/
40 Yzis : http://www.yzis.org
41 Qomics : http://dev.inzenet.org/~panard/qomics
42 Smileys : http://smileys.inzenet.org

Replies

Subject Author
Re: [gentoo-dev] cmake.eclass Thomas Kear <thomas.kear@×××××.com>