Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 1/2][v2] doxygen-native: add recipe
@ 2014-05-16  8:59 b40527
  0 siblings, 0 replies; 5+ messages in thread
From: b40527 @ 2014-05-16  8:59 UTC (permalink / raw)
  To: openembedded-core; +Cc: Zongchun Yu

From: Zongchun Yu <Zongchun.Yu@freescale.com>

Signed-off-by: Zongchun Yu <Zongchun.Yu@freescale.com>
---
 .../doxygen/doxygen-native_1.8.6.bb                |   23 ++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)
 create mode 100644 meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb

diff --git a/meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb b/meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb
new file mode 100644
index 0000000..eac4c9b
--- /dev/null
+++ b/meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb
@@ -0,0 +1,23 @@
+DESCRIPTION = "Utilities for generating documentation from source code"
+HOMEPAGE = "http://www.stack.nl/~dimitri/doxygen/index.html"
+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/doxygen-${PV}.src.tar.gz"
+
+SRC_URI[md5sum] = "9385dc52f0627875f8fa758e754ec674"
+SRC_URI[sha256sum] = "6a718625f0c0c1eb3dee78ec1f83409b49e790f4c6c47fd44cd51cb92695535f"
+
+inherit native
+
+EXTRA_OECONF = "--prefix ${prefix}"
+
+do_configure () {
+    ./configure ${EXTRA_OECONF}
+}
+
+do_install() {
+    oe_runmake install DESTDIR=${D} MAN1DIR=share/man/man1
+}
-- 
1.7.0.4



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 1/2][v2] doxygen-native: add recipe
@ 2014-05-23  6:08 b40527
  2014-05-23 13:49 ` Burton, Ross
  0 siblings, 1 reply; 5+ messages in thread
From: b40527 @ 2014-05-23  6:08 UTC (permalink / raw)
  To: openembedded-core; +Cc: Zongchun Yu

From: Zongchun Yu <Zongchun.Yu@freescale.com>

Signed-off-by: Zongchun Yu <Zongchun.Yu@freescale.com>
---
 .../doxygen/doxygen-native_1.8.6.bb                |   23 ++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)
 create mode 100644 meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb

diff --git a/meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb b/meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb
new file mode 100644
index 0000000..eac4c9b
--- /dev/null
+++ b/meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb
@@ -0,0 +1,23 @@
+DESCRIPTION = "Utilities for generating documentation from source code"
+HOMEPAGE = "http://www.stack.nl/~dimitri/doxygen/index.html"
+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/doxygen-${PV}.src.tar.gz"
+
+SRC_URI[md5sum] = "9385dc52f0627875f8fa758e754ec674"
+SRC_URI[sha256sum] = "6a718625f0c0c1eb3dee78ec1f83409b49e790f4c6c47fd44cd51cb92695535f"
+
+inherit native
+
+EXTRA_OECONF = "--prefix ${prefix}"
+
+do_configure () {
+    ./configure ${EXTRA_OECONF}
+}
+
+do_install() {
+    oe_runmake install DESTDIR=${D} MAN1DIR=share/man/man1
+}
-- 
1.7.0.4



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2][v2] doxygen-native: add recipe
  2014-05-23  6:08 [PATCH 1/2][v2] doxygen-native: add recipe b40527
@ 2014-05-23 13:49 ` Burton, Ross
  2014-05-23 16:33   ` Burton, Ross
  0 siblings, 1 reply; 5+ messages in thread
From: Burton, Ross @ 2014-05-23 13:49 UTC (permalink / raw)
  To: b40527@freescale.com; +Cc: Zongchun Yu, OE-core

Whilst this recipe works, I wonder if it would be more useful if it
were cross-compilable and used BBCLASSEXTEND to become native.

Ross

On 23 May 2014 07:08,  <b40527@freescale.com> wrote:
> From: Zongchun Yu <Zongchun.Yu@freescale.com>
>
> Signed-off-by: Zongchun Yu <Zongchun.Yu@freescale.com>
> ---
>  .../doxygen/doxygen-native_1.8.6.bb                |   23 ++++++++++++++++++++
>  1 files changed, 23 insertions(+), 0 deletions(-)
>  create mode 100644 meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb
>
> diff --git a/meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb b/meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb
> new file mode 100644
> index 0000000..eac4c9b
> --- /dev/null
> +++ b/meta/recipes-devtools/doxygen/doxygen-native_1.8.6.bb
> @@ -0,0 +1,23 @@
> +DESCRIPTION = "Utilities for generating documentation from source code"
> +HOMEPAGE = "http://www.stack.nl/~dimitri/doxygen/index.html"
> +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/doxygen-${PV}.src.tar.gz"
> +
> +SRC_URI[md5sum] = "9385dc52f0627875f8fa758e754ec674"
> +SRC_URI[sha256sum] = "6a718625f0c0c1eb3dee78ec1f83409b49e790f4c6c47fd44cd51cb92695535f"
> +
> +inherit native
> +
> +EXTRA_OECONF = "--prefix ${prefix}"
> +
> +do_configure () {
> +    ./configure ${EXTRA_OECONF}
> +}
> +
> +do_install() {
> +    oe_runmake install DESTDIR=${D} MAN1DIR=share/man/man1
> +}
> --
> 1.7.0.4
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2][v2] doxygen-native: add recipe
  2014-05-23 13:49 ` Burton, Ross
@ 2014-05-23 16:33   ` Burton, Ross
  2014-05-27  7:38     ` Zongchun YU
  0 siblings, 1 reply; 5+ messages in thread
From: Burton, Ross @ 2014-05-23 16:33 UTC (permalink / raw)
  To: b40527@freescale.com; +Cc: Zongchun Yu, OE-core

On 23 May 2014 14:49, Burton, Ross <ross.burton@intel.com> wrote:
> Whilst this recipe works, I wonder if it would be more useful if it
> were cross-compilable and used BBCLASSEXTEND to become native.

"That can't be too hard" I thought.  "Surely something as common as
doxygen has a reasonable build system" I thought.

When scratching an itch I discovered that Qt had written another build
system (I make that three so far), but this branch appears to be able
to build both target and native doxygen binaries:

http://git.yoctoproject.org/cgit/cgit.cgi/poky-contrib/commit/?h=ross/doxy

Apart from the TODO in the recipe that needs to be resolved, it's
entirely untested on both host and target.

Ross


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2][v2] doxygen-native: add recipe
  2014-05-23 16:33   ` Burton, Ross
@ 2014-05-27  7:38     ` Zongchun YU
  0 siblings, 0 replies; 5+ messages in thread
From: Zongchun YU @ 2014-05-27  7:38 UTC (permalink / raw)
  To: 'Burton, Ross'; +Cc: 'OE-core'

> Whilst this recipe works, I wonder if it would be more useful if it 
> were cross-compilable and used BBCLASSEXTEND to become native.
Yes. I agree. it would be more useful.



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-05-27  7:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-23  6:08 [PATCH 1/2][v2] doxygen-native: add recipe b40527
2014-05-23 13:49 ` Burton, Ross
2014-05-23 16:33   ` Burton, Ross
2014-05-27  7:38     ` Zongchun YU
  -- strict thread matches above, loose matches on Subject: below --
2014-05-16  8:59 b40527

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox