diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-05-18 21:33:48 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-05-18 21:33:48 +0100 |
commit | b81dc09a1e655fb28b8ac60a5807377fff9139c6 (patch) | |
tree | 2a62653454dab6b717aafa455ba1918a8791e62e /eclass/bjam.eclass | |
parent | Bump icetray-0.1.4 (diff) | |
download | portage-b81dc09a1e655fb28b8ac60a5807377fff9139c6.tar.bz2 portage-b81dc09a1e655fb28b8ac60a5807377fff9139c6.tar.xz portage-b81dc09a1e655fb28b8ac60a5807377fff9139c6.zip |
Introduce the bjam.eclass #aboutTime and do some general updates on the latest netfs ebuild
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 $@ +} + |