From: Ross Burton <[email protected]> Based on doxygen-native by Zongchun Yu <[email protected]>.
Signed-off-by: Ross Burton <[email protected]> Signed-off-by: Sam Nelson <[email protected]> --- Bringing this from http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/patch/?id=eae880e4aa5426d73f8695a3748db5a55915909c and the folder moved to meta-arago-extras --- --- .../recipes-devtools/doxygen/doxygen_1.8.6.bb | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 meta-arago-extras/recipes-devtools/doxygen/doxygen_1.8.6.bb diff --git a/meta-arago-extras/recipes-devtools/doxygen/doxygen_1.8.6.bb b/meta-arago-extras/recipes-devtools/doxygen/doxygen_1.8.6.bb new file mode 100644 index 0000000..bef665e --- /dev/null +++ b/meta-arago-extras/recipes-devtools/doxygen/doxygen_1.8.6.bb @@ -0,0 +1,32 @@ +DESCRIPTION = "Utilities for generating documentation from source code" +HOMEPAGE = "http://www.doxygen.org/" +SECTION = "console/utils" +LICENSE = "GPLv2" +LIC_FILES_CHKSUM = "file://LICENSE;md5=b380c86cea229fa42b9e543fc491f5eb" + +DEPENDS = "flex-native bison-native" + +SRC_URI = "http://ftp.stack.nl/pub/users/dimitri/${BP}.src.tar.gz" +SRC_URI[md5sum] = "9385dc52f0627875f8fa758e754ec674" +SRC_URI[sha256sum] = "6a718625f0c0c1eb3dee78ec1f83409b49e790f4c6c47fd44cd51cb92695535f" + +EXTRA_OECONF = "--prefix ${prefix}" + +do_configure () { + ./configure ${EXTRA_OECONF} + + # TODO on rebuilds will repeatedly append. Change logic to include a + # separate file and overwrite that file? + echo "TMAKE_CC=${CC}" >> tmake/lib/linux-g++/tmake.conf + echo "TMAKE_CXX=${CXX}" >> tmake/lib/linux-g++/tmake.conf + echo "TMAKE_CFLAGS=${CFLAGS}" >> tmake/lib/linux-g++/tmake.conf + echo "TMAKE_CXXFLAGS=${CXXFLAGS}" >> tmake/lib/linux-g++/tmake.conf + echo "TMAKE_LINK=${CXX}" >> tmake/lib/linux-g++/tmake.conf + echo "TMAKE_LFLAGS=${LDFLAGS}" >> tmake/lib/linux-g++/tmake.conf +} + +do_install() { + oe_runmake install DESTDIR=${D} MAN1DIR=share/man/man1 +} + +BBCLASSEXTEND = "native" -- 1.9.1 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
