* [Buildroot] [PATCH 1/3] package: fix fonts & co alpha sort
@ 2015-04-11 10:51 Gustavo Zacarias
2015-04-11 10:51 ` [Buildroot] [PATCH 2/3] bitstream-vera: new package Gustavo Zacarias
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-04-11 10:51 UTC (permalink / raw)
To: buildroot
Fonts & co go before Games.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/Config.in | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/package/Config.in b/package/Config.in
index 9486ec2..f791f5b 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -176,18 +176,6 @@ menu "Filesystem and flash utilities"
source "package/xfsprogs/Config.in"
endmenu
-menu "Games"
- source "package/doom-wad/Config.in"
- source "package/gnuchess/Config.in"
- source "package/lbreakout2/Config.in"
- source "package/ltris/Config.in"
- source "package/opentyrian/Config.in"
- source "package/opentyrian-data/Config.in"
- source "package/prboom/Config.in"
- source "package/rubix/Config.in"
- source "package/sl/Config.in"
-endmenu
-
menu "Fonts, icons, sounds and themes"
comment "Fonts"
@@ -208,6 +196,18 @@ comment "Themes"
endmenu
+menu "Games"
+ source "package/doom-wad/Config.in"
+ source "package/gnuchess/Config.in"
+ source "package/lbreakout2/Config.in"
+ source "package/ltris/Config.in"
+ source "package/opentyrian/Config.in"
+ source "package/opentyrian-data/Config.in"
+ source "package/prboom/Config.in"
+ source "package/rubix/Config.in"
+ source "package/sl/Config.in"
+endmenu
+
menu "Graphic libraries and applications (graphic/text)"
comment "Graphic applications"
--
2.0.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 2/3] bitstream-vera: new package
2015-04-11 10:51 [Buildroot] [PATCH 1/3] package: fix fonts & co alpha sort Gustavo Zacarias
@ 2015-04-11 10:51 ` Gustavo Zacarias
2015-04-11 10:51 ` [Buildroot] [PATCH 3/3] inconsolata: " Gustavo Zacarias
2015-04-11 13:26 ` [Buildroot] [PATCH 1/3] package: fix fonts & co alpha sort Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-04-11 10:51 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/Config.in | 1 +
package/bitstream-vera/Config.in | 6 ++++++
package/bitstream-vera/bitstream-vera.hash | 2 ++
package/bitstream-vera/bitstream-vera.mk | 19 +++++++++++++++++++
4 files changed, 28 insertions(+)
create mode 100644 package/bitstream-vera/Config.in
create mode 100644 package/bitstream-vera/bitstream-vera.hash
create mode 100644 package/bitstream-vera/bitstream-vera.mk
diff --git a/package/Config.in b/package/Config.in
index f791f5b..5147ceb 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -179,6 +179,7 @@ endmenu
menu "Fonts, icons, sounds and themes"
comment "Fonts"
+ source "package/bitstream-vera/Config.in"
source "package/dejavu/Config.in"
source "package/ghostscript-fonts/Config.in"
source "package/liberation/Config.in"
diff --git a/package/bitstream-vera/Config.in b/package/bitstream-vera/Config.in
new file mode 100644
index 0000000..034f115
--- /dev/null
+++ b/package/bitstream-vera/Config.in
@@ -0,0 +1,6 @@
+config BR2_PACKAGE_BITSTREAM_VERA
+ bool "Bitstream Vera"
+ help
+ Bitstream Vera font family.
+
+ https://www.gnome.org/fonts/
diff --git a/package/bitstream-vera/bitstream-vera.hash b/package/bitstream-vera/bitstream-vera.hash
new file mode 100644
index 0000000..e18b38b
--- /dev/null
+++ b/package/bitstream-vera/bitstream-vera.hash
@@ -0,0 +1,2 @@
+# From http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/1.10/ttf-bitstream-vera-1.10.tar.bz2.sha256sum
+sha256 db5b27df7bbb318036ebdb75acd3e98f1bd6eb6608fb70a67d478cd243d178dc ttf-bitstream-vera-1.10.tar.bz2
diff --git a/package/bitstream-vera/bitstream-vera.mk b/package/bitstream-vera/bitstream-vera.mk
new file mode 100644
index 0000000..f487d63
--- /dev/null
+++ b/package/bitstream-vera/bitstream-vera.mk
@@ -0,0 +1,19 @@
+################################################################################
+#
+# bitstream-vera
+#
+################################################################################
+
+BITSTREAM_VERA_VERSION = 1.10
+BITSTREAM_VERA_SITE = http://ftp.gnome.org/pub/GNOME/sources/ttf-bitstream-vera/$(BITSTREAM_VERA_VERSION)
+BITSTREAM_VERA_SOURCE = ttf-bitstream-vera-$(BITSTREAM_VERA_VERSION).tar.bz2
+BITSTREAM_VERA_TARGET_DIR = $(TARGET_DIR)/usr/share/fonts/ttf-bitstream-vera
+BITSTREAM_VERA_LICENSE = BitstreamVera
+BITSTREAM_VERA_LICENSE_FILES = COPYRIGHT.TXT
+
+define BITSTREAM_VERA_INSTALL_TARGET_CMDS
+ mkdir -p $(BITSTREAM_VERA_TARGET_DIR)
+ $(INSTALL) -m 644 $(@D)/*.ttf $(BITSTREAM_VERA_TARGET_DIR)
+endef
+
+$(eval $(generic-package))
--
2.0.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 3/3] inconsolata: new package
2015-04-11 10:51 [Buildroot] [PATCH 1/3] package: fix fonts & co alpha sort Gustavo Zacarias
2015-04-11 10:51 ` [Buildroot] [PATCH 2/3] bitstream-vera: new package Gustavo Zacarias
@ 2015-04-11 10:51 ` Gustavo Zacarias
2015-04-11 13:26 ` [Buildroot] [PATCH 1/3] package: fix fonts & co alpha sort Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Gustavo Zacarias @ 2015-04-11 10:51 UTC (permalink / raw)
To: buildroot
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
---
package/Config.in | 1 +
package/inconsolata/Config.in | 7 +++++++
package/inconsolata/inconsolata.hash | 2 ++
package/inconsolata/inconsolata.mk | 19 +++++++++++++++++++
4 files changed, 29 insertions(+)
create mode 100644 package/inconsolata/Config.in
create mode 100644 package/inconsolata/inconsolata.hash
create mode 100644 package/inconsolata/inconsolata.mk
diff --git a/package/Config.in b/package/Config.in
index 5147ceb..4be75dd 100644
--- a/package/Config.in
+++ b/package/Config.in
@@ -182,6 +182,7 @@ comment "Fonts"
source "package/bitstream-vera/Config.in"
source "package/dejavu/Config.in"
source "package/ghostscript-fonts/Config.in"
+ source "package/inconsolata/Config.in"
source "package/liberation/Config.in"
comment "Icons"
diff --git a/package/inconsolata/Config.in b/package/inconsolata/Config.in
new file mode 100644
index 0000000..de6b388
--- /dev/null
+++ b/package/inconsolata/Config.in
@@ -0,0 +1,7 @@
+config BR2_PACKAGE_INCONSOLATA
+ bool "inconsolata"
+ help
+ Inconsolata is a monospace font, designed for code listings
+ and the like.
+
+ http://www.google.com/fonts/specimen/Inconsolata
diff --git a/package/inconsolata/inconsolata.hash b/package/inconsolata/inconsolata.hash
new file mode 100644
index 0000000..49ea958
--- /dev/null
+++ b/package/inconsolata/inconsolata.hash
@@ -0,0 +1,2 @@
+# From http://snapshot.debian.org/archive/debian/20091207T044352Z/pool/main/t/ttf-inconsolata/ttf-inconsolata_001.010-2.dsc
+sha256 ecf8ba44911fcb3c9683aef1ca2b3cfbafa119a3e93c682f448850e1ae08ce93 ttf-inconsolata_001.010.orig.tar.gz
diff --git a/package/inconsolata/inconsolata.mk b/package/inconsolata/inconsolata.mk
new file mode 100644
index 0000000..2f53b98
--- /dev/null
+++ b/package/inconsolata/inconsolata.mk
@@ -0,0 +1,19 @@
+################################################################################
+#
+# inconsolata
+#
+################################################################################
+
+INCONSOLATA_VERSION = 001.010
+INCONSOLATA_SITE = http://snapshot.debian.org/archive/debian/20090524T155154Z/pool/main/t/ttf-inconsolata
+INCONSOLATA_SOURCE = ttf-inconsolata_$(INCONSOLATA_VERSION).orig.tar.gz
+INCONSOLATA_TARGET_DIR = $(TARGET_DIR)/usr/share/fonts/inconsolata
+INCONSOLATA_LICENSE = OFLv1.0
+INCONSOLATA_LICENSE_FILES = OFL.txt
+
+define INCONSOLATA_INSTALL_TARGET_CMDS
+ mkdir -p $(INCONSOLATA_TARGET_DIR)
+ $(INSTALL) -m 644 $(@D)/*.otf $(INCONSOLATA_TARGET_DIR)
+endef
+
+$(eval $(generic-package))
--
2.0.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Buildroot] [PATCH 1/3] package: fix fonts & co alpha sort
2015-04-11 10:51 [Buildroot] [PATCH 1/3] package: fix fonts & co alpha sort Gustavo Zacarias
2015-04-11 10:51 ` [Buildroot] [PATCH 2/3] bitstream-vera: new package Gustavo Zacarias
2015-04-11 10:51 ` [Buildroot] [PATCH 3/3] inconsolata: " Gustavo Zacarias
@ 2015-04-11 13:26 ` Thomas Petazzoni
2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2015-04-11 13:26 UTC (permalink / raw)
To: buildroot
Dear Gustavo Zacarias,
On Sat, 11 Apr 2015 07:51:13 -0300, Gustavo Zacarias wrote:
> Fonts & co go before Games.
>
> Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
> ---
> package/Config.in | 24 ++++++++++++------------
> 1 file changed, 12 insertions(+), 12 deletions(-)
All three patches applied, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-04-11 13:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-11 10:51 [Buildroot] [PATCH 1/3] package: fix fonts & co alpha sort Gustavo Zacarias
2015-04-11 10:51 ` [Buildroot] [PATCH 2/3] bitstream-vera: new package Gustavo Zacarias
2015-04-11 10:51 ` [Buildroot] [PATCH 3/3] inconsolata: " Gustavo Zacarias
2015-04-11 13:26 ` [Buildroot] [PATCH 1/3] package: fix fonts & co alpha sort Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox