summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bauman <bman@gentoo.org>2018-06-02 20:07:58 -0400
committerAaron Bauman <bman@gentoo.org>2018-06-02 22:58:38 -0400
commit39cdef2f9d86e51d300548a1cd2c17ea4cfde6b7 (patch)
treed11487c7e677de7993fcb84141bc4439a6536934 /sci-libs
parentsci-libs/ogdi: drop old EAPI (diff)
downloadgentoo-39cdef2f9d86e51d300548a1cd2c17ea4cfde6b7.tar.gz
gentoo-39cdef2f9d86e51d300548a1cd2c17ea4cfde6b7.tar.bz2
gentoo-39cdef2f9d86e51d300548a1cd2c17ea4cfde6b7.zip
sci-libs/gaul-devel: drop old EAPI
Package-Manager: Portage-2.3.40, Repoman-2.3.9
Diffstat (limited to 'sci-libs')
-rw-r--r--sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild b/sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild
deleted file mode 100644
index b65497b1ca97..000000000000
--- a/sci-libs/gaul-devel/gaul-devel-0.1849-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-DESCRIPTION="Genetic Algorithm Utility Library"
-HOMEPAGE="http://GAUL.sourceforge.net/"
-SRC_URI="mirror://sourceforge/gaul/${P}-0.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="debug slang"
-
-DEPEND="
- sys-apps/sed
- slang? ( sys-libs/slang )"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/${P}-0
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-slang2-error.patch
-}
-
-src_compile() {
- local myconf
- use slang || myconf="--enable-slang=no"
- if use debug ; then
- myconf="${myconf} --enable-debug=yes --enable-memory-debug=yes"
- else
- myconf="${myconf} --enable-g=no"
- fi
- econf ${myconf}
- emake || die "emake failed"
-}
-
-src_install() {
- emake -j1 DESTDIR="${D}" install || die "Install failed"
- dodoc README || die
-}