summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/source-highlight
diff options
context:
space:
mode:
authorAlexander Kanavin <alexander.kanavin@linux.intel.com>2016-07-13 17:44:27 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-09-09 12:12:22 +0100
commit94317f52cec76eeec6dcf885cd1e83dc37f40614 (patch)
treed32d5320863d6e26dddf022a2022c627692ad09a /meta/recipes-support/source-highlight
parent8c46605d16a5ace05dfe5d165563a44b2f03c957 (diff)
downloadpoky-94317f52cec76eeec6dcf885cd1e83dc37f40614.tar.gz
source-highlight: add a recipe
gtk-doc relies on this to highlight source code snippets (From OE-Core rev: 380f449bc1881a6e8592463c7eeda3655efb97ea) Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/source-highlight')
-rw-r--r--meta/recipes-support/source-highlight/files/0001-source-highlight.pc.in-do-not-add-Boost-s-libraries-.patch30
-rw-r--r--meta/recipes-support/source-highlight/source-highlight_3.1.8.bb28
2 files changed, 58 insertions, 0 deletions
diff --git a/meta/recipes-support/source-highlight/files/0001-source-highlight.pc.in-do-not-add-Boost-s-libraries-.patch b/meta/recipes-support/source-highlight/files/0001-source-highlight.pc.in-do-not-add-Boost-s-libraries-.patch
new file mode 100644
index 0000000000..b0aa5d1739
--- /dev/null
+++ b/meta/recipes-support/source-highlight/files/0001-source-highlight.pc.in-do-not-add-Boost-s-libraries-.patch
@@ -0,0 +1,30 @@
1From 9aa01fd5f9d8b2b98c34684dc8f68115750ef41c Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Tue, 12 Jul 2016 17:15:13 +0300
4Subject: [PATCH] source-highlight.pc.in: do not add Boost's libraries and
5 includes
6
7This breaks when compiling in sysroots; a proper way is to use Depends
8
9Upstream-Status: Pending
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11---
12 source-highlight.pc.in | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15diff --git a/source-highlight.pc.in b/source-highlight.pc.in
16index 79ab63e..64114a7 100644
17--- a/source-highlight.pc.in
18+++ b/source-highlight.pc.in
19@@ -7,6 +7,6 @@ Name: libsource-highlight
20 Description: GNU Source-highlight library.
21 URL: http://www.gnu.org/software/src-highlite/
22 Version: @VERSION@
23-Libs: -L${libdir} -lsource-highlight @BOOST_LDFLAGS@ @BOOST_REGEX_LIB@
24-Cflags: -I${includedir} @BOOST_CPPFLAGS@
25+Libs: -L${libdir} -lsource-highlight
26+Cflags: -I${includedir}
27
28--
292.8.1
30
diff --git a/meta/recipes-support/source-highlight/source-highlight_3.1.8.bb b/meta/recipes-support/source-highlight/source-highlight_3.1.8.bb
new file mode 100644
index 0000000000..37d2fa95f3
--- /dev/null
+++ b/meta/recipes-support/source-highlight/source-highlight_3.1.8.bb
@@ -0,0 +1,28 @@
1SUMMARY = "Syntax highlight utility"
2DESCRIPTION = "Source-highlight converts source code to formatted text with syntax highlighting."
3HOMEPAGE = "https://www.gnu.org/software/src-highlite/"
4LICENSE = "GPLv3"
5LIC_FILES_CHKSUM = "file://COPYING;md5=ff95bfe019feaf92f524b73dd79e76eb"
6
7SRC_URI = "${GNU_MIRROR}/src-highlite/${BPN}-${PV}.tar.gz \
8 file://0001-source-highlight.pc.in-do-not-add-Boost-s-libraries-.patch"
9SRC_URI[md5sum] = "3243470706ef5fefdc3e43b5306a4e41"
10SRC_URI[sha256sum] = "01336a7ea1d1ccc374201f7b81ffa94d0aecb33afc7d6903ebf9fbf33a55ada3"
11
12inherit autotools
13
14DEPENDS_append = " boost"
15
16DEPENDS_append_class-target = " source-highlight-native"
17
18EXTRA_OECONF = "--with-boost=${PKG_CONFIG_SYSROOT_DIR}/${prefix}"
19
20BBCLASSEXTEND = "native"
21
22# source-highlight is using its own binary from the build tree to make documentation
23# let's substitute the native binary instead
24do_configure_prepend_class-target () {
25 sed -i -e 's,^SRCHILITEEXE = $(top_builddir).*,SRCHILITEEXE = source-highlight,' ${S}/doc/Makefile.am
26}
27
28RDEPENDS_source-highlight += "bash"