diff options
Diffstat (limited to 'eclass/bjam.eclass')
-rw-r--r-- | eclass/bjam.eclass | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/eclass/bjam.eclass b/eclass/bjam.eclass new file mode 100644 index 0000000..f2007d9 --- /dev/null +++ b/eclass/bjam.eclass @@ -0,0 +1,20 @@ +# Distributed under the terms of the GNU General Public License v2 + +# @ECLASS: bjam.eclass +# @MAINTAINER: +# randomdan +# @AUTHOR: +# randomdan +# @BLURB: +# @DESCRIPTION: + +src_prepare() { + ebegin "Setting portage CXX and LD flags" + sed -i "s|^using gcc .*|using gcc : : : <compileflags>\"${CXXFLAGS}\" <linkflags>\"${LDFLAGS}\" ;|" ${S}/Jamroot.jam + eend $? +} + +bjambuild() { + setarch $(uname -m) -RL b2 ${BJAMOPTS} variant=release -q $@ +} + |