From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/
Date: Sat, 1 Jan 2022 04:29:05 +0000 (UTC) [thread overview]
Message-ID: <1641010206.f795e4590584c412ab29a4264e99e68e3e04ea67.sam@gentoo> (raw)
commit: f795e4590584c412ab29a4264e99e68e3e04ea67
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 1 04:10:06 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 1 04:10:06 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f795e459
app-doc/doxygen: add 1.9.3
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-doc/doxygen/Manifest | 1 +
app-doc/doxygen/doxygen-1.9.3.ebuild | 136 +++++++++++++++++++++++++++++++++++
2 files changed, 137 insertions(+)
diff --git a/app-doc/doxygen/Manifest b/app-doc/doxygen/Manifest
index 1ba9c1d618bc..1b9bdbad9421 100644
--- a/app-doc/doxygen/Manifest
+++ b/app-doc/doxygen/Manifest
@@ -1,2 +1,3 @@
DIST doxygen-1.9.1.src.tar.gz 5117435 BLAKE2B 28c1a1cb8390e17e2b399cea765f837782ee268a999606eef4031a5f65943c793c97bdbd2e2a25a39358ecac5df2c7a62aa4cca72753a924e4e718c512b8a9c7 SHA512 637496c549a4a150cfaeb5d4913de512262145ecd7d455d7b7f3dd68f9416e47d931a6c1efd8a17d931e4baf4a8a9f2ed21124664003b123b6f89ca4abf263ed
DIST doxygen-1.9.2.src.tar.gz 5076037 BLAKE2B 7b21b228a2049f3048fba744d94066524a0fca37335a7ffd2616fd62a8a7d8d9d28d0bd506245c63771264a279a21f327e5386a9b4c490eea7f79ddd9583b566 SHA512 2729d013b0363a919bbf6babd300389b76e95dd9dbb16ac0f57fc5a0392d3e2076ea4fba958a236311513e68e4aa056a77bd22c9c92b410a17eed095e5adccc0
+DIST doxygen-1.9.3.src.tar.gz 5152094 BLAKE2B 1dabbed1058544159cf369fa1728410545d51857f053d43202fc2b1b19a7fda887fad711efa88770eac98ee7da7cf6fe3d13b03c0525db680b5f5f87f4c16fba SHA512 a4a3efac6897d9aeabc4a1eab6530883da782cdd8461c96b47a82f89328a877c91916d3a338706a8232270732efa37e9f05440cb4034976622e35f301aa1659b
diff --git a/app-doc/doxygen/doxygen-1.9.3.ebuild b/app-doc/doxygen/doxygen-1.9.3.ebuild
new file mode 100644
index 000000000000..a3749b5cd2ac
--- /dev/null
+++ b/app-doc/doxygen/doxygen-1.9.3.ebuild
@@ -0,0 +1,136 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit cmake flag-o-matic llvm python-any-r1
+if [[ ${PV} = *9999* ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/doxygen/doxygen.git"
+else
+ SRC_URI="http://doxygen.nl/files/${P}.src.tar.gz"
+ SRC_URI+=" mirror://sourceforge/doxygen/rel-${PV}/${P}.src.tar.gz"
+ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+fi
+
+DESCRIPTION="Documentation system for most programming languages"
+HOMEPAGE="http://www.doxygen.org"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="clang debug doc dot doxysearch qt5 sqlite userland_GNU"
+# We need TeX for tests, bug #765472
+RESTRICT="!doc? ( test )"
+
+BDEPEND="sys-devel/bison
+ sys-devel/flex
+ ${PYTHON_DEPS}
+"
+RDEPEND="app-text/ghostscript-gpl
+ dev-lang/perl
+ media-libs/libpng:0=
+ virtual/libiconv
+ clang? ( >=sys-devel/clang-10:= )
+ dot? (
+ media-gfx/graphviz
+ media-libs/freetype
+ )
+ doc? (
+ dev-texlive/texlive-bibtexextra
+ dev-texlive/texlive-fontsextra
+ dev-texlive/texlive-fontutils
+ dev-texlive/texlive-latex
+ dev-texlive/texlive-latexextra
+ dev-texlive/texlive-plaingeneric
+ )
+ doxysearch? ( dev-libs/xapian:= )
+ qt5? (
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtxml:5
+ )
+ sqlite? ( dev-db/sqlite:3 )
+"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+ "${FILESDIR}/${PN}-1.8.16-link_with_pthread.patch"
+ "${FILESDIR}/${PN}-1.9.1-ignore-bad-encoding.patch"
+)
+
+DOCS=( LANGUAGE.HOWTO README.md )
+
+pkg_setup() {
+ use clang && llvm_pkg_setup
+ python-any-r1_pkg_setup
+}
+
+src_prepare() {
+ cmake_src_prepare
+
+ # Ensure we link to -liconv
+ if use elibc_FreeBSD && has_version dev-libs/libiconv || use elibc_uclibc; then
+ local pro
+ for pro in */*.pro.in */*/*.pro.in; do
+ echo "unix:LIBS += -liconv" >> "${pro}" || die
+ done
+ fi
+
+ # Call dot with -Teps instead of -Tps for EPS generation - bug #282150
+ sed -i -e '/addJob("ps"/ s/"ps"/"eps"/g' src/dot.cpp || die
+
+ # fix pdf doc
+ sed -i.orig -e "s:g_kowal:g kowal:" \
+ doc/maintainers.txt || die
+
+ if is-flagq "-O3" ; then
+ ewarn
+ ewarn "Compiling with -O3 is known to produce incorrectly"
+ ewarn "optimized code which breaks doxygen."
+ ewarn
+ elog
+ elog "Continuing with -O2 instead ..."
+ elog
+ replace-flags "-O3" "-O2"
+ fi
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -Duse_libclang=$(usex clang)
+ -Dbuild_doc=$(usex doc)
+ -Dbuild_search=$(usex doxysearch)
+ -Dbuild_wizard=$(usex qt5)
+ -Duse_sqlite3=$(usex sqlite)
+ -DGIT_EXECUTABLE="false"
+ )
+
+ use doc && mycmakeargs+=(
+ -DDOC_INSTALL_DIR="share/doc/${P}"
+ )
+
+ cmake_src_configure
+}
+
+src_compile() {
+ cmake_src_compile
+
+ if use doc; then
+ export VARTEXFONTS="${T}/fonts" # bug #564944
+
+ if ! use dot; then
+ sed -i -e "s/HAVE_DOT = YES/HAVE_DOT = NO/" \
+ {Doxyfile,doc/Doxyfile} \
+ || die "disabling dot failed"
+ fi
+
+ # -j1 for bug #770070
+ cmake_src_compile docs -j1
+ fi
+}
+
+src_install() {
+ cmake_src_install
+}
next reply other threads:[~2022-01-01 4:29 UTC|newest]
Thread overview: 193+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-01 4:29 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-01-03 2:20 [gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/ Ionen Wolkens
2024-01-02 7:38 Sam James
2023-12-31 3:49 Sam James
2023-12-28 2:19 Sam James
2023-12-28 2:19 Sam James
2023-12-16 3:08 Sam James
2023-12-16 3:08 Sam James
2023-12-04 9:25 Sam James
2023-11-29 7:03 Sam James
2023-11-29 6:08 Sam James
2023-11-28 5:27 Arthur Zamarin
2023-11-27 11:25 Sam James
2023-11-27 11:23 Sam James
2023-11-27 11:23 Sam James
2023-11-27 11:23 Sam James
2023-11-27 11:23 Sam James
2023-11-25 16:57 Arthur Zamarin
2023-09-24 4:45 Sam James
2023-07-26 3:13 Sam James
2023-05-27 19:21 Arthur Zamarin
2023-05-26 11:39 Andreas Sturmlechner
2023-05-20 13:00 Sam James
2023-05-20 4:48 Sam James
2023-04-13 15:14 Matthias Maier
2023-03-31 11:46 Arthur Zamarin
2023-03-31 11:46 Arthur Zamarin
2023-03-31 11:46 Arthur Zamarin
2023-03-31 11:46 Arthur Zamarin
2023-03-31 11:46 Arthur Zamarin
2023-03-31 11:46 Arthur Zamarin
2022-12-31 13:40 Arthur Zamarin
2022-12-31 13:40 Arthur Zamarin
2022-12-30 6:33 Sam James
2022-12-29 21:27 Sam James
2022-12-29 21:27 Sam James
2022-12-25 20:12 Matthias Maier
2022-11-19 7:27 Arthur Zamarin
2022-11-19 7:27 Arthur Zamarin
2022-11-19 7:27 Arthur Zamarin
2022-11-19 7:27 Arthur Zamarin
2022-11-19 7:27 Arthur Zamarin
2022-11-19 7:27 Arthur Zamarin
2022-11-18 7:22 WANG Xuerui
2022-11-18 7:07 Jakov Smolić
2022-11-18 7:04 Jakov Smolić
2022-11-10 6:10 Sam James
2022-08-29 19:06 Sam James
2022-08-19 19:38 Sam James
2022-07-30 15:54 Arthur Zamarin
2022-07-25 4:19 Sam James
2022-07-18 12:52 Sam James
2022-07-18 12:52 Sam James
2022-07-17 19:42 Sam James
2022-07-17 19:42 Sam James
2022-07-17 17:34 Sam James
2022-07-17 17:34 Sam James
2022-07-17 15:27 Sam James
2022-06-23 5:35 Sam James
2022-05-18 18:31 Sam James
2022-05-15 8:38 Jakov Smolić
2022-05-15 8:19 Jakov Smolić
2022-05-15 8:14 Jakov Smolić
2022-05-15 8:14 Jakov Smolić
2022-05-14 22:34 Jakov Smolić
2022-05-14 22:27 Jakov Smolić
2022-05-14 21:53 Jakov Smolić
2021-11-24 3:07 Sam James
2021-11-15 19:41 Agostino Sarubbo
2021-09-20 10:41 James Le Cuirot
2021-08-26 19:46 Arthur Zamarin
2021-08-26 19:46 Arthur Zamarin
2021-05-15 2:41 Sam James
2021-05-15 2:37 Sam James
2021-04-13 7:12 Sergei Trofimovich
2021-04-03 23:07 Sam James
2021-03-26 20:39 Agostino Sarubbo
2021-03-19 18:09 Mikle Kolyada
2021-03-15 11:39 Sam James
2021-03-01 19:51 Sergei Trofimovich
2021-02-18 20:11 Sergei Trofimovich
2021-02-17 7:36 Sergei Trofimovich
2021-01-22 22:46 Sam James
2021-01-14 21:55 Sam James
2021-01-14 18:58 Sam James
2021-01-06 12:59 Fabian Groffen
2020-12-12 21:40 Matthias Maier
2020-12-10 19:14 Matthias Maier
2020-10-31 11:11 David Seifert
2020-07-11 20:16 Sam James
2020-06-07 21:04 Mart Raudsepp
2020-06-07 21:04 Mart Raudsepp
2020-05-18 21:13 Agostino Sarubbo
2020-05-18 21:10 Agostino Sarubbo
2020-05-18 16:46 Sergei Trofimovich
2020-05-18 15:10 Agostino Sarubbo
2020-05-17 10:06 Sergei Trofimovich
2020-05-17 9:55 Sergei Trofimovich
2020-05-16 19:47 Sergei Trofimovich
2020-05-12 20:17 Sergei Trofimovich
2020-05-11 20:34 Sergei Trofimovich
2020-04-04 11:07 Sergei Trofimovich
2020-03-11 14:42 Matthias Maier
2020-03-01 18:39 Matthias Maier
2020-03-01 18:36 Matthias Maier
2020-01-03 13:57 Agostino Sarubbo
2019-12-31 14:21 Agostino Sarubbo
2019-12-31 14:16 Agostino Sarubbo
2019-12-28 15:59 Mikle Kolyada
2019-12-28 11:27 Lars Wendler
2019-12-26 23:03 Aaron Bauman
2019-12-23 9:42 Mikle Kolyada
2019-12-15 10:59 Agostino Sarubbo
2019-12-13 9:45 Agostino Sarubbo
2019-12-13 0:07 Thomas Deutschmann
2019-12-12 22:56 Sergei Trofimovich
2019-12-12 20:05 Matthias Maier
2019-12-12 19:23 Matthias Maier
2019-09-13 15:36 Mikle Kolyada
2019-09-13 15:36 Mikle Kolyada
2019-08-06 15:24 Agostino Sarubbo
2019-08-06 9:42 Agostino Sarubbo
2019-08-06 9:39 Agostino Sarubbo
2019-08-03 2:38 Sergei Trofimovich
2019-08-03 2:37 Sergei Trofimovich
2019-08-03 2:35 Sergei Trofimovich
2019-08-02 19:30 Sergei Trofimovich
2019-08-02 16:18 Aaron Bauman
2019-08-02 6:23 Matthias Maier
2018-12-27 18:48 Fabian Groffen
2018-10-02 2:14 Matthias Maier
2018-07-11 5:05 Markus Meier
2018-06-25 18:56 Tobias Klausmann
2018-06-12 16:06 Mikle Kolyada
2018-06-06 16:37 Sergei Trofimovich
2018-06-05 17:25 Mart Raudsepp
2018-06-05 16:59 Matthias Maier
2018-06-05 16:59 Matthias Maier
2018-06-05 16:59 Matthias Maier
2018-06-04 18:46 Mikle Kolyada
2018-06-04 2:44 Matthias Maier
2018-06-03 22:51 Sergei Trofimovich
2018-06-03 21:18 Matthias Maier
2018-06-03 21:18 Matthias Maier
2018-06-03 17:50 Mikle Kolyada
2018-04-20 19:45 David Seifert
2018-02-07 0:54 Matthias Maier
2018-02-07 0:54 Matthias Maier
2017-12-20 17:53 Matthias Maier
2017-12-20 17:53 Matthias Maier
2017-12-15 5:12 Matthias Maier
2017-12-15 3:58 Matthias Maier
2017-12-15 2:04 Matthias Maier
2017-12-10 10:17 Pacho Ramos
2017-11-19 12:37 David Seifert
2017-03-13 19:04 Jeroen Roovers
2017-03-11 17:07 Agostino Sarubbo
2017-03-04 14:02 Agostino Sarubbo
2017-03-02 10:47 Agostino Sarubbo
2017-02-28 11:22 Tobias Klausmann
2017-02-27 20:11 Michael Weber
2017-02-27 8:24 Agostino Sarubbo
2017-02-25 21:31 Matthias Maier
2017-02-20 18:05 Markus Meier
2017-01-23 18:58 Tobias Klausmann
2017-01-22 16:27 Agostino Sarubbo
2017-01-22 9:44 Jeroen Roovers
2017-01-20 11:05 Agostino Sarubbo
2017-01-17 13:52 Matthias Maier
2017-01-17 13:41 Matthias Maier
2017-01-15 15:50 Agostino Sarubbo
2016-09-16 5:12 Matthias Maier
2016-09-16 5:12 Matthias Maier
2016-08-28 8:50 Jeroen Roovers
2016-08-16 2:17 Matthias Maier
2016-07-17 17:35 Tobias Klausmann
2016-06-15 4:19 Matthias Maier
2016-02-28 15:58 Matthias Maier
2016-02-28 15:58 Matthias Maier
2016-02-28 2:53 Matthias Maier
2016-01-25 14:51 Matthias Maier
2015-12-10 23:47 Matthias Maier
2015-12-10 23:47 Matthias Maier
2015-11-23 9:25 Agostino Sarubbo
2015-11-10 18:55 Markus Meier
2015-11-08 19:03 Mikle Kolyada
2015-11-01 13:15 Mikle Kolyada
2015-10-30 10:15 Agostino Sarubbo
2015-10-27 12:18 Agostino Sarubbo
2015-10-26 5:31 Jeroen Roovers
2015-10-09 5:35 Jeroen Roovers
2015-10-09 5:21 Jeroen Roovers
2015-08-09 6:19 Matthias Maier
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=1641010206.f795e4590584c412ab29a4264e99e68e3e04ea67.sam@gentoo \
--to=sam@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