diff options
author | Gerhard Bräunlich <wippbox@gmx.net> | 2017-02-11 17:09:22 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2017-02-12 18:02:39 +0100 |
commit | eb906ba93aa6006b2b32a6f0211aa16baf7a296c (patch) | |
tree | 46141c1b2f7019b442d5882600bdf1b1f4c01bd8 /sci-mathematics | |
parent | sci-mathematics/drgeo: EAPI bump 4 -> 6 (diff) | |
download | gentoo-eb906ba93aa6006b2b32a6f0211aa16baf7a296c.tar.gz gentoo-eb906ba93aa6006b2b32a6f0211aa16baf7a296c.tar.bz2 gentoo-eb906ba93aa6006b2b32a6f0211aa16baf7a296c.zip |
sci-mathematics/drgeo: Removing EAPI 4 ebuild
Package-Manager: portage-2.3.3
Closes: https://github.com/gentoo/gentoo/pull/3910
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/drgeo/drgeo-1.1.0.ebuild | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/sci-mathematics/drgeo/drgeo-1.1.0.ebuild b/sci-mathematics/drgeo/drgeo-1.1.0.ebuild deleted file mode 100644 index c82df5f42dd8..000000000000 --- a/sci-mathematics/drgeo/drgeo-1.1.0.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=4 - -inherit eutils - -DOCN="${PN}-doc" -DOCV="1.5" -DOC="${DOCN}-${DOCV}" - -DESCRIPTION="Interactive geometry package" -HOMEPAGE="http://www.ofset.org/drgeo" -SRC_URI=" - mirror://sourceforge/ofset/${P}.tar.gz - mirror://sourceforge/ofset/${DOC}.tar.gz" - -SLOT="0" -LICENSE="GPL-2" -KEYWORDS="amd64 ~ppc x86" -IUSE="nls" - -RDEPEND=" - x11-libs/gtk+:2 - gnome-base/libglade:2.0 - dev-libs/libxml2:2 - || ( - >=dev-scheme/guile-1.8[deprecated] - =dev-scheme/guile-1.6* - )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -src_prepare() { - epatch "${FILESDIR}"/${P}-gcc45.patch -} - -src_configure() { - default - # Can't make the documentation as it depends on Hyperlatex which isn't - # yet in portage. Fortunately HTML is already compiled for us in the - # tarball and so can be installed. Just create the make install target. - cd "${WORKDIR}"/${DOC} - econf -} - -src_install() { - default - if use nls; then - cd "${WORKDIR}"/${DOC} - else - cd "${WORKDIR}"/${DOC}/c - fi - emake install DESTDIR="${D}" -} |