Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/gecode/
Date: Sat, 05 Aug 2017 13:53:53
Message-Id: 1501939813.725fc1fbf99c0607fcd7532b38b31d421485ddb6.mjo@gentoo
1 commit: 725fc1fbf99c0607fcd7532b38b31d421485ddb6
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 5 13:30:13 2017 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 5 13:30:13 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=725fc1fb
7
8 dev-libs/gecode: remove unused version 4.4.0.
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11
12 dev-libs/gecode/gecode-4.4.0.ebuild | 69 -------------------------------------
13 1 file changed, 69 deletions(-)
14
15 diff --git a/dev-libs/gecode/gecode-4.4.0.ebuild b/dev-libs/gecode/gecode-4.4.0.ebuild
16 deleted file mode 100644
17 index e4641dd83f3..00000000000
18 --- a/dev-libs/gecode/gecode-4.4.0.ebuild
19 +++ /dev/null
20 @@ -1,69 +0,0 @@
21 -# Copyright 1999-2016 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -DESCRIPTION="An environment for developing constraint-based applications"
27 -SRC_URI="http://www.gecode.org/download/${P}.tar.gz"
28 -HOMEPAGE="http://www.gecode.org/"
29 -
30 -SLOT="0"
31 -LICENSE="MIT"
32 -KEYWORDS="~amd64 ~x86"
33 -IUSE="doc examples gist gmp test"
34 -
35 -RDEPEND="
36 - gist? (
37 - || (
38 - ( dev-qt/qtcore:4 dev-qt/qtgui:4 )
39 - ( dev-qt/qtcore:5 dev-qt/qtgui:5 )
40 - )
41 - )
42 - gmp? (
43 - || ( dev-libs/gmp:0 sci-libs/mpir )
44 - dev-libs/mpfr:0
45 - )"
46 -DEPEND="${RDEPEND}
47 - doc? (
48 - app-doc/doxygen
49 - media-gfx/graphviz
50 - )"
51 -
52 -src_configure() {
53 - # --disable-examples prevents COMPILING the examples.
54 - econf \
55 - --docdir="/usr/share/doc/${PF}" \
56 - --htmldir="/usr/share/doc/${PF}/html" \
57 - --disable-examples \
58 - $(use_enable doc doc-dot) \
59 - $(use_enable doc doc-tagfile) \
60 - $(use_enable gist qt) \
61 - $(use_enable gist) \
62 - $(use_enable gmp mpfr)
63 -}
64 -
65 -src_compile() {
66 - default
67 - use doc && emake doc
68 -}
69 -
70 -src_install() {
71 - default
72 -
73 - # The --docdir and --htmldir that we pass to configure don't seem to
74 - # be respected...
75 - use doc && dodoc -r doc/html
76 -
77 - if use examples; then
78 - # The build system supports "examples", but we want to install
79 - # their source code, not the resulting binaries.
80 - rm -f examples/CMakeLists.txt \
81 - || die 'failed to remove examples/CMakeLists.txt'
82 - dodoc -r examples
83 - fi
84 -}
85 -
86 -src_test() {
87 - LD_LIBRARY_PATH="${S}" emake test
88 - LD_LIBRARY_PATH="${S}" ./test/test || die "test suite failed"
89 -}