version="3.3.3"
description="Multiplatform C++ GUI application framework"
install="use native"
- supported="use native"
+ supported="use native,install binaries"
disable="false"
dependancies="gcc"
- installdiskspace="0"
+ installdiskspace="46681"
temporarydiskspace="0"
script="qt-3.3.3.sh"/>
<product name="Sip"
version="1.3.7"
description="Documentation system for C++, C, Java, IDL, etc."
install="use native"
- supported="use native"
+ supported="use native,install binaries"
disable="false"
dependancies="gcc,Qt"
installdiskspace="0"
install_binary()
{
-echo "The installation of doxygen 1.3.7 from sources is not provided! Use native doxygen."
-return 1
+make_env ${INSTALL_ROOT} ${INSTALL_WORK} "${PRODUCT_SEQUENCE}" ${PRODUCT_TYPE}
+source ${INSTALL_WORK}/$SHRC
+
+check_jb tar xfz ${SOURCE_DIR}/doxygen-1.3.7.tar.gz -C ${INSTALL_ROOT}
+
+print_env
}
export PROCEDURE=$1;
install_binary()
{
-echo "The installation of Qt 3.3.3 from binaries is not provided! Use native Qt."
-return 1
+make_env ${INSTALL_ROOT} ${INSTALL_WORK} "${PRODUCT_SEQUENCE}" ${PRODUCT_TYPE}
+source ${INSTALL_WORK}/$SHRC
+
+check_jb tar xfz ${SOURCE_DIR}/qt-3.3.3.tar.gz -C ${INSTALL_ROOT}
+
+cd ${PRODUCT_DIR}/lib
+sed -e "s%^libdir='\(.*\)'%libdir='${PRODUCT_DIR}/lib'%g" libqt-mt.la > libqt-mt.la.new
+mv -f libqt-mt.la.new libqt-mt.la
+cd ${PRODUCT_DIR}/bin
+sed -e "s%export QTDIR=\(.*\)%export QTDIR=${PRODUCT_DIR}%g" designer > designer.new
+mv -f designer.new designer
+chmod 755 designer
+
+print_env
}
export PROCEDURE=$1;