All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] doxygen: add recipe
@ 2014-05-16  7:45 b40527
  2014-05-16  8:40 ` Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: b40527 @ 2014-05-16  7:45 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] doxygen: add recipe
  2014-05-16  7:45 [PATCH 1/2] doxygen: add recipe b40527
@ 2014-05-16  8:40 ` Khem Raj
  2014-05-19  3:01   ` Saul Wold
  0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2014-05-16  8:40 UTC (permalink / raw)
  To: Zongchun YU; +Cc: Zongchun Yu, Patches and discussions about the oe-core layer

On Fri, May 16, 2014 at 12:45 AM,  <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 ++++++++++++++++++++

Commit message should say that its adding recipe for doxygen-native
and not oxygen

>  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] doxygen: add recipe
  2014-05-16  8:40 ` Khem Raj
@ 2014-05-19  3:01   ` Saul Wold
  2014-05-19  3:10     ` Zongchun YU
  2014-05-19  3:12     ` Khem Raj
  0 siblings, 2 replies; 5+ messages in thread
From: Saul Wold @ 2014-05-19  3:01 UTC (permalink / raw)
  To: Khem Raj, Zongchun YU
  Cc: Zongchun Yu, Patches and discussions about the oe-core layer

On 05/16/2014 01:40 AM, Khem Raj wrote:
> On Fri, May 16, 2014 at 12:45 AM,  <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 ++++++++++++++++++++
>
> Commit message should say that its adding recipe for doxygen-native
> and not oxygen

Also why are we adding it, what packages needs doxygen ?

Sau!

>
>>   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] doxygen: add recipe
  2014-05-19  3:01   ` Saul Wold
@ 2014-05-19  3:10     ` Zongchun YU
  2014-05-19  3:12     ` Khem Raj
  1 sibling, 0 replies; 5+ messages in thread
From: Zongchun YU @ 2014-05-19  3:10 UTC (permalink / raw)
  To: 'Saul Wold', 'Khem Raj'
  Cc: 'Zongchun Yu',
	'Patches and discussions about the oe-core layer'

>Also why are we adding it, what packages needs doxygen ?

Please refer this site: http://www.stack.nl/~dimitri/doxygen/index.html




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

* Re: [PATCH 1/2] doxygen: add recipe
  2014-05-19  3:01   ` Saul Wold
  2014-05-19  3:10     ` Zongchun YU
@ 2014-05-19  3:12     ` Khem Raj
  1 sibling, 0 replies; 5+ messages in thread
From: Khem Raj @ 2014-05-19  3:12 UTC (permalink / raw)
  To: Saul Wold
  Cc: Zongchun YU, Zongchun Yu,
	Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 2258 bytes --]

On May 18, 2014 8:02 PM, "Saul Wold" <sgw@linux.intel.com> wrote:
>
> On 05/16/2014 01:40 AM, Khem Raj wrote:
>>
>> On Fri, May 16, 2014 at 12:45 AM,  <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
++++++++++++++++++++
>>
>>
>> Commit message should say that its adding recipe for doxygen-native
>> and not oxygen
>
>
> Also why are we adding it, what packages needs doxygen ?

well its useful tool to offer for generating documentation from code. lot
of packages use it but someone can choose to use it for their own
documentation as well
>
> Sau!
>
>
>>
>>>   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.bbb/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

[-- Attachment #2: Type: text/html, Size: 3858 bytes --]

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

end of thread, other threads:[~2014-05-19  3:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-16  7:45 [PATCH 1/2] doxygen: add recipe b40527
2014-05-16  8:40 ` Khem Raj
2014-05-19  3:01   ` Saul Wold
2014-05-19  3:10     ` Zongchun YU
2014-05-19  3:12     ` Khem Raj

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.