Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/drgeo/
Date: Sun, 12 Feb 2017 17:03:09
Message-Id: 1486918959.eb906ba93aa6006b2b32a6f0211aa16baf7a296c.soap@gentoo
1 commit: eb906ba93aa6006b2b32a6f0211aa16baf7a296c
2 Author: Gerhard Bräunlich <wippbox <AT> gmx <DOT> net>
3 AuthorDate: Sat Feb 11 16:09:22 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 12 17:02:39 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb906ba9
7
8 sci-mathematics/drgeo: Removing EAPI 4 ebuild
9
10 Package-Manager: portage-2.3.3
11 Closes: https://github.com/gentoo/gentoo/pull/3910
12
13 sci-mathematics/drgeo/drgeo-1.1.0.ebuild | 56 --------------------------------
14 1 file changed, 56 deletions(-)
15
16 diff --git a/sci-mathematics/drgeo/drgeo-1.1.0.ebuild b/sci-mathematics/drgeo/drgeo-1.1.0.ebuild
17 deleted file mode 100644
18 index c82df5f42d..0000000000
19 --- a/sci-mathematics/drgeo/drgeo-1.1.0.ebuild
20 +++ /dev/null
21 @@ -1,56 +0,0 @@
22 -# Copyright 1999-2012 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -# $Id$
25 -
26 -EAPI=4
27 -
28 -inherit eutils
29 -
30 -DOCN="${PN}-doc"
31 -DOCV="1.5"
32 -DOC="${DOCN}-${DOCV}"
33 -
34 -DESCRIPTION="Interactive geometry package"
35 -HOMEPAGE="http://www.ofset.org/drgeo"
36 -SRC_URI="
37 - mirror://sourceforge/ofset/${P}.tar.gz
38 - mirror://sourceforge/ofset/${DOC}.tar.gz"
39 -
40 -SLOT="0"
41 -LICENSE="GPL-2"
42 -KEYWORDS="amd64 ~ppc x86"
43 -IUSE="nls"
44 -
45 -RDEPEND="
46 - x11-libs/gtk+:2
47 - gnome-base/libglade:2.0
48 - dev-libs/libxml2:2
49 - || (
50 - >=dev-scheme/guile-1.8[deprecated]
51 - =dev-scheme/guile-1.6*
52 - )"
53 -DEPEND="${RDEPEND}
54 - virtual/pkgconfig"
55 -
56 -src_prepare() {
57 - epatch "${FILESDIR}"/${P}-gcc45.patch
58 -}
59 -
60 -src_configure() {
61 - default
62 - # Can't make the documentation as it depends on Hyperlatex which isn't
63 - # yet in portage. Fortunately HTML is already compiled for us in the
64 - # tarball and so can be installed. Just create the make install target.
65 - cd "${WORKDIR}"/${DOC}
66 - econf
67 -}
68 -
69 -src_install() {
70 - default
71 - if use nls; then
72 - cd "${WORKDIR}"/${DOC}
73 - else
74 - cd "${WORKDIR}"/${DOC}/c
75 - fi
76 - emake install DESTDIR="${D}"
77 -}