All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] Add FbTerm package for OMAP4 (targetting pandaboard) v2 Signed-off-by: JoM <johann.mercadier@imerir.com>
@ 2012-03-21 23:26 JoM
  2012-03-21 23:26 ` [Buildroot] [PATCH 2/2] fbterm pckg check for libexpat & libZ " JoM
  2012-03-22 10:53 ` [Buildroot] [PATCH 1/2] Add FbTerm package for OMAP4 (targetting pandaboard) v2 " Trevor Woerner
  0 siblings, 2 replies; 5+ messages in thread
From: JoM @ 2012-03-21 23:26 UTC (permalink / raw)
  To: buildroot

---
 package/Config.in        |    1 +
 package/fbterm/Config.in |   13 +++++++++++++
 package/fbterm/fbterm.mk |   17 +++++++++++++++++
 3 files changed, 31 insertions(+), 0 deletions(-)
 create mode 100644 package/fbterm/Config.in
 create mode 100644 package/fbterm/fbterm.mk

diff --git a/package/Config.in b/package/Config.in
index 85583c6..c2d02b7 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -109,6 +109,7 @@ if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
 source "package/fbset/Config.in"
 endif
 source "package/fbv/Config.in"
+source "package/fbterm/Config.in"
 source "package/imagemagick/Config.in"
 source "package/linux-fusion/Config.in"
 source "package/lite/Config.in"
diff --git a/package/fbterm/Config.in b/package/fbterm/Config.in
new file mode 100644
index 0000000..435c871
--- /dev/null
+++ b/package/fbterm/Config.in
@@ -0,0 +1,13 @@
+config BR2_PACKAGE_FBTERM
+	bool "fbterm"
+	  select BR2_PACKAGE_FREETYPE
+	  select BR2_PACKAGE_FONTCONFIG
+	  select BR2_PACKAGE_ZLIB
+	  select BR2_PACKAGE_EXPAT
+	help
+	  FbTerm (Frame buffer terminal emulator) is a fast terminal emulator and a
+	  help indentation should be one tab + two spaces, and no space at the end of the line.
+	  standalone replacement of GNU/Linux terminal that can function outside of
+	  Xorg with the frame buffer device or VESA video card.
+	  
+	  http://code.google.com/p/fbterm/
diff --git a/package/fbterm/fbterm.mk b/package/fbterm/fbterm.mk
new file mode 100644
index 0000000..0c462a4
--- /dev/null
+++ b/package/fbterm/fbterm.mk
@@ -0,0 +1,17 @@
+#############################################################
+#
+# fbterm
+#
+#############################################################
+FBTERM_BINARY = fbterm
+FBTERM_TARGET_BINARY = usr/bin/$(FBTERM_BINARY)
+FBTERM_VERSION = 1.7.0
+FBTERM_SITE = http://fbterm.googlecode.com/files
+FBTERM_DEPENDENCIES += freetype fontconfig
+
+define FBTERM_UNINSTALL_CMDS
+	rm -f $(TARGET_DIR)/$(FBTERM_TARGET_BINARY)
+endef
+
+
+$(eval $(call AUTOTARGETS))
-- 
1.7.2.5

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

* [Buildroot] [PATCH 2/2] fbterm pckg check for libexpat & libZ Signed-off-by: JoM <johann.mercadier@imerir.com>
  2012-03-21 23:26 [Buildroot] [PATCH 1/2] Add FbTerm package for OMAP4 (targetting pandaboard) v2 Signed-off-by: JoM <johann.mercadier@imerir.com> JoM
@ 2012-03-21 23:26 ` JoM
  2012-08-17 16:44   ` Thomas Petazzoni
  2012-03-22 10:53 ` [Buildroot] [PATCH 1/2] Add FbTerm package for OMAP4 (targetting pandaboard) v2 " Trevor Woerner
  1 sibling, 1 reply; 5+ messages in thread
From: JoM @ 2012-03-21 23:26 UTC (permalink / raw)
  To: buildroot

---
 package/fbterm/fbterm.mk |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/package/fbterm/fbterm.mk b/package/fbterm/fbterm.mk
index 0c462a4..44f63f1 100644
--- a/package/fbterm/fbterm.mk
+++ b/package/fbterm/fbterm.mk
@@ -9,6 +9,12 @@ FBTERM_VERSION = 1.7.0
 FBTERM_SITE = http://fbterm.googlecode.com/files
 FBTERM_DEPENDENCIES += freetype fontconfig
 
+ifeq ($(BR2_PACKAGE_ZLIB),y)
+	FBTERM_DEPENDENCIES += zlib
+endif
+
+FBTERM_DEPENDENCIES += $(if $(BR2_PACKAGE_EXPAT),expat)
+
 define FBTERM_UNINSTALL_CMDS
 	rm -f $(TARGET_DIR)/$(FBTERM_TARGET_BINARY)
 endef
-- 
1.7.2.5

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

* [Buildroot] [PATCH 1/2] Add FbTerm package for OMAP4 (targetting pandaboard) v2 Signed-off-by: JoM <johann.mercadier@imerir.com>
  2012-03-21 23:26 [Buildroot] [PATCH 1/2] Add FbTerm package for OMAP4 (targetting pandaboard) v2 Signed-off-by: JoM <johann.mercadier@imerir.com> JoM
  2012-03-21 23:26 ` [Buildroot] [PATCH 2/2] fbterm pckg check for libexpat & libZ " JoM
@ 2012-03-22 10:53 ` Trevor Woerner
  2012-03-22 13:23   ` MERCADIER Johann
  1 sibling, 1 reply; 5+ messages in thread
From: Trevor Woerner @ 2012-03-22 10:53 UTC (permalink / raw)
  To: buildroot

On Wed, Mar 21, 2012 at 7:26 PM, JoM <johann.mercadier@imerir.com> wrote:
> + ? ? ? help
> + ? ? ? ? FbTerm (Frame buffer terminal emulator) is a fast terminal emulator and a
> + ? ? ? ? help indentation should be one tab + two spaces, and no space at the end of the line.
> + ? ? ? ? standalone replacement of GNU/Linux terminal that can function outside of
> + ? ? ? ? Xorg with the frame buffer device or VESA video card.

Is it just me or does that 2nd line seem out of place?

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

* [Buildroot] [PATCH 1/2] Add FbTerm package for OMAP4 (targetting pandaboard) v2 Signed-off-by: JoM <johann.mercadier@imerir.com>
  2012-03-22 10:53 ` [Buildroot] [PATCH 1/2] Add FbTerm package for OMAP4 (targetting pandaboard) v2 " Trevor Woerner
@ 2012-03-22 13:23   ` MERCADIER Johann
  0 siblings, 0 replies; 5+ messages in thread
From: MERCADIER Johann @ 2012-03-22 13:23 UTC (permalink / raw)
  To: buildroot

Didn't pay attention will correct this! Thanks Trevor.

On 22 March 2012 10:53, Trevor Woerner <twoerner@gmail.com> wrote:

> On Wed, Mar 21, 2012 at 7:26 PM, JoM <johann.mercadier@imerir.com> wrote:
> > +       help
> > +         FbTerm (Frame buffer terminal emulator) is a fast terminal
> emulator and a
> > +         help indentation should be one tab + two spaces, and no space
> at the end of the line.
> > +         standalone replacement of GNU/Linux terminal that can function
> outside of
> > +         Xorg with the frame buffer device or VESA video card.
>
> Is it just me or does that 2nd line seem out of place?
>



-- 
Cordialement.

___Johann MERCADIER___

:(){ :|:& };:
"I am the Unknown lead by the Unknowing.
I have done so much with so little for so long
that I am now qualified to do anything with nothing."
HOOSEEK (http://www.hooseek.com/) 1?moteur de recherche solidaire!
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20120322/16f20685/attachment.html>

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

* [Buildroot] [PATCH 2/2] fbterm pckg check for libexpat & libZ Signed-off-by: JoM <johann.mercadier@imerir.com>
  2012-03-21 23:26 ` [Buildroot] [PATCH 2/2] fbterm pckg check for libexpat & libZ " JoM
@ 2012-08-17 16:44   ` Thomas Petazzoni
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2012-08-17 16:44 UTC (permalink / raw)
  To: buildroot

Le Wed, 21 Mar 2012 23:26:56 +0000,
JoM <johann.mercadier@imerir.com> a ?crit :

> +ifeq ($(BR2_PACKAGE_ZLIB),y)
> +	FBTERM_DEPENDENCIES += zlib
> +endif
> +
> +FBTERM_DEPENDENCIES += $(if $(BR2_PACKAGE_EXPAT),expat)
> +

I don't understand why it is needed: I don't see any expat or zlib
related code in fbterm. Can you detail?

Thanks,

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

end of thread, other threads:[~2012-08-17 16:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-21 23:26 [Buildroot] [PATCH 1/2] Add FbTerm package for OMAP4 (targetting pandaboard) v2 Signed-off-by: JoM <johann.mercadier@imerir.com> JoM
2012-03-21 23:26 ` [Buildroot] [PATCH 2/2] fbterm pckg check for libexpat & libZ " JoM
2012-08-17 16:44   ` Thomas Petazzoni
2012-03-22 10:53 ` [Buildroot] [PATCH 1/2] Add FbTerm package for OMAP4 (targetting pandaboard) v2 " Trevor Woerner
2012-03-22 13:23   ` MERCADIER Johann

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.