Gentoo Archives: gentoo-commits

From: Matthias Maier <tamiko@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-doc/doxygen/
Date: Fri, 15 Dec 2017 02:04:44
Message-Id: 1513303451.956926f714924b64037f7bbf2fc6e69d2acb6482.tamiko@gentoo
1 commit: 956926f714924b64037f7bbf2fc6e69d2acb6482
2 Author: Matthias Maier <tamiko <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 15 02:04:11 2017 +0000
4 Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 15 02:04:11 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=956926f7
7
8 app-doc/doxygen: remove version 1.8.12
9
10 Package-Manager: Portage-2.3.18, Repoman-2.3.6
11
12 app-doc/doxygen/Manifest | 1 -
13 app-doc/doxygen/doxygen-1.8.12.ebuild | 150 ----------------------------------
14 2 files changed, 151 deletions(-)
15
16 diff --git a/app-doc/doxygen/Manifest b/app-doc/doxygen/Manifest
17 index 6b007774f9a..09c4e69d8b3 100644
18 --- a/app-doc/doxygen/Manifest
19 +++ b/app-doc/doxygen/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST doxygen-1.8.12.src.tar.gz 4880613 BLAKE2B db2337a17d0b1a5e17a25c61514efb055e27f19d698aeb715c92eb4c3635b1d8a4d8b67c6c62d443b4c8613eedf2e564371cd6d5d512bd2be54219936ecfc309 SHA512 12fb5f19d0de382c7510b7c517d7c781a1e6e11720c7d9ecfd81d29d5ed030984e8d55ffcc25cc52703020e880edad341136e2795a2a36a842fc275b31ae203d
22 DIST doxygen-1.8.13.src.tar.gz 4893912 BLAKE2B 3eb7eb6e7d122f681a9af8caf8a33789d323d52a5c205a3c44a7953eec78f4b227062da3e71c09de443aa6ac5c780937218c3a8c9ddf06d3eb23200a33b7406f SHA512 85da5bd28ad9f33a8e50fa92796817d31e59c024127cb647cb967e4321dd51378feaacdf099d578b7e6020fd646a3c63e99c77420e49e3894fc18ca89ba3e0a2
23 DIST doxywizard.png 4231 BLAKE2B c71e30fee273c7410bc6b65e171a864066e088d474785f5e24b5500806af1217a6e12e93c5b81a488e2d216bfa59aeed332a092515dbbf8b640d8f7320dda50a SHA512 5e2d26e7427b86866ebe75ec2c66c0f1100d230f3f3e4d66bac424a8dd0d42f0831d936ff03318dfa1bf73cbd9fb53717636d0c91ae3eea0f4e24641479d25d5
24
25 diff --git a/app-doc/doxygen/doxygen-1.8.12.ebuild b/app-doc/doxygen/doxygen-1.8.12.ebuild
26 deleted file mode 100644
27 index 78d2e3148ac..00000000000
28 --- a/app-doc/doxygen/doxygen-1.8.12.ebuild
29 +++ /dev/null
30 @@ -1,150 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -PYTHON_COMPAT=( python{2_7,3_4,3_5} )
36 -
37 -inherit cmake-utils eutils fdo-mime flag-o-matic python-any-r1
38 -if [[ ${PV} = *9999* ]]; then
39 - inherit git-r3
40 - EGIT_REPO_URI="https://github.com/doxygen/doxygen.git"
41 - SRC_URI=""
42 - KEYWORDS="alpha arm hppa ia64 sparc"
43 -else
44 - SRC_URI="https://ftp.stack.nl/pub/users/dimitri/${P}.src.tar.gz"
45 - KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
46 -fi
47 -SRC_URI+=" https://dev.gentoo.org/~xarthisius/distfiles/doxywizard.png"
48 -
49 -DESCRIPTION="Documentation system for most programming languages"
50 -HOMEPAGE="https://www.stack.nl/~dimitri/doxygen/"
51 -
52 -LICENSE="GPL-2"
53 -SLOT="0"
54 -IUSE="clang debug doc dot doxysearch latex qt5 sqlite userland_GNU"
55 -
56 -RDEPEND="app-text/ghostscript-gpl
57 - dev-lang/perl
58 - media-libs/libpng:0=
59 - virtual/libiconv
60 - clang? ( sys-devel/clang:= )
61 - dot? (
62 - media-gfx/graphviz
63 - media-libs/freetype
64 - )
65 - doxysearch? ( =dev-libs/xapian-1.2* )
66 - latex? ( app-text/texlive[extra] )
67 - qt5? (
68 - dev-qt/qtgui:5
69 - dev-qt/qtwidgets:5
70 - )
71 - sqlite? ( dev-db/sqlite:3 )
72 - "
73 -
74 -REQUIRED_USE="doc? ( latex )"
75 -
76 -DEPEND="sys-devel/flex
77 - sys-devel/bison
78 - doc? ( ${PYTHON_DEPS} )
79 - ${RDEPEND}"
80 -
81 -# src_test() defaults to make -C testing but there is no such directory (bug #504448)
82 -RESTRICT="test"
83 -
84 -PATCHES=(
85 - "${FILESDIR}/${PN}-1.8.9.1-empty-line-sigsegv.patch" #454348
86 - "${FILESDIR}/${P}-link_with_pthread.patch"
87 -)
88 -
89 -DOCS=( LANGUAGE.HOWTO README.md )
90 -
91 -pkg_setup() {
92 - use doc && python-any-r1_pkg_setup
93 -}
94 -
95 -src_prepare() {
96 - cmake-utils_src_prepare
97 -
98 - # Ensure we link to -liconv
99 - if use elibc_FreeBSD && has_version dev-libs/libiconv || use elibc_uclibc; then
100 - local pro
101 - for pro in */*.pro.in */*/*.pro.in; do
102 - echo "unix:LIBS += -liconv" >> "${pro}" || die
103 - done
104 - fi
105 -
106 - # Call dot with -Teps instead of -Tps for EPS generation - bug #282150
107 - sed -i -e '/addJob("ps"/ s/"ps"/"eps"/g' src/dot.cpp || die
108 -
109 - # fix pdf doc
110 - sed -i.orig -e "s:g_kowal:g kowal:" \
111 - doc/maintainers.txt || die
112 -
113 - if is-flagq "-O3" ; then
114 - echo
115 - ewarn "Compiling with -O3 is known to produce incorrectly"
116 - ewarn "optimized code which breaks doxygen."
117 - echo
118 - elog "Continuing with -O2 instead ..."
119 - echo
120 - replace-flags "-O3" "-O2"
121 - fi
122 -}
123 -
124 -src_configure() {
125 - local mycmakeargs=(
126 - -DDOC_INSTALL_DIR="share/doc/${P}"
127 - -Duse_libclang=$(usex clang)
128 - -Dbuild_doc=$(usex doc)
129 - -Dbuild_search=$(usex doxysearch)
130 - -Dbuild_wizard=$(usex qt5)
131 - -Duse_sqlite3=$(usex sqlite)
132 - )
133 -
134 - cmake-utils_src_configure
135 -}
136 -
137 -src_compile() {
138 - cmake-utils_src_compile
139 -
140 - if use doc; then
141 - export VARTEXFONTS="${T}/fonts" # bug #564944
142 -
143 - if ! use dot; then
144 - sed -i -e "s/HAVE_DOT = YES/HAVE_DOT = NO/" \
145 - {Doxyfile,doc/Doxyfile} \
146 - || die "disabling dot failed"
147 - fi
148 - emake -C "${BUILD_DIR}" docs
149 - fi
150 -}
151 -
152 -src_install() {
153 - cmake-utils_src_install
154 -
155 - if use qt5; then
156 - doicon "${DISTDIR}/doxywizard.png"
157 - make_desktop_entry doxywizard "DoxyWizard ${PV}" \
158 - "/usr/share/pixmaps/doxywizard.png" \
159 - "Development"
160 - fi
161 -}
162 -
163 -pkg_postinst() {
164 - fdo-mime_desktop_database_update
165 -
166 - elog
167 - elog "For examples and other goodies, see the source tarball. For some"
168 - elog "example output, run doxygen on the doxygen source using the"
169 - elog "Doxyfile provided in the top-level source dir."
170 - elog
171 - elog "Disabling the dot USE flag will remove the GraphViz dependency,"
172 - elog "along with Doxygen's ability to generate diagrams in the docs."
173 - elog "See the Doxygen homepage for additional helper tools to parse"
174 - elog "more languages."
175 - elog
176 -}
177 -
178 -pkg_postrm() {
179 - fdo-mime_desktop_database_update
180 -}