From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/highlight/
Date: Sun, 4 Feb 2018 17:41:47 +0000 (UTC) [thread overview]
Message-ID: <1517765932.2f12fa9a90ebe234620dd6d2947369ac1919fbd0.asturm@gentoo> (raw)
commit: 2f12fa9a90ebe234620dd6d2947369ac1919fbd0
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 4 16:30:03 2018 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Feb 4 17:38:52 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f12fa9a
app-text/highlight: 3.42 version bump
Bug: https://bugs.gentoo.org/641932
Package-Manager: Portage-2.3.24, Repoman-2.3.6
app-text/highlight/Manifest | 1 +
app-text/highlight/highlight-3.42.ebuild | 86 ++++++++++++++++++++++++++++++++
2 files changed, 87 insertions(+)
diff --git a/app-text/highlight/Manifest b/app-text/highlight/Manifest
index c017c7e9325..760a676b1e7 100644
--- a/app-text/highlight/Manifest
+++ b/app-text/highlight/Manifest
@@ -2,3 +2,4 @@ DIST highlight-3.17.tar.bz2 617834 BLAKE2B 0098eebe14fd9325b3cad3028821326404dc8
DIST highlight-3.33.tar.bz2 620644 BLAKE2B e1d6836801c772a1004d0a6bbed72ddbba65463b416d6503d66b1d96d4887eca15d63191dbea7bc9867442d4030765c39ebb42af6ec74b97b00ec9c42ce0b100 SHA512 12dc233e91380d762cafdc8a685fe6063e2b115d4df5e7ed83c4e880076a8b4fd3d41bf3631a9840600ae3012a87c64c31667b0f81655dd2ad10f26c563cce83
DIST highlight-3.34.tar.bz2 622273 BLAKE2B 7eb98843f369f21a115c6d5d3def4930a5763932fd6df65044681e85c82fb01ea9f5eff48f7e00aef48c31bd6dcc0ed0c2658f654e2f2df4177760f80168ac96 SHA512 f052adfe2b78d6cc28f23e303a0b2d5fd7d86aa261a3a40cca5e07fd7867eee3da415204194387d0e9818860b22ba2578fe200ee783e9cc07a5e30d94431ab51
DIST highlight-3.35.tar.bz2 1181873 BLAKE2B 44a5081dacac2bbcd2f3b7b8f86bb95be77681626c34ed9cd326e51eafc960584f8d53491c5173c30b603c1a72f781ac7f5ae9e9f54b91de606cda8d44d4fcb2 SHA512 4f0959b4deacccf3de7137a4db45c2ec7091fb7427076cb5c5709a8d2027458328133ff541ebfb5cbe25fdcd9eebcd1cc9ed58526300d56ac6205fe6b806d211
+DIST highlight-3.42.tar.bz2 1294770 BLAKE2B 22c79258be6a665eda8ee17d1de6a97811f97dc4b4491c24b466dc5375d98d865e07ac4e462288d066613bef8bb5a469fa0bdb3065ecf098fc6c4f6090ecb63e SHA512 362150ee396d2b203f11ecc3d011e23b6f8c7d93ff9f8cb0e9e980be6da21e7b3b1ea1e347e3f09129ab0fb1a0aab19ff19f021e643b93a163a99d3882f9bf80
diff --git a/app-text/highlight/highlight-3.42.ebuild b/app-text/highlight/highlight-3.42.ebuild
new file mode 100644
index 00000000000..72295826fe1
--- /dev/null
+++ b/app-text/highlight/highlight-3.42.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic qmake-utils toolchain-funcs
+
+DESCRIPTION="Converts source code to formatted text (HTML, LaTeX, etc.) with syntax highlight"
+HOMEPAGE="http://www.andre-simon.de/"
+SRC_URI="http://www.andre-simon.de/zip/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="examples qt5"
+
+RDEPEND="
+ dev-lang/lua:0=
+ qt5? (
+ dev-libs/double-conversion:=
+ dev-qt/qtcore:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ )
+"
+DEPEND="${RDEPEND}
+ dev-libs/boost
+ virtual/pkgconfig
+ qt5? ( dev-qt/linguist-tools:5 )
+"
+
+myhlopts=(
+ "CXX=$(tc-getCXX)"
+ "AR=$(tc-getAR)"
+ "LDFLAGS=${LDFLAGS}"
+ "CFLAGS=${CXXFLAGS} -DNDEBUG -std=c++11"
+ "DESTDIR=${D}"
+ "PREFIX=${EPREFIX}/usr"
+ "HL_CONFIG_DIR=${EPREFIX}/etc/highlight/"
+ "HL_DATA_DIR=${EPREFIX}/usr/share/highlight/"
+ "doc_dir=${EPREFIX}/usr/share/doc/${PF}/"
+ "conf_dir=${EPREFIX}/etc/highlight/"
+)
+
+src_prepare() {
+ default
+
+ sed -e "/LSB_DOC_DIR/s:doc/${PN}:doc/${PF}:" \
+ -i src/core/datadir.cpp || die
+
+ if has_version "<dev-lang/lua-5.2"; then
+ sed -e "s/-DUSE_LUA52//" -i src/makefile || die
+ fi
+
+ # We set it via eqmake5, otherwise it forces clang...
+ sed -e "s/QMAKE_CC/#QMAKE_CC/g" \
+ -e "s/QMAKE_CXX /#QMAKE_CXX /g" \
+ -i src/gui-qt/highlight.pro || die
+}
+
+src_configure() {
+ if use qt5 ; then
+ pushd src/gui-qt > /dev/null || die
+ eqmake5 \
+ 'DEFINES+=DATA_DIR=\\\"'"${EPREFIX}"'/usr/share/${PN}/\\\" CONFIG_DIR=\\\"'"${EPREFIX}"'/etc/${PN}/\\\" DOC_DIR=\\\"'"${EPREFIX}"'/usr/share/doc/${PF}/\\\"'
+ popd > /dev/null || die
+ fi
+}
+
+src_compile() {
+ emake -f makefile "${myhlopts[@]}"
+ if use qt5 ; then
+ pushd src/gui-qt > /dev/null || die
+ emake
+ popd > /dev/null || die
+ fi
+}
+
+src_install() {
+ emake -f makefile "${myhlopts[@]}" install
+ use qt5 && emake -f makefile "${myhlopts[@]}" install-gui
+
+ if ! use examples ; then
+ rm -r "${ED}"/usr/share/doc/${PF}/extras || die
+ fi
+}
next reply other threads:[~2018-02-04 17:41 UTC|newest]
Thread overview: 100+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-04 17:41 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-09 22:05 [gentoo-commits] repo/gentoo:master commit in: app-text/highlight/ Andreas Sturmlechner
2025-03-09 20:19 Sam James
2025-02-22 16:49 Sam James
2025-02-14 8:19 Sam James
2025-01-08 19:58 Andreas Sturmlechner
2024-12-31 9:08 Andreas Sturmlechner
2024-11-18 21:42 Andreas Sturmlechner
2024-08-26 7:04 Arthur Zamarin
2024-01-28 22:14 Sam James
2023-12-30 4:10 Sam James
2023-12-30 3:04 Sam James
2023-12-30 3:04 Sam James
2023-12-30 3:04 Sam James
2023-12-30 3:04 Sam James
2023-10-20 0:51 Sam James
2023-10-09 20:02 Sam James
2023-10-09 7:04 Sam James
2023-10-09 5:54 Sam James
2023-10-09 4:53 Sam James
2023-10-09 4:46 Sam James
2023-08-30 7:48 Sam James
2023-04-19 13:04 Pacho Ramos
2023-04-18 9:03 Sam James
2022-05-14 7:04 WANG Xuerui
2022-04-17 18:32 Sam James
2022-03-19 23:17 David Seifert
2021-09-27 21:44 James Le Cuirot
2021-08-01 18:27 Sam James
2021-07-28 11:28 Marek Szuba
2021-06-16 15:40 Sergei Trofimovich
2021-06-13 12:38 Sam James
2021-06-13 11:12 Sam James
2021-06-13 11:12 Sam James
2021-06-13 11:12 Sam James
2021-06-13 11:12 Sam James
2021-06-13 11:12 Sam James
2021-05-13 16:15 Sam James
2021-04-01 22:32 Sam James
2021-04-01 22:32 Sam James
2021-04-01 22:30 Sam James
2021-04-01 22:30 Sam James
2021-04-01 22:27 Sam James
2021-04-01 22:27 Sam James
2021-04-01 17:55 Sergei Trofimovich
2021-04-01 12:11 Thomas Deutschmann
2021-03-25 23:31 Conrad Kostecki
2021-02-21 4:03 Sam James
2021-02-21 4:03 Sam James
2021-02-09 13:47 Marek Szuba
2021-02-08 15:08 Sergei Trofimovich
2021-01-23 22:42 Sam James
2020-12-21 20:09 Sam James
2020-12-21 9:36 Sergei Trofimovich
2020-12-20 16:40 Thomas Deutschmann
2020-12-18 20:49 Sergei Trofimovich
2020-12-18 14:22 Sam James
2020-12-18 10:25 Sergei Trofimovich
2020-12-17 16:41 Agostino Sarubbo
2020-12-17 7:55 Sam James
2020-12-17 6:23 Sam James
2020-12-17 4:58 Sam James
2020-07-06 17:14 Robin H. Johnson
2020-06-28 20:44 Agostino Sarubbo
2020-06-28 20:40 Agostino Sarubbo
2020-06-28 20:37 Agostino Sarubbo
2020-06-28 20:33 Agostino Sarubbo
2020-06-28 20:30 Agostino Sarubbo
2020-06-28 20:27 Agostino Sarubbo
2020-06-28 7:49 Sergei Trofimovich
2020-06-28 7:49 Sergei Trofimovich
2020-06-27 20:41 Mart Raudsepp
2020-05-24 20:28 Andreas Sturmlechner
2018-07-01 14:01 Mikle Kolyada
2018-03-19 17:16 Andreas Sturmlechner
2018-03-19 9:28 Sergei Trofimovich
2018-03-15 20:17 Markus Meier
2018-03-08 21:26 Sergei Trofimovich
2018-03-05 21:31 Tobias Klausmann
2018-03-04 19:11 Sergei Trofimovich
2018-03-04 11:39 Mart Raudsepp
2018-03-04 11:13 Sergei Trofimovich
2018-03-04 10:20 Sergei Trofimovich
2018-03-04 9:13 Jason Zaman
2018-02-04 18:16 Andreas Sturmlechner
2018-02-04 17:41 Andreas Sturmlechner
2017-06-27 14:21 Alexis Ballier
2017-03-07 12:43 Alexis Ballier
2017-02-18 9:54 David Seifert
2017-01-03 16:46 Alexis Ballier
2017-01-03 16:46 Alexis Ballier
2016-12-01 14:12 Alexis Ballier
2016-10-20 12:17 Alexis Ballier
2016-10-20 12:17 Alexis Ballier
2016-08-21 7:09 Alexis Ballier
2016-06-30 8:30 Alexis Ballier
2016-02-23 16:14 Alexis Ballier
2016-01-26 7:46 Alexis Ballier
2016-01-07 7:49 Alexis Ballier
2015-11-13 9:02 Alexis Ballier
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1517765932.2f12fa9a90ebe234620dd6d2947369ac1919fbd0.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox