All of lore.kernel.org
 help / color / mirror / Atom feed
* bb file of madbutterfly
@ 2009-04-12 12:24 Tick
  2009-04-12 15:19 ` Tick
  0 siblings, 1 reply; 5+ messages in thread
From: Tick @ 2009-04-12 12:24 UTC (permalink / raw)
  To: openembedded-devel

Hi Koen,
  I had created a bb file for madbutterfly,
http://www.assembla.com/wiki/show/MadButterfly.
It's a library controlling SVG objects. You can use this library to
create applications that breaks the widget boundary.
  Would you like to take a review of this patch. If you think it's
okay I want to commit this into recipes.

Thanks
Tick



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

* Re: bb file of madbutterfly
  2009-04-12 12:24 bb file of madbutterfly Tick
@ 2009-04-12 15:19 ` Tick
  2009-04-12 18:54   ` Koen Kooi
  0 siblings, 1 reply; 5+ messages in thread
From: Tick @ 2009-04-12 15:19 UTC (permalink / raw)
  To: openembedded-devel

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

Ouch... Sorry forgot the attach patch


On Sun, Apr 12, 2009 at 8:24 PM, Tick <ticktock35@gmail.com> wrote:
> Hi Koen,
>  I had created a bb file for madbutterfly,
> http://www.assembla.com/wiki/show/MadButterfly.
> It's a library controlling SVG objects. You can use this library to
> create applications that breaks the widget boundary.
>  Would you like to take a review of this patch. If you think it's
> okay I want to commit this into recipes.
>
> Thanks
> Tick
>

[-- Attachment #2: adding_madbutterfly_bbfile.patch --]
[-- Type: text/x-diff, Size: 3915 bytes --]

commit 4d9d5a53a4d332f4f8de3ff80c58161f6d519247
Author: Tick Chen <ticktock35@gmail.com>
Date:   Wed Apr 8 02:34:39 2009 +0800

    madbutterfly: adding new bb file for madbutterfly

diff --git a/conf/distro/include/sane-srcrevs.inc b/conf/distro/include/sane-srcrevs.inc
index a71b835..ee829d4 100644
--- a/conf/distro/include/sane-srcrevs.inc
+++ b/conf/distro/include/sane-srcrevs.inc
@@ -110,6 +110,7 @@ SRCREV_pn-linux-openmoko-devel ?= "b9aa5bf345a0b802af0d10b6cf1079738fe4fd12"
 SRCREV_pn-linux-eten ?= "ab2d414f4f13816af0ec0401b608133ca946624a"
 SRCREV_pn-llvm-gcc4 ?= "374"
 SRCREV_pn-llvm-gcc4-cross ?= "374"
+SRCREV_pn-madbutterfly ?= "ecd1842714b5e982f3138cbdd358517d57be6aa3"
 SRCREV_pn-maemo-mapper ?= "118"
 SRCREV_pn-mamonaim_e_applet ?= "51c747849f71981bd1dc9eb1807df4993ad97d04"
 SRCREV_pn-mamona_input_methods ?= "7e6a8cc947689a045d0fba90015da599275347d9"
diff --git a/recipes/madbufferfly/madbutterfly/001_makefile.am_bugs.patch b/recipes/madbufferfly/madbutterfly/001_makefile.am_bugs.patch
new file mode 100644
index 0000000..35a9e50
--- /dev/null
+++ b/recipes/madbufferfly/madbutterfly/001_makefile.am_bugs.patch
@@ -0,0 +1,66 @@
+Index: git/src/Makefile.am
+===================================================================
+--- git.orig/src/Makefile.am	2009-04-08 02:24:01.000000000 +0800
++++ git/src/Makefile.am	2009-04-08 02:28:53.000000000 +0800
+@@ -2,18 +2,49 @@
+ 
+ lib_LTLIBRARIES = libmbfly.la
+ 
+-noinst_PROGRAMS = X_main
+ MBAF_SOURCES=mbaf/mbapp.c mbaf/mbbutton.c mbaf/mbobject.c mbaf/animated_menu.c
+-libmbfly_la_SOURCES = animate.c chgcolor.c coord.c event.c geo.c	\
+-	observer.c paint.c redraw_man.c rotate.c shape_path.c		\
+-	shape_rect.c shape_text.c shift.c subtree_free.c timer.c 	\
+-	timertool.c tools.c visibility.c X_supp.c prop.c sprite.c	\
+-	mouse.c shape_image.c img_ldr.c $(MBAF_SOURCES)
++libmbfly_la_SOURCES =	animate.c \
++		      	chgcolor.c \
++			coord.c  \
++			event.c \
++			geo.c	\
++			observer.c \
++			paint.c \
++			redraw_man.c \
++			rotate.c \
++			shape_path.c \
++			shape_rect.c \
++			shape_text.c \
++			shift.c \
++			subtree_free.c \
++			timer.c \
++			timertool.c \
++			tools.c \
++			visibility.c \
++			X_supp.c \
++			prop.c \
++			sprite.c \
++			mouse.c \
++			shape_image.c \
++			img_ldr.c \
++			$(MBAF_SOURCES)
++
++libmbfly_la_CFLAGS = @cairo_CFLAGS@ \
++		     @pangocairo_CFLAGS@
++libmbfly_la_LDFLAGS = @cairo_LIBS@ \
++		      @pangocairo_LIBS@
+ 
+-libmbfly_la_CPPFLAGS = @cairo_CFLAGS@ @pangocairo_CFLAGS@
+-libmbfly_la_LDFLAGS = @cairo_LIBS@ @pangocairo_LIBS@
++bin_PROGRAMS = X_main
++noinst_PROGRAMS = X_main
+ 
+ X_main_SOURCES = X_main.c
+-X_main_LDADD = $(top_builddir)/src/libmbfly.la
+-X_main_CPPFLAGS = @pangocairo_CFLAGS@ -I$(top_builddir)/src
+-X_main_LDFLAGS = @pangocairo_LIBS@
++X_main_LDADD = ${top_builddir}/src/libmbfly.la
++X_main_CFLAGS = @pangocairo_CFLAGS@ \
++                 @cairo_CFLAGS@ \
++                 -I${top_builddir}/include
++X_main_LDFLAGS = @pangocairo_LIBS@ \
++                @cairo_LIBS@
++
++X_main: libmbfly.la
++	$(LIBTOOL) --tag=CC   --mode=link $(CC) $(X_main_CFLAGS) $(X_main_LIBADD) X_main.c -o $@ $<
++
+
diff --git a/recipes/madbufferfly/madbutterfly_git.bb b/recipes/madbufferfly/madbutterfly_git.bb
new file mode 100644
index 0000000..9fa5626
--- /dev/null
+++ b/recipes/madbufferfly/madbutterfly_git.bb
@@ -0,0 +1,17 @@
+DESCRIPTION = "MadButterfly is a SVG browser. It can be used to be GUI environment of embedded system or desktop."
+SECTION = "libs"
+PRIORITY = "optional"
+LICENSE = "BSD"
+DEPENDS = "cairo pango"
+PE = "0"
+PR = "r0.3"
+
+SRC_URI = "git://git.gitorious.org/madbutterfly/mainline.git;protocol=git \
+           file://001_makefile.am_bugs.patch;patch=1"
+
+S = "${WORKDIR}/git"
+
+inherit autotools_stage
+
+FILES_${PN} += "${libdir}/*.so  ${datadir}/* /bin/*"
+FILES_${PN}-dev += "${libdir}/*a ${libdir}/pkgconfig/* ${includedir}/*"

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

* Re: bb file of madbutterfly
  2009-04-12 15:19 ` Tick
@ 2009-04-12 18:54   ` Koen Kooi
  2009-04-13  3:50     ` Tick
  0 siblings, 1 reply; 5+ messages in thread
From: Koen Kooi @ 2009-04-12 18:54 UTC (permalink / raw)
  To: openembedded-devel

On 12-04-09 17:19, Tick wrote:
> +++ b/recipes/madbufferfly/madbutterfly_git.bb

> +PE = "0"
> +PR = "r0.3"

Remove those and add PV.

regards,

Koen




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

* Re: bb file of madbutterfly
  2009-04-12 18:54   ` Koen Kooi
@ 2009-04-13  3:50     ` Tick
  2009-04-14  9:56       ` Tick
  0 siblings, 1 reply; 5+ messages in thread
From: Tick @ 2009-04-13  3:50 UTC (permalink / raw)
  To: openembedded-devel

Hi Koen,
  Thanks a lot.
Cheers,
Tick

On Mon, Apr 13, 2009 at 2:54 AM, Koen Kooi <k.kooi@student.utwente.nl> wrote:
> On 12-04-09 17:19, Tick wrote:
>>
>> +++ b/recipes/madbufferfly/madbutterfly_git.bb
>
>> +PE = "0"
>> +PR = "r0.3"
>
> Remove those and add PV.
>
> regards,
>
> Koen
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>



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

* Re: bb file of madbutterfly
  2009-04-13  3:50     ` Tick
@ 2009-04-14  9:56       ` Tick
  0 siblings, 0 replies; 5+ messages in thread
From: Tick @ 2009-04-14  9:56 UTC (permalink / raw)
  To: openembedded-devel

Hi,
  I had push the madbutterfly bb file.

Cheers,
Tick

On Mon, Apr 13, 2009 at 11:50 AM, Tick <ticktock35@gmail.com> wrote:
> Hi Koen,
>  Thanks a lot.
> Cheers,
> Tick
>
> On Mon, Apr 13, 2009 at 2:54 AM, Koen Kooi <k.kooi@student.utwente.nl> wrote:
>> On 12-04-09 17:19, Tick wrote:
>>>
>>> +++ b/recipes/madbufferfly/madbutterfly_git.bb
>>
>>> +PE = "0"
>>> +PR = "r0.3"
>>
>> Remove those and add PV.
>>
>> regards,
>>
>> Koen
>>
>>
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>>
>



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

end of thread, other threads:[~2009-04-14 10:00 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-12 12:24 bb file of madbutterfly Tick
2009-04-12 15:19 ` Tick
2009-04-12 18:54   ` Koen Kooi
2009-04-13  3:50     ` Tick
2009-04-14  9:56       ` Tick

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.