* [meta-oe][PATCH 0/7] Add core 100 DPI X.org fonts
@ 2014-05-12 17:31 Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 1/7] bdftopcf: add recipe Ben Shelton
` (6 more replies)
0 siblings, 7 replies; 14+ messages in thread
From: Ben Shelton @ 2014-05-12 17:31 UTC (permalink / raw)
To: openembedded-devel
Adding back a fixed-up version of the bdftopcf tool, and adding recipes for the
core X.org 100 DPI fonts, along with a packagegroup recipe to build them all.
The following changes since commit 55b09e522ca88c0c0b2dd7a36e4861a1cf6ca9c6:
klcc_cross: move in target sysroot as crossscript (2014-05-04 11:41:12 +0100)
are available in the git repository at:
git://github.com/ni/meta-oe dev/bshelton/fonts
https://github.com/ni/meta-oe/tree/dev/bshelton/fonts
Ben Shelton (7):
bdftopcf: add recipe
font-adobe-100dpi: add recipe
font-adobe-utopia: add recipe
font-bh-100dpi: add recipe
font-bh-lucidatypewriter: add recipe
font-bitstream-100dpi: add recipe
xorg-fonts-100dpi: add recipe
meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb | 13 +++++++++++++
.../recipes-graphics/xorg-font/font-adobe-100dpi_1.0.3.bb | 14 ++++++++++++++
.../xorg-font/font-adobe-utopia-100dpi_1.0.4.bb | 15 +++++++++++++++
.../recipes-graphics/xorg-font/font-bh-100dpi_1.0.3.bb | 14 ++++++++++++++
.../xorg-font/font-bh-lucidatypewriter-100dpi_1.0.3.bb | 14 ++++++++++++++
.../xorg-font/font-bitstream-100dpi_1.0.3.bb | 14 ++++++++++++++
meta-oe/recipes-graphics/xorg-font/xorg-fonts-100dpi.bb | 14 ++++++++++++++
7 files changed, 98 insertions(+)
create mode 100644 meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
create mode 100644 meta-oe/recipes-graphics/xorg-font/font-adobe-100dpi_1.0.3.bb
create mode 100644 meta-oe/recipes-graphics/xorg-font/font-adobe-utopia-100dpi_1.0.4.bb
create mode 100644 meta-oe/recipes-graphics/xorg-font/font-bh-100dpi_1.0.3.bb
create mode 100644 meta-oe/recipes-graphics/xorg-font/font-bh-lucidatypewriter-100dpi_1.0.3.bb
create mode 100644 meta-oe/recipes-graphics/xorg-font/font-bitstream-100dpi_1.0.3.bb
create mode 100644 meta-oe/recipes-graphics/xorg-font/xorg-fonts-100dpi.bb
--
1.9.3
^ permalink raw reply [flat|nested] 14+ messages in thread
* [meta-oe][PATCH 1/7] bdftopcf: add recipe
2014-05-12 17:31 [meta-oe][PATCH 0/7] Add core 100 DPI X.org fonts Ben Shelton
@ 2014-05-12 17:31 ` Ben Shelton
2014-05-13 8:08 ` Matthieu CRAPET
2014-05-12 17:31 ` [meta-oe][PATCH 2/7] font-adobe-100dpi: " Ben Shelton
` (5 subsequent siblings)
6 siblings, 1 reply; 14+ messages in thread
From: Ben Shelton @ 2014-05-12 17:31 UTC (permalink / raw)
To: openembedded-devel
The bdftopcf tool is necessary to build the core X fonts, which ship in
BDF format. Adapted from a recipe in OE-Classic and from an earlier
mailing list post by Trevor Woerner.
Signed-off-by: Ben Shelton <ben.shelton@ni.com>
---
meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
diff --git a/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
new file mode 100644
index 0000000..5009d54
--- /dev/null
+++ b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
@@ -0,0 +1,13 @@
+require recipes-graphics/xorg-app/xorg-app-common.inc
+
+SUMMARY = "bdftopcf is a tool to convert BDF fonts to PCF fonts"
+HOMEPAGE = "http://cgit.freedesktop.org/xorg/app/bdftopcf/"
+SECTION = "x11/app"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=f9a35333adf75edd1eaef84bca65a490"
+DEPENDS = "libxfont"
+
+SRC_URI[md5sum] = "96a648a332160a7482885800f7a506fa"
+SRC_URI[sha256sum] = "eaf59057ba3d7cffe29526562ce50868da7da823487a4cfb3e16946e5ffd2798"
+
+BBCLASSEXTEND = "native"
--
1.9.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [meta-oe][PATCH 2/7] font-adobe-100dpi: add recipe
2014-05-12 17:31 [meta-oe][PATCH 0/7] Add core 100 DPI X.org fonts Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 1/7] bdftopcf: add recipe Ben Shelton
@ 2014-05-12 17:31 ` Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 3/7] font-adobe-utopia: " Ben Shelton
` (4 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Ben Shelton @ 2014-05-12 17:31 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Ben Shelton <ben.shelton@ni.com>
---
.../recipes-graphics/xorg-font/font-adobe-100dpi_1.0.3.bb | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 meta-oe/recipes-graphics/xorg-font/font-adobe-100dpi_1.0.3.bb
diff --git a/meta-oe/recipes-graphics/xorg-font/font-adobe-100dpi_1.0.3.bb b/meta-oe/recipes-graphics/xorg-font/font-adobe-100dpi_1.0.3.bb
new file mode 100644
index 0000000..04d3efa
--- /dev/null
+++ b/meta-oe/recipes-graphics/xorg-font/font-adobe-100dpi_1.0.3.bb
@@ -0,0 +1,14 @@
+require recipes-graphics/xorg-font/xorg-font-common.inc
+
+SUMMARY = "Adobe 100 DPI fonts"
+HOMEPAGE = "http://cgit.freedesktop.org/xorg/font/adobe-100dpi/"
+SECTION = "x11/font"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=5dfa0fdf45473b4ca0acf37d854df10e"
+
+DEPENDS = "util-macros-native font-util-native bdftopcf-native"
+RDEPENDS_${PN} = "encodings font-util"
+RDEPENDS_${PN}_class-native = "font-util-native"
+
+SRC_URI[md5sum] = "1347c3031b74c9e91dc4dfa53b12f143"
+SRC_URI[sha256sum] = "b2c08433eab5cb202470aa9f779efefce8d9cab2534f34f3aa4a31d05671c054"
--
1.9.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [meta-oe][PATCH 3/7] font-adobe-utopia: add recipe
2014-05-12 17:31 [meta-oe][PATCH 0/7] Add core 100 DPI X.org fonts Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 1/7] bdftopcf: add recipe Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 2/7] font-adobe-100dpi: " Ben Shelton
@ 2014-05-12 17:31 ` Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 4/7] font-bh-100dpi: " Ben Shelton
` (3 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Ben Shelton @ 2014-05-12 17:31 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Ben Shelton <ben.shelton@ni.com>
---
.../xorg-font/font-adobe-utopia-100dpi_1.0.4.bb | 15 +++++++++++++++
1 file changed, 15 insertions(+)
create mode 100644 meta-oe/recipes-graphics/xorg-font/font-adobe-utopia-100dpi_1.0.4.bb
diff --git a/meta-oe/recipes-graphics/xorg-font/font-adobe-utopia-100dpi_1.0.4.bb b/meta-oe/recipes-graphics/xorg-font/font-adobe-utopia-100dpi_1.0.4.bb
new file mode 100644
index 0000000..f3d2815
--- /dev/null
+++ b/meta-oe/recipes-graphics/xorg-font/font-adobe-utopia-100dpi_1.0.4.bb
@@ -0,0 +1,15 @@
+require recipes-graphics/xorg-font/xorg-font-common.inc
+
+SUMMARY = "Adobe Utopia 100 DPI fonts"
+HOMEPAGE = "http://cgit.freedesktop.org/xorg/font/adobe-utopia-100dpi/"
+SECTION = "x11/font"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=fa13e704b7241f60ef9105cc041b9732"
+
+DEPENDS = "util-macros-native font-util-native bdftopcf-native"
+RDEPENDS_${PN} = "encodings font-util"
+RDEPENDS_${PN}_class-native = "font-util-native"
+
+SRC_URI[md5sum] = "66fb6de561648a6dce2755621d6aea17"
+SRC_URI[sha256sum] = "d16f5e3f227cc6dd07a160a71f443559682dbc35f1c056a5385085aaec4fada5"
+
--
1.9.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [meta-oe][PATCH 4/7] font-bh-100dpi: add recipe
2014-05-12 17:31 [meta-oe][PATCH 0/7] Add core 100 DPI X.org fonts Ben Shelton
` (2 preceding siblings ...)
2014-05-12 17:31 ` [meta-oe][PATCH 3/7] font-adobe-utopia: " Ben Shelton
@ 2014-05-12 17:31 ` Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 5/7] font-bh-lucidatypewriter: " Ben Shelton
` (2 subsequent siblings)
6 siblings, 0 replies; 14+ messages in thread
From: Ben Shelton @ 2014-05-12 17:31 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Ben Shelton <ben.shelton@ni.com>
---
meta-oe/recipes-graphics/xorg-font/font-bh-100dpi_1.0.3.bb | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 meta-oe/recipes-graphics/xorg-font/font-bh-100dpi_1.0.3.bb
diff --git a/meta-oe/recipes-graphics/xorg-font/font-bh-100dpi_1.0.3.bb b/meta-oe/recipes-graphics/xorg-font/font-bh-100dpi_1.0.3.bb
new file mode 100644
index 0000000..3ee91ce
--- /dev/null
+++ b/meta-oe/recipes-graphics/xorg-font/font-bh-100dpi_1.0.3.bb
@@ -0,0 +1,14 @@
+require recipes-graphics/xorg-font/xorg-font-common.inc
+
+SUMMARY = "Bigelow & Holmes 100 DPI fonts"
+HOMEPAGE = "http://cgit.freedesktop.org/xorg/font/bh-100dpi/"
+SECTION = "x11/font"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=cffd5e9c4b61b3d74166ca74b99e460e"
+
+DEPENDS = "util-macros-native font-util-native bdftopcf-native"
+RDEPENDS_${PN} = "encodings font-util"
+RDEPENDS_${PN}_class-native = "font-util-native"
+
+SRC_URI[md5sum] = "9f11ade089d689b9d59e0f47d26f39cd"
+SRC_URI[sha256sum] = "23c07162708e4b79eb33095c8bfa62c783717a9431254bbf44863734ea239481"
--
1.9.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [meta-oe][PATCH 5/7] font-bh-lucidatypewriter: add recipe
2014-05-12 17:31 [meta-oe][PATCH 0/7] Add core 100 DPI X.org fonts Ben Shelton
` (3 preceding siblings ...)
2014-05-12 17:31 ` [meta-oe][PATCH 4/7] font-bh-100dpi: " Ben Shelton
@ 2014-05-12 17:31 ` Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 6/7] font-bitstream-100dpi: " Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 7/7] xorg-fonts-100dpi: " Ben Shelton
6 siblings, 0 replies; 14+ messages in thread
From: Ben Shelton @ 2014-05-12 17:31 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Ben Shelton <ben.shelton@ni.com>
---
.../xorg-font/font-bh-lucidatypewriter-100dpi_1.0.3.bb | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 meta-oe/recipes-graphics/xorg-font/font-bh-lucidatypewriter-100dpi_1.0.3.bb
diff --git a/meta-oe/recipes-graphics/xorg-font/font-bh-lucidatypewriter-100dpi_1.0.3.bb b/meta-oe/recipes-graphics/xorg-font/font-bh-lucidatypewriter-100dpi_1.0.3.bb
new file mode 100644
index 0000000..c83137b
--- /dev/null
+++ b/meta-oe/recipes-graphics/xorg-font/font-bh-lucidatypewriter-100dpi_1.0.3.bb
@@ -0,0 +1,14 @@
+require recipes-graphics/xorg-font/xorg-font-common.inc
+
+SUMMARY = "Bigelow & Holmes Lucida Typewriter 100 DPI fonts"
+HOMEPAGE = "http://cgit.freedesktop.org/xorg/font/bh-lucidatypewriter-100dpi/"
+SECTION = "x11/font"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=0d221a9cd144806cb469735cc4775939"
+
+DEPENDS = "util-macros-native font-util-native bdftopcf-native"
+RDEPENDS_${PN} = "encodings font-util"
+RDEPENDS_${PN}_class-native = "font-util-native"
+
+SRC_URI[md5sum] = "c8b73a53dcefe3e8d3907d3500e484a9"
+SRC_URI[sha256sum] = "62a83363c2536095fda49d260d21e0847675676e4e3415054064cbdffa641fbb"
--
1.9.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [meta-oe][PATCH 6/7] font-bitstream-100dpi: add recipe
2014-05-12 17:31 [meta-oe][PATCH 0/7] Add core 100 DPI X.org fonts Ben Shelton
` (4 preceding siblings ...)
2014-05-12 17:31 ` [meta-oe][PATCH 5/7] font-bh-lucidatypewriter: " Ben Shelton
@ 2014-05-12 17:31 ` Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 7/7] xorg-fonts-100dpi: " Ben Shelton
6 siblings, 0 replies; 14+ messages in thread
From: Ben Shelton @ 2014-05-12 17:31 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Ben Shelton <ben.shelton@ni.com>
---
.../xorg-font/font-bitstream-100dpi_1.0.3.bb | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 meta-oe/recipes-graphics/xorg-font/font-bitstream-100dpi_1.0.3.bb
diff --git a/meta-oe/recipes-graphics/xorg-font/font-bitstream-100dpi_1.0.3.bb b/meta-oe/recipes-graphics/xorg-font/font-bitstream-100dpi_1.0.3.bb
new file mode 100644
index 0000000..9a83ac1
--- /dev/null
+++ b/meta-oe/recipes-graphics/xorg-font/font-bitstream-100dpi_1.0.3.bb
@@ -0,0 +1,14 @@
+require recipes-graphics/xorg-font/xorg-font-common.inc
+
+SUMMARY = "Bitstream 100 DPI fonts"
+HOMEPAGE = "http://cgit.freedesktop.org/xorg/font/bitstream-100dpi/"
+SECTION = "x11/font"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=30330812324ff9d9bd9ea645bb944427"
+
+DEPENDS = "util-macros-native font-util-native bdftopcf-native"
+RDEPENDS_${PN} = "encodings font-util"
+RDEPENDS_${PN}_class-native = "font-util-native"
+
+SRC_URI[md5sum] = "6b223a54b15ecbd5a1bc52312ad790d8"
+SRC_URI[sha256sum] = "ebe0d7444e3d7c8da7642055ac2206f0190ee060700d99cd876f8fc9964cb6ce"
--
1.9.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [meta-oe][PATCH 7/7] xorg-fonts-100dpi: add recipe
2014-05-12 17:31 [meta-oe][PATCH 0/7] Add core 100 DPI X.org fonts Ben Shelton
` (5 preceding siblings ...)
2014-05-12 17:31 ` [meta-oe][PATCH 6/7] font-bitstream-100dpi: " Ben Shelton
@ 2014-05-12 17:31 ` Ben Shelton
6 siblings, 0 replies; 14+ messages in thread
From: Ben Shelton @ 2014-05-12 17:31 UTC (permalink / raw)
To: openembedded-devel
Adding a packagegroup recipe to build all the core 100dpi X fonts.
Signed-off-by: Ben Shelton <ben.shelton@ni.com>
---
meta-oe/recipes-graphics/xorg-font/xorg-fonts-100dpi.bb | 14 ++++++++++++++
1 file changed, 14 insertions(+)
create mode 100644 meta-oe/recipes-graphics/xorg-font/xorg-fonts-100dpi.bb
diff --git a/meta-oe/recipes-graphics/xorg-font/xorg-fonts-100dpi.bb b/meta-oe/recipes-graphics/xorg-font/xorg-fonts-100dpi.bb
new file mode 100644
index 0000000..aacf379
--- /dev/null
+++ b/meta-oe/recipes-graphics/xorg-font/xorg-fonts-100dpi.bb
@@ -0,0 +1,14 @@
+SUMMARY = "Xorg 100 DPI font set"
+LICENSE = "Custom"
+
+inherit packagegroup
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+RDEPENDS_${PN} = "\
+ font-adobe-100dpi \
+ font-adobe-utopia-100dpi \
+ font-bh-100dpi \
+ font-bh-lucidatypewriter-100dpi \
+ font-bitstream-100dpi \
+"
--
1.9.3
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [meta-oe][PATCH 1/7] bdftopcf: add recipe
2014-05-12 17:31 ` [meta-oe][PATCH 1/7] bdftopcf: add recipe Ben Shelton
@ 2014-05-13 8:08 ` Matthieu CRAPET
2014-05-13 8:10 ` Matthieu CRAPET
` (2 more replies)
0 siblings, 3 replies; 14+ messages in thread
From: Matthieu CRAPET @ 2014-05-13 8:08 UTC (permalink / raw)
To: openembedded-devel@lists.openembedded.org
Hi,
Did you reused this recipe:
https://www.mail-archive.com/openembedded-devel%40lists.openembedded.org/msg35721.html
If so, you could give some credits to the original author.
Regards,
M
-----Message d'origine-----
De : openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel-bounces@lists.openembedded.org] De la part de Ben Shelton
Envoyé : lundi 12 mai 2014 19:32
À : openembedded-devel@lists.openembedded.org
Objet : [oe] [meta-oe][PATCH 1/7] bdftopcf: add recipe
The bdftopcf tool is necessary to build the core X fonts, which ship in BDF format. Adapted from a recipe in OE-Classic and from an earlier mailing list post by Trevor Woerner.
Signed-off-by: Ben Shelton <ben.shelton@ni.com>
---
meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
diff --git a/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
new file mode 100644
index 0000000..5009d54
--- /dev/null
+++ b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
@@ -0,0 +1,13 @@
+require recipes-graphics/xorg-app/xorg-app-common.inc
+
+SUMMARY = "bdftopcf is a tool to convert BDF fonts to PCF fonts"
+HOMEPAGE = "http://cgit.freedesktop.org/xorg/app/bdftopcf/"
+SECTION = "x11/app"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=f9a35333adf75edd1eaef84bca65a490"
+DEPENDS = "libxfont"
+
+SRC_URI[md5sum] = "96a648a332160a7482885800f7a506fa"
+SRC_URI[sha256sum] = "eaf59057ba3d7cffe29526562ce50868da7da823487a4cfb3e16946e5ffd2798"
+
+BBCLASSEXTEND = "native"
--
1.9.3
--
_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [meta-oe][PATCH 1/7] bdftopcf: add recipe
2014-05-13 8:08 ` Matthieu CRAPET
@ 2014-05-13 8:10 ` Matthieu CRAPET
2014-05-13 8:29 ` Martin Jansa
2014-05-13 9:06 ` Martin Jansa
2 siblings, 0 replies; 14+ messages in thread
From: Matthieu CRAPET @ 2014-05-13 8:10 UTC (permalink / raw)
To: openembedded-devel@lists.openembedded.org
This was done already, sorry! Forget my previous mail.
M
-----Message d'origine-----
De : openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel-bounces@lists.openembedded.org] De la part de Matthieu CRAPET
Envoyé : mardi 13 mai 2014 10:08
À : openembedded-devel@lists.openembedded.org
Objet : Re: [oe] [meta-oe][PATCH 1/7] bdftopcf: add recipe
Hi,
Did you reused this recipe:
https://www.mail-archive.com/openembedded-devel%40lists.openembedded.org/msg35721.html
If so, you could give some credits to the original author.
Regards,
M
-----Message d'origine-----
De : openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel-bounces@lists.openembedded.org] De la part de Ben Shelton Envoyé : lundi 12 mai 2014 19:32 À : openembedded-devel@lists.openembedded.org
Objet : [oe] [meta-oe][PATCH 1/7] bdftopcf: add recipe
The bdftopcf tool is necessary to build the core X fonts, which ship in BDF format. Adapted from a recipe in OE-Classic and from an earlier mailing list post by Trevor Woerner.
Signed-off-by: Ben Shelton <ben.shelton@ni.com>
---
meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
diff --git a/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
new file mode 100644
index 0000000..5009d54
--- /dev/null
+++ b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
@@ -0,0 +1,13 @@
+require recipes-graphics/xorg-app/xorg-app-common.inc
+
+SUMMARY = "bdftopcf is a tool to convert BDF fonts to PCF fonts"
+HOMEPAGE = "http://cgit.freedesktop.org/xorg/app/bdftopcf/"
+SECTION = "x11/app"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://COPYING;md5=f9a35333adf75edd1eaef84bca65a490"
+DEPENDS = "libxfont"
+
+SRC_URI[md5sum] = "96a648a332160a7482885800f7a506fa"
+SRC_URI[sha256sum] = "eaf59057ba3d7cffe29526562ce50868da7da823487a4cfb3e16946e5ffd2798"
+
+BBCLASSEXTEND = "native"
--
1.9.3
--
_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel
--
_______________________________________________
Openembedded-devel mailing list
Openembedded-devel@lists.openembedded.org
http://lists.openembedded.org/mailman/listinfo/openembedded-devel
^ permalink raw reply related [flat|nested] 14+ messages in thread
* Re: [meta-oe][PATCH 1/7] bdftopcf: add recipe
2014-05-13 8:08 ` Matthieu CRAPET
2014-05-13 8:10 ` Matthieu CRAPET
@ 2014-05-13 8:29 ` Martin Jansa
2014-05-13 14:52 ` Ben Shelton
2014-05-13 9:06 ` Martin Jansa
2 siblings, 1 reply; 14+ messages in thread
From: Martin Jansa @ 2014-05-13 8:29 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 2385 bytes --]
On Tue, May 13, 2014 at 08:08:18AM +0000, Matthieu CRAPET wrote:
> Hi,
>
> Did you reused this recipe:
> https://www.mail-archive.com/openembedded-devel%40lists.openembedded.org/msg35721.html
> If so, you could give some credits to the original author.
But it doesn't seem to address the review comments in original patch.
> -----Message d'origine-----
> De : openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel-bounces@lists.openembedded.org] De la part de Ben Shelton
> Envoyé : lundi 12 mai 2014 19:32
> À : openembedded-devel@lists.openembedded.org
> Objet : [oe] [meta-oe][PATCH 1/7] bdftopcf: add recipe
>
> The bdftopcf tool is necessary to build the core X fonts, which ship in BDF format. Adapted from a recipe in OE-Classic and from an earlier mailing list post by Trevor Woerner.
>
> Signed-off-by: Ben Shelton <ben.shelton@ni.com>
> ---
> meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
> create mode 100644 meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
>
> diff --git a/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
> new file mode 100644
> index 0000000..5009d54
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
> @@ -0,0 +1,13 @@
> +require recipes-graphics/xorg-app/xorg-app-common.inc
> +
> +SUMMARY = "bdftopcf is a tool to convert BDF fonts to PCF fonts"
> +HOMEPAGE = "http://cgit.freedesktop.org/xorg/app/bdftopcf/"
> +SECTION = "x11/app"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=f9a35333adf75edd1eaef84bca65a490"
> +DEPENDS = "libxfont"
> +
> +SRC_URI[md5sum] = "96a648a332160a7482885800f7a506fa"
> +SRC_URI[sha256sum] = "eaf59057ba3d7cffe29526562ce50868da7da823487a4cfb3e16946e5ffd2798"
> +
> +BBCLASSEXTEND = "native"
> --
> 1.9.3
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [meta-oe][PATCH 1/7] bdftopcf: add recipe
2014-05-13 8:08 ` Matthieu CRAPET
2014-05-13 8:10 ` Matthieu CRAPET
2014-05-13 8:29 ` Martin Jansa
@ 2014-05-13 9:06 ` Martin Jansa
2 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2014-05-13 9:06 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 2488 bytes --]
On Tue, May 13, 2014 at 08:08:18AM +0000, Matthieu CRAPET wrote:
> Hi,
>
> Did you reused this recipe:
> https://www.mail-archive.com/openembedded-devel%40lists.openembedded.org/msg35721.html
> If so, you could give some credits to the original author.
Matthieu: please fix your e-mail client configuration to indent the
message you're replying to. Your replies to patches are creating new
entries in patchwork...
Thanks
> -----Message d'origine-----
> De : openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel-bounces@lists.openembedded.org] De la part de Ben Shelton
> Envoyé : lundi 12 mai 2014 19:32
> À : openembedded-devel@lists.openembedded.org
> Objet : [oe] [meta-oe][PATCH 1/7] bdftopcf: add recipe
>
> The bdftopcf tool is necessary to build the core X fonts, which ship in BDF format. Adapted from a recipe in OE-Classic and from an earlier mailing list post by Trevor Woerner.
>
> Signed-off-by: Ben Shelton <ben.shelton@ni.com>
> ---
> meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
> create mode 100644 meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
>
> diff --git a/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
> new file mode 100644
> index 0000000..5009d54
> --- /dev/null
> +++ b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
> @@ -0,0 +1,13 @@
> +require recipes-graphics/xorg-app/xorg-app-common.inc
> +
> +SUMMARY = "bdftopcf is a tool to convert BDF fonts to PCF fonts"
> +HOMEPAGE = "http://cgit.freedesktop.org/xorg/app/bdftopcf/"
> +SECTION = "x11/app"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=f9a35333adf75edd1eaef84bca65a490"
> +DEPENDS = "libxfont"
> +
> +SRC_URI[md5sum] = "96a648a332160a7482885800f7a506fa"
> +SRC_URI[sha256sum] = "eaf59057ba3d7cffe29526562ce50868da7da823487a4cfb3e16946e5ffd2798"
> +
> +BBCLASSEXTEND = "native"
> --
> 1.9.3
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [meta-oe][PATCH 1/7] bdftopcf: add recipe
2014-05-13 8:29 ` Martin Jansa
@ 2014-05-13 14:52 ` Ben Shelton
2014-05-13 15:03 ` Martin Jansa
0 siblings, 1 reply; 14+ messages in thread
From: Ben Shelton @ 2014-05-13 14:52 UTC (permalink / raw)
To: openembedded-devel
On 05/13, Martin Jansa wrote:
> On Tue, May 13, 2014 at 08:08:18AM +0000, Matthieu CRAPET wrote:
> > Hi,
> >
> > Did you reused this recipe:
> > https://www.mail-archive.com/openembedded-devel%40lists.openembedded.org/msg35721.html
> > If so, you could give some credits to the original author.
>
> But it doesn't seem to address the review comments in original patch.
>
I thought the issue with the original patch was that the "require
recipes-graphics/xorg-app/xorg-app-common.inc" line needed to be moved
to the top of the recipe to fix the build. Are there other changes that
need to be made?
Thanks,
Ben
> > -----Message d'origine-----
> > De : openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel-bounces@lists.openembedded.org] De la part de Ben Shelton
> > Envoyé : lundi 12 mai 2014 19:32
> > À : openembedded-devel@lists.openembedded.org
> > Objet : [oe] [meta-oe][PATCH 1/7] bdftopcf: add recipe
> >
> > The bdftopcf tool is necessary to build the core X fonts, which ship in BDF format. Adapted from a recipe in OE-Classic and from an earlier mailing list post by Trevor Woerner.
> >
> > Signed-off-by: Ben Shelton <ben.shelton@ni.com>
> > ---
> > meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb | 13 +++++++++++++
> > 1 file changed, 13 insertions(+)
> > create mode 100644 meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
> >
> > diff --git a/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
> > new file mode 100644
> > index 0000000..5009d54
> > --- /dev/null
> > +++ b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
> > @@ -0,0 +1,13 @@
> > +require recipes-graphics/xorg-app/xorg-app-common.inc
> > +
> > +SUMMARY = "bdftopcf is a tool to convert BDF fonts to PCF fonts"
> > +HOMEPAGE = "http://cgit.freedesktop.org/xorg/app/bdftopcf/"
> > +SECTION = "x11/app"
> > +LICENSE = "MIT"
> > +LIC_FILES_CHKSUM = "file://COPYING;md5=f9a35333adf75edd1eaef84bca65a490"
> > +DEPENDS = "libxfont"
> > +
> > +SRC_URI[md5sum] = "96a648a332160a7482885800f7a506fa"
> > +SRC_URI[sha256sum] = "eaf59057ba3d7cffe29526562ce50868da7da823487a4cfb3e16946e5ffd2798"
> > +
> > +BBCLASSEXTEND = "native"
> > --
> > 1.9.3
> >
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
> --
> Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [meta-oe][PATCH 1/7] bdftopcf: add recipe
2014-05-13 14:52 ` Ben Shelton
@ 2014-05-13 15:03 ` Martin Jansa
0 siblings, 0 replies; 14+ messages in thread
From: Martin Jansa @ 2014-05-13 15:03 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 3558 bytes --]
On Tue, May 13, 2014 at 09:52:03AM -0500, Ben Shelton wrote:
> On 05/13, Martin Jansa wrote:
> > On Tue, May 13, 2014 at 08:08:18AM +0000, Matthieu CRAPET wrote:
> > > Hi,
> > >
> > > Did you reused this recipe:
> > > https://www.mail-archive.com/openembedded-devel%40lists.openembedded.org/msg35721.html
> > > If so, you could give some credits to the original author.
> >
> > But it doesn't seem to address the review comments in original patch.
> >
>
> I thought the issue with the original patch was that the "require
> recipes-graphics/xorg-app/xorg-app-common.inc" line needed to be moved
> to the top of the recipe to fix the build. Are there other changes that
> need to be made?
Ah right, sorry I've overlooked it, it's in master-next now, thanks!
>
> Thanks,
> Ben
>
> > > -----Message d'origine-----
> > > De : openembedded-devel-bounces@lists.openembedded.org [mailto:openembedded-devel-bounces@lists.openembedded.org] De la part de Ben Shelton
> > > Envoyé : lundi 12 mai 2014 19:32
> > > À : openembedded-devel@lists.openembedded.org
> > > Objet : [oe] [meta-oe][PATCH 1/7] bdftopcf: add recipe
> > >
> > > The bdftopcf tool is necessary to build the core X fonts, which ship in BDF format. Adapted from a recipe in OE-Classic and from an earlier mailing list post by Trevor Woerner.
> > >
> > > Signed-off-by: Ben Shelton <ben.shelton@ni.com>
> > > ---
> > > meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb | 13 +++++++++++++
> > > 1 file changed, 13 insertions(+)
> > > create mode 100644 meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
> > >
> > > diff --git a/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
> > > new file mode 100644
> > > index 0000000..5009d54
> > > --- /dev/null
> > > +++ b/meta-oe/recipes-graphics/xorg-app/bdftopcf_1.0.4.bb
> > > @@ -0,0 +1,13 @@
> > > +require recipes-graphics/xorg-app/xorg-app-common.inc
> > > +
> > > +SUMMARY = "bdftopcf is a tool to convert BDF fonts to PCF fonts"
> > > +HOMEPAGE = "http://cgit.freedesktop.org/xorg/app/bdftopcf/"
> > > +SECTION = "x11/app"
> > > +LICENSE = "MIT"
> > > +LIC_FILES_CHKSUM = "file://COPYING;md5=f9a35333adf75edd1eaef84bca65a490"
> > > +DEPENDS = "libxfont"
> > > +
> > > +SRC_URI[md5sum] = "96a648a332160a7482885800f7a506fa"
> > > +SRC_URI[sha256sum] = "eaf59057ba3d7cffe29526562ce50868da7da823487a4cfb3e16946e5ffd2798"
> > > +
> > > +BBCLASSEXTEND = "native"
> > > --
> > > 1.9.3
> > >
> > > --
> > > _______________________________________________
> > > Openembedded-devel mailing list
> > > Openembedded-devel@lists.openembedded.org
> > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> > > --
> > > _______________________________________________
> > > Openembedded-devel mailing list
> > > Openembedded-devel@lists.openembedded.org
> > > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
> >
> > --
> > Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
>
>
>
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel@lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2014-05-13 15:02 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-12 17:31 [meta-oe][PATCH 0/7] Add core 100 DPI X.org fonts Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 1/7] bdftopcf: add recipe Ben Shelton
2014-05-13 8:08 ` Matthieu CRAPET
2014-05-13 8:10 ` Matthieu CRAPET
2014-05-13 8:29 ` Martin Jansa
2014-05-13 14:52 ` Ben Shelton
2014-05-13 15:03 ` Martin Jansa
2014-05-13 9:06 ` Martin Jansa
2014-05-12 17:31 ` [meta-oe][PATCH 2/7] font-adobe-100dpi: " Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 3/7] font-adobe-utopia: " Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 4/7] font-bh-100dpi: " Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 5/7] font-bh-lucidatypewriter: " Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 6/7] font-bitstream-100dpi: " Ben Shelton
2014-05-12 17:31 ` [meta-oe][PATCH 7/7] xorg-fonts-100dpi: " Ben Shelton
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.