Live ebuilds: Fix building TQt when it was not installed before.

Also: Remove safeguards for built-in commands. (not needed)

Signed-off-by: Chris <xchrisx@uber.space>
pull/61/head
Chris 4 years ago committed by TDE Gitea
parent 7f718434d3
commit d16cb46f8c

@ -162,17 +162,21 @@ src_configure() {
src_compile() {
# Compile TQt with TQmake and TQmoc
emake src-qmake src-moc sub-src || die
emake src-qmake src-moc sub-src
# Compile TQt plugins (if any selected)
emake sub-plugins || die
emake sub-plugins
# Point to libs for the tools to build fine too
export DYLD_LIBRARY_PATH="${S}/lib:${DYLD_LIBRARY_PATH}"
export LD_LIBRARY_PATH="${S}/lib:${LD_LIBRARY_PATH}"
# Compile TQDesigner (TQuic is needed by tdelibs), TQAssistant and friends (msg2tqm, qembed..)
emake sub-tools || die
emake sub-tools
# Compile examples and tutorials
if use examples; then
emake sub-tutorial sub-examples || die
emake sub-tutorial sub-examples
fi
}

Loading…
Cancel
Save